...
|
...
|
@@ -127,7 +127,7 @@ |
|
|
{{scope.row.ext5}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="操作" width="450">
|
|
|
<el-table-column label="操作" width="450" fixed="right">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button size="mini" @click="handleSend(scope.row)">收发明细</el-button>
|
|
|
<el-button size="mini" type="success" @click="handleEdit(scope.row)" >编辑</el-button>
|
...
|
...
|
@@ -161,7 +161,7 @@ |
|
|
</div>
|
|
|
<pagination v-show="total>0" :total="total" :page.sync="preQuery.pageSize" :limit.sync="preQuery.limitSize"
|
|
|
@pagination="getList"/>
|
|
|
<el-dialog :title="dialogMap[dialogStatus]" :visible.sync="dialogFormVisible" width="60%">
|
|
|
<el-dialog :title="dialogMap[dialogStatus]" :visible.sync="dialogFormVisible" width="85%">
|
|
|
<el-form ref="preFormData" :model="preModel" :rules="preRoles" label-position="right"
|
|
|
label-width="120px" class="el-dialog-div">
|
|
|
<div class="grid-content content">
|
...
|
...
|
@@ -306,7 +306,7 @@ |
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="8" v-if="fenStatus ==='addAwbh'">
|
|
|
<el-col :span="13">
|
|
|
<el-col :span="14">
|
|
|
<el-form-item label="预配件数" prop="piece">
|
|
|
<el-input v-model="preModel.piece" clearable/>
|
|
|
</el-form-item>
|
...
|
...
|
@@ -315,13 +315,14 @@ |
|
|
<span>剩余件数:{{awbPiece}}</span>
|
|
|
</el-col>
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="7.5" v-if="fenStatus !=='addAwbh'">
|
|
|
<el-form-item label="预配重量" prop="weight">
|
|
|
<el-input v-model="preModel.weight" clearable/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="8" v-if="fenStatus ==='addAwbh'">
|
|
|
<el-col :span="13">
|
|
|
<el-col :span="14">
|
|
|
<el-form-item label="预配重量" prop="weight">
|
|
|
<el-input v-model="preModel.weight" clearable/>
|
|
|
</el-form-item>
|
...
|
...
|
@@ -1121,7 +1122,8 @@ |
|
|
getMt2201ListForParam(this.preQuery).then(res => {
|
|
|
this.preData = res.data.dataList
|
|
|
this.total = res.data.count
|
|
|
|
|
|
console.log("主单号不为空时打印")
|
|
|
console.log(res.data)
|
|
|
if (res.data.dataList.length > 0) {
|
|
|
this.preQuery.carrier = this.preData[0].carrier
|
|
|
this.preQuery.flightno = this.preData[0].flightno
|
...
|
...
|
@@ -1143,7 +1145,6 @@ |
|
|
}, 1500)
|
|
|
})
|
|
|
}
|
|
|
|
|
|
},
|
|
|
// >>>>>>>>>>>>>>>>重置实体<<<<<<<<<<<<<<<<<<
|
|
|
restModel() {
|
...
|
...
|
@@ -1242,11 +1243,11 @@ |
|
|
},
|
|
|
// >>>>>>>>>>>>>>>>搜索<<<<<<<<<<<<<<<<<<
|
|
|
handleSerach() {
|
|
|
this.preQuery.flightno = undefined
|
|
|
this.preQuery.carrier = undefined
|
|
|
this.preQuery.originstation = undefined
|
|
|
this.preQuery.flightdate = undefined
|
|
|
this.preQuery.destinationstation = undefined
|
|
|
// this.preQuery.flightno = undefined
|
|
|
// this.preQuery.carrier = undefined
|
|
|
// this.preQuery.originstation = undefined
|
|
|
// this.preQuery.flightdate = undefined
|
|
|
// this.preQuery.destinationstation = undefined
|
|
|
this.getList()
|
|
|
},
|
|
|
// >>>>>>>>>>>>>>>>收发明细<<<<<<<<<<<<<<<<<<
|
...
|
...
|
|