...
|
...
|
@@ -80,7 +80,7 @@ |
|
|
</el-table-column>
|
|
|
<el-table-column label="状态" width="100" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<span v-if="scope.row.status ==='01'">接受申报</span>
|
|
|
<span v-if="scope.row.status ==='01'">未发送</span>
|
|
|
<span v-if="scope.row.status ==='02'">待人工审核</span>
|
|
|
<span v-if="scope.row.status ==='03'">退单</span>
|
|
|
<span v-if="scope.row.status ==='05'">舱单报退单</span>
|
...
|
...
|
@@ -349,6 +349,7 @@ |
|
|
import {getResponseForParam} from '@/api/responseDetail'
|
|
|
import {validAwb, validAlphabets, validAlphabetsAndNum, validAlphabetsAndSpanceKey,validatorNum} from "@/utils/validate"
|
|
|
import {getCustomCode,getAirportCode} from "@/api/country";
|
|
|
import util from "@/common/js/util.js";
|
|
|
|
|
|
export default {
|
|
|
name: "ExitTidy",
|
...
|
...
|
@@ -398,7 +399,7 @@ |
|
|
airportCode:[],
|
|
|
tidyQuery: {
|
|
|
pageSize: 1,
|
|
|
limitSize: 100,
|
|
|
limitSize: 30,
|
|
|
awba: undefined,
|
|
|
carrier: undefined,
|
|
|
flightno: undefined,
|
...
|
...
|
@@ -406,7 +407,7 @@ |
|
|
originstation: undefined,
|
|
|
destinationstation: undefined,
|
|
|
customcode: undefined,
|
|
|
messageType: undefined
|
|
|
rcfdep: "5202"
|
|
|
},
|
|
|
tidyRoles: {
|
|
|
awba: [{required: true, trigger: 'blur', validator: validatorAwb}],
|
...
|
...
|
@@ -605,7 +606,7 @@ |
|
|
flightDate: row.flightdate,
|
|
|
awba: row.awba,
|
|
|
awbh: row.awbh,
|
|
|
messageType: 'MT5202'
|
|
|
rcfdep: 'MT5202'
|
|
|
}
|
|
|
this.dialogTableVisible = true
|
|
|
getResponseForParam(resQuery).then(res => {
|
...
|
...
|
@@ -622,7 +623,6 @@ |
|
|
confirmButtonText: '发送',
|
|
|
cancelButtonText: '取消'
|
|
|
}).then(() => {
|
|
|
delete row.messageType
|
|
|
console.log(row)
|
|
|
sendCreateMt5202(row).then(res => {
|
|
|
if (res.data.count > 0) {
|
...
|
...
|
@@ -872,13 +872,13 @@ |
|
|
// 新增理货弹框
|
|
|
handleAddTidy() {
|
|
|
const query = {
|
|
|
'messageType': 'MT5202'
|
|
|
'rcfdep': 'MT5202'
|
|
|
}
|
|
|
this.$router.push({name: '出港航班信息', params: {scopeRow: query}})
|
|
|
},
|
|
|
// 返回
|
|
|
handelBackStep() {
|
|
|
this.tidyQuery.messageType = 'MT5202'
|
|
|
this.tidyQuery.rcfdep = 'MT5202'
|
|
|
this.$router.push({name: '出港航班信息', params: {scopeRow: this.tidyQuery}})
|
|
|
}
|
|
|
}
|
...
|
...
|
|