作者 zhangFan

页面部分修改 (更新)

... ... @@ -51,15 +51,15 @@
</el-col>
</el-row>
</div>
<el-table v-loading="listLoading" :data="arriveData" stripe fit highlight-current-row
<tree-table v-loading="listLoading" :data="arriveData" stripe fit highlight-current-row
style="font-size: 12px" border @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center"></el-table-column>
<el-table-column label="航班号" width="70" align="center">
<el-table-column label="航班号" width="60" align="center">
<template slot-scope="scope">
<span>{{scope.row.carrier}}{{scope.row.flightno}}</span>
</template>
</el-table-column>
<el-table-column label="运单号" width="120" align="center">
<el-table-column label="运单号" width="110" align="center">
<template slot-scope="scope">
<span>{{scope.row.awba}}</span>
</template>
... ... @@ -79,7 +79,7 @@
<span>{{scope.row.weight}}</span>
</template>
</el-table-column>
<el-table-column label="货物描述" width="100" align="center">
<el-table-column label="货物描述" width="120" align="center">
<template slot-scope="scope">
<span>{{scope.row.goodsname}}</span>
</template>
... ... @@ -113,24 +113,30 @@
<span v-if="scope.row.status ==='25'">已发送修改报</span>
</template>
</el-table-column>
<el-table-column prop="receipt" label="回执信息" width="180" align="center">
<el-table-column prop="receipt" label="回执信息" align="center">
<template slot-scope="scope">
<span>{{scope.row.ext5}}</span>
</template>
</el-table-column>
<el-table-column prop="operation" label="操作" align="center">
<el-table-column prop="operation" label="操作" align="center" width="400">
<template slot-scope="scope">
<el-button size="mini" @click="handleSendDesc(scope.row)">收发明细</el-button>
<el-button size="mini" type="success" @click="handleEdit(scope.row)" :disabled="scope.row.status !=='22'">编辑</el-button>
<el-button size="mini" type="success" @click="handleEdit(scope.row)">编辑</el-button>
<el-button size="mini" type="primary" @click="handleSendAwb(scope.row)"
:disabled="scope.row.status !=='22'">发送舱单报</el-button>
<el-button size="mini" type="danger" v-if="isAdmin" @click="handleAwbDelete(scope.row)">删除运单</el-button>
:disabled="scope.row.status ==='23'">发送舱单报
</el-button>
<p></p>
<el-button size="mini" type="danger" v-if="isAdmin" @click="handleAwbDelete(scope.row)">删除运单
</el-button>
<el-button size="mini" type="warning" @click="handleAwbStatus(scope.row)"
:disabled="scope.row.status ==='22'">更改状态</el-button>
<el-button size="mini" type="danger" @click="handleSendDelete(scope.row)">发删除报</el-button>
:disabled="scope.row.status ==='22'">更改状态
</el-button>
<el-button size="mini" type="danger" @click="handleSendDelete(scope.row)"
:disabled="scope.row.status ==='24'">发删除报
</el-button>
</template>
</el-table-column>
</el-table>
</tree-table>
<div class="btnFoot">
<el-row>
<el-button type="primary" size="mini" v-if="arriveQuery.flightno !==undefined || arriveData.length>0"
... ... @@ -244,10 +250,11 @@
</el-col>
<el-col :span="7.5">
<el-form-item label="海关关区" prop="customcode">
<el-select v-model="arriveModel.customcode" placeholder="请选择关区代码" :loading="customLoading"
<el-select v-model="arriveModel.customcode" placeholder="请选择关区代码" :loading="customLoading"
filterable clearable remote :remote-method="remoteMethodCustomCode"
:disabled="dialogStatus === 'addAwbh'">
<el-option v-for="item in customCodeList" :key="item.customcode" :label="item.customcode"
<el-option v-for="item in customCodeList" :key="item.customcode"
:label="item.customcode"
:value="item.customcode">
<span style="float: left">{{ item.customcode }}</span>
<span style="float: right; color: #8492a6; font-size: 13px">{{ item.customname }}</span>
... ... @@ -264,7 +271,7 @@
</el-dialog>
<el-dialog title="收发明细" :visible.sync="dialogTableVisible">
<el-table :data="detailData" border>
<el-table-column label="操作时间" width="150">
<el-table-column label="操作时间" width="180">
<template slot-scope="scope">
{{scope.row.busdate}}
</template>
... ... @@ -328,7 +335,7 @@
import treeTable from '@/components/TreeTable'
import treeToArray from '@/utils/customEval'
import Pagination from '@/components/Pagination'
import {getCustomCode,getAirportCode} from "@/api/country";
import {getCustomCode, getAirportCode} from "@/api/country";
import {
getMt3201ListForParam,
deleteByIsDelete,
... ... @@ -406,7 +413,7 @@
dialogTableVisible: false,
multipleSelection: [],
customCodeList: [],
airportCode:[],
airportCode: [],
dialogStatus: undefined,
awbhStatus: false,
dialogFormVisible: false,
... ... @@ -659,9 +666,11 @@
confirmButtonText: '发送',
cancelButtonText: '取消'
}).then(() => {
if(row.awbh ===null){
row.awbh = ''
}
if (row.awbh === null) {
row.awbh = ''
}
delete row.parent
delete row.children
sendCreateMt3201(row).then(res => {
if (res.data.count > 0) {
Message.success(res.data.respMessage)
... ... @@ -678,7 +687,7 @@
// 发送删除报
handleSendDelete(row) {
this.respModel = {
uuid: undefined,
carrier: undefined,
reason: undefined,
contactName: undefined,
contactTel: undefined,
... ... @@ -690,12 +699,12 @@
awbh: undefined
}
this.dialogDeleteVisible = true
this.respModel.flightNo = row.carrier + row.flightno
this.respModel.flightNo = row.flightno
this.respModel.awba = row.awba
this.respModel.uuid = row.uuid
if(row.awbh ===null){
this.respModel.carrier = row.carrier
if (row.awbh === null) {
this.respModel.awbh = ''
}else {
} else {
this.respModel.awbh = row.awbh
}
this.respModel.customCode = row.customcode
... ... @@ -767,25 +776,29 @@
},
//更改状态
handleAwbStatus(row) {
this.$confirm("是否发送更改状态", "确认消息", {
distinguishCancelAndClose: true,
confirmButtonText: '确认更改',
cancelButtonText: '取消更改'
}).then(() => {
updateStatus(row).then(res => {
if (res.data.count > 0) {
this.$message({
type: 'success',
message: '当前运单状态已更改'
})
this.getList()
} else {
this.$message({
type: 'error',
message: '状态更改失败,请稍后重试'
})
}
})
if (row.status!==22){
row.status =22;
}
// updateStatus(row).then(res => {
// if (res.data.count > 0) {
// this.$message({
// type: 'success',
// message: '当前运单状态已更改'
// })
// this.getList()
// } else {
// this.$message({
// type: 'error',
// message: '状态更改失败,请稍后重试'
// })
// }
// })
}).catch(action => {
this.$message({
... ... @@ -797,12 +810,12 @@
})
},
//获取机场三字码
remoteMethodAirport(query){
remoteMethodAirport(query) {
this.airportCode = []
if (query !== '') {
this.listLoading = true
getAirportCode({airportid: query}).then(res => {
if(res !== null){
if (res !== null) {
setTimeout(() => {
this.listLoading = false
this.airportCode = res.data.data
... ... @@ -814,12 +827,12 @@
}
},
//关区代码
remoteMethodCustomCode(query){
remoteMethodCustomCode(query) {
this.customCodeList = []
if (query !== '') {
this.customLoading = true
getCustomCode({customcode: query}).then(res => {
if(res !== null){
if (res !== null) {
setTimeout(() => {
this.customLoading = false
this.customCodeList = res.data.data
... ...
... ... @@ -109,17 +109,18 @@
<el-table-column label="操作" align="center">
<template slot-scope="scope">
<el-button size="mini" @click="handleSend(scope.row)">收发明细</el-button>
<el-button size="mini" type="success" @click="handleEdit(scope.row)" :disabled="scope.row.status !=='22'">编辑
<el-button size="mini" type="success" @click="handleEdit(scope.row)" >编辑
</el-button>
<el-button size="mini" type="primary" @click="handleSendAwb(scope.row)"
:disabled="scope.row.status !=='22'">发送舱单报
:disabled="scope.row.status ==='23'">发送舱单报
</el-button>
<el-button size="mini" type="danger" v-if="isAdmin" @click="handleAwbDelete(scope.row)">删除运单
</el-button>
<el-button size="mini" type="warning" @click="handleAwbStatus(scope.row)"
:disabled="scope.row.status ==='22'">更改状态
</el-button>
<el-button size="mini" type="danger" @click="handleSendDelete(scope.row)">发删除报</el-button>
<el-button size="mini" type="danger" @click="handleSendDelete(scope.row)"
:disabled="scope.row.status ==='24'">发删除报</el-button>
</template>
</el-table-column>
</el-table>
... ... @@ -147,7 +148,7 @@
<el-row>
<el-col :span="7.5">
<el-form-item label="主单号" prop="awba">
<el-input v-model="loadingModel.awba"></el-input>
<el-input v-model="loadingModel.awba" :disabled="dialogStatus ==='update'"></el-input>
</el-form-item>
</el-col>
<el-col :span="7.5">
... ... @@ -167,7 +168,7 @@
<el-col :span="7.5">
<el-form-item label="起始站" prop="originstation">
<el-select filterable clearable placeholder="请选择起始站" :remote-method="remoteMethodAirport"
allow-create v-model="originstation" remote>
allow-create v-model="originstation" remote :disabled="dialogStatus ==='update'">
<el-option v-for="item in airportCode"
:key="item.airportid" :label="item.airportid"
:value="item.airportid" :disabled="dialogStatus === 'update'">
... ... @@ -180,7 +181,7 @@
<el-col :span="7.5">
<el-form-item label="目的站" prop="originstation">
<el-select filterable clearable placeholder="请选择起始站" :remote-method="remoteMethodAirport"
allow-create v-model="destinationstation" remote>
allow-create v-model="destinationstation" remote :disabled="dialogStatus ==='update'">
<el-option v-for="item in airportCode"
:key="item.airportid" :label="item.airportid"
:value="item.airportid" :disabled="dialogStatus === 'update'">
... ... @@ -264,7 +265,7 @@
</el-dialog>
<el-dialog title="收发明细" :visible.sync="dialogTableVisible">
<el-table :data="detailData" border>
<el-table-column label="操作时间" width="150">
<el-table-column label="操作时间" width="180">
<template slot-scope="scope">
{{scope.row.busdate}}
</template>
... ... @@ -628,7 +629,7 @@
// 发送删除报
handleSendDelete(row) {
this.respModel = {
uuid: undefined,
carrier: undefined,
reason: undefined,
contactName: undefined,
contactTel: undefined,
... ... @@ -640,8 +641,8 @@
awbh: ''
}
this.dialogDeleteVisible = true
this.respModel.uuid = row.uuid
this.respModel.flightNo = row.carrier + row.flightno
this.respModel.carrier = row.carrier
this.respModel.flightNo = row.flightno
this.respModel.awba = row.awba
this.respModel.customCode = row.customcode
this.respModel.flightDate = row.flightdate
... ... @@ -707,20 +708,23 @@
confirmButtonText: '确认更改',
cancelButtonText: '取消更改'
}).then(() => {
updateStatus(row).then(res => {
if (res.data.count > 0) {
this.$message({
type: 'success',
message: '当前运单状态已更改'
})
this.getList()
} else {
this.$message({
type: 'error',
message: '状态更改失败,请稍后重试'
})
}
})
if (row.status!==22){
row.status =22;
}
// updateStatus(row).then(res => {
// if (res.data.count > 0) {
// this.$message({
// type: 'success',
// message: '当前运单状态已更改'
// })
// this.getList()
// } else {
// this.$message({
// type: 'error',
// message: '状态更改失败,请稍后重试'
// })
// }
// })
}).catch(action => {
this.$message({
... ...
... ... @@ -124,20 +124,22 @@
</el-table-column>
<el-table-column label="操作" width="450">
<template slot-scope="scope">
<el-button size="mini" type="success" @click="handleEdit(scope.row)" :disabled="scope.row.status !=='22'">编辑</el-button>
<el-button size="mini" type="success" @click="handleEdit(scope.row)" >编辑</el-button>
<el-button size="mini" type="success" v-if="scope.row.awbh ===null"
@click="handleAddAwbh(scope.row)">新增分单
</el-button>
<el-button size="mini" type="primary" @click="handleAwbSend(scope.row)"
:disabled="scope.row.status !== '22'">发舱单报
:disabled="scope.row.status === '23'">发舱单报
</el-button>
<p></p>
<el-button size="mini" type="primary" @click="handleAwbEdit(scope.row)">发修改报</el-button>
<el-button size="mini" type="primary" @click="handleAwbEdit(scope.row)"
:disabled="scope.row.status ==='25'">发修改报</el-button>
<el-button size="mini" type="danger" v-if="isAdmin" @click="handleAwbDelete(scope.row)">删除运单</el-button>
<el-button size="mini" type="warning" @click="handleAwbStatus(scope.row)"
:disabled="scope.row.status === '22'">更改状态
</el-button>
<el-button size="mini" type="danger" @click="handleSendDelete(scope.row)">发删除报</el-button>
<el-button size="mini" type="danger" @click="handleSendDelete(scope.row)"
:disabled="scope.row.status ==='24'">发删除报</el-button>
</template>
</el-table-column>
</tree-table>
... ... @@ -552,7 +554,7 @@
<!--</el-form-item>-->
<!--</el-col>-->
</el-row>
<div v-show="dialogStatus === 'sendUpdate'">
<div v-if="dialogStatus === 'sendUpdate'">
<div class="grid-content content">
运单信息
</div>
... ... @@ -585,7 +587,7 @@
</el-dialog>
<el-dialog title="收发明细" :visible.sync="dialogTableVisible">
<el-table :data="detailData" border>
<el-table-column label="操作时间" width="150">
<el-table-column label="操作时间" width="180">
<template slot-scope="scope">
{{scope.row.busdate}}
</template>
... ... @@ -623,26 +625,26 @@
</el-table>
</el-dialog>
<el-dialog title="删除原因" :visible.sync="dialogDeleteVisble" width="30%">
<el-form ref="sendDeleteForm" :model="respModel" :rules="sendDeleteRules" label-width="120px"
style="margin-right:50px;">
<el-form-item label="删除原因" prop="reason">
<el-input v-model="respModel.reason" placeholder="删除原因"></el-input>
</el-form-item>
<el-form-item label="删除操作人" prop="contactName">
<el-input v-model="respModel.contactName" placeholder="操作人姓名"></el-input>
</el-form-item>
<el-form-item label="操作人Tel" prop="contactTel">
<el-input v-model="respModel.contactTel" placeholder="删除操作人联系方式"></el-input>
</el-form-item>
<el-form-item label="备注">
<el-input v-model="respModel.content" type="textarea"></el-input>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click="dialogDeleteVisble = false">取消</el-button>
<el-button type="primary" @click="sendDelete()">发送</el-button>
</div>
</el-dialog>
<el-form ref="sendDeleteForm" :model="respModel" :rules="sendDeleteRules" label-width="120px"
style="margin-right:50px;">
<el-form-item label="删除原因" prop="reason">
<el-input v-model="respModel.reason" placeholder="删除原因"></el-input>
</el-form-item>
<el-form-item label="删除操作人" prop="contactName">
<el-input v-model="respModel.contactName" placeholder="操作人姓名"></el-input>
</el-form-item>
<el-form-item label="操作人Tel" prop="contactTel">
<el-input v-model="respModel.contactTel" placeholder="删除操作人联系方式"></el-input>
</el-form-item>
<el-form-item label="备注">
<el-input v-model="respModel.content" type="textarea"></el-input>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click="dialogDeleteVisble = false">取消</el-button>
<el-button type="primary" @click="sendDelete()">发送</el-button>
</div>
</el-dialog>
</div>
</template>
<script>
... ... @@ -1252,8 +1254,10 @@
confirmButtonText: '发送',
cancelButtonText: '取消'
}).then(() => {
if (row.awbh === null) {
row.awbh = ''
}
sendCreateMt2201(row).then(res => {
console.log(res)
if (res.data.count > 0) {
Message.success(res.data.respMessage)
this.getList()
... ... @@ -1304,14 +1308,28 @@
this.respModel.reason = this.preModel.reason
this.respModel.contactName = this.preModel.contactName
this.respModel.contactTel = this.preModel.contactTel
const map = {
'mt2201': this.preModel,
'reason' : this.preModel.reason,
'contactName':this.preModel.contactName,
'contactTel': this.preModel.contactTel,
}
//
delete this.preModel._expanded
delete this.preModel._level
delete this.preModel._marginLeft
delete this.preModel._show
delete this.preModel._width
const reason = this.preModel.reason
const contactName = this.preModel.contactName
const contactTel = this.preModel.contactTel
this.$refs.preFormData.validate(valid =>{
if(valid){
delete this.preModel.reason
delete this.preModel.contactName
delete this.preModel.contactTel
const map = {
'mt2201': this.preModel,
'reason' : reason,
'contactName': contactName,
'contactTel': contactTel,
}
sendUpdateMt2201(map).then(res =>{
if(res.data.count >0){
Message.success(res.data.respMessage)
... ... @@ -1328,7 +1346,7 @@
// >>>>>>>>>>>>>>>>发送删除报<<<<<<<<<<<<<<<<<<
handleSendDelete(row) {
this.respModel = {
uuid: undefined,
carrier: undefined,
reason: undefined,
contactName: undefined,
contactTel: undefined,
... ... @@ -1341,11 +1359,11 @@
}
this.dialogDeleteVisble = true
this.respModel.awba = row.awba
this.respModel.flightNo = row.carrier + row.flightno
this.respModel.flightNo = row.flightno
this.respModel.customCode = row.customcode
this.respModel.awbh = row.awbh
this.respModel.flightDate = row.flightdate
this.respModel.uuid = row.uuid
this.respModel.carrier = row.carrier
this.$nextTick(()=>{
this.$refs.sendDeleteForm.clearValidate()
})
... ... @@ -1399,27 +1417,28 @@
},
// >>>>>>>>>>>>>>>>更改运单状态<<<<<<<<<<<<<<<<<<
handleAwbStatus(row) {
delete row.parent
delete row.children
this.$confirm("是否发送更改状态", "确认消息", {
distinguishCancelAndClose: true,
confirmButtonText: '确认更改',
cancelButtonText: '取消更改'
}).then(() => {
updateStatus(row).then(res => {
if (res.data.count > 0) {
this.$message({
type: 'success',
message: '当前运单状态已更改'
})
this.getList()
} else {
this.$message({
type: 'error',
message: '状态更改失败,请稍后重试'
})
}
})
if (row.status!==22){
row.status =22;
}
// updateStatus(row).then(res => {
// if (res.data.count > 0) {
// this.$message({
// type: 'success',
// message: '当前运单状态已更改'
// })
// this.getList()
// } else {
// this.$message({
// type: 'error',
// message: '状态更改失败,请稍后重试'
// })
// }
// })
}).catch(action => {
this.$message({
... ...
... ... @@ -109,16 +109,17 @@
<el-table-column prop="operation" label="操作" align="center">
<template slot-scope="scope">
<el-button size="mini" @click="handleSend(scope.row)">收发明细</el-button>
<el-button size="mini" type="success" @click="handleEdit(scope.row)" :disabled="scope.row.status !=='22'">编辑</el-button>
<el-button size="mini" type="success" @click="handleEdit(scope.row)">编辑</el-button>
<el-button size="mini" type="primary" @click="handleAwbSend(scope.row)"
:disabled="scope.row.status !=='22'">发舱单报</el-button>
:disabled="scope.row.status ==='23'">发舱单报</el-button>
<el-button size="mini" type="danger" v-if="isAdmin" @click="handleAwbDelete(scope.row)">删除运单</el-button>
<p></p>
<el-button size="mini" type="warning" @click="handleAwbStatus(scope.row)"
:disabled="scope.row.status ==='22'">更改状态</el-button>
<el-button size="mini" type="primary" v-if="scope.row.awbh ===null"
@click="handleAddAwbh(scope.row)">新增分单</el-button>
<el-button size="mini" type="danger" @click="handleSendDelete(scope.row)">发删除报</el-button>
<el-button size="mini" type="danger" @click="handleSendDelete(scope.row)"
:disabled="scope.row.status ==='24'">发删除报</el-button>
</template>
</el-table-column>
</tree-table>
... ... @@ -275,7 +276,7 @@
</el-dialog>
<el-dialog title="收发明细" :visible.sync="dialogTableVisible">
<el-table :data="detailData" border>
<el-table-column label="操作时间" width="150">
<el-table-column label="操作时间" width="180">
<template slot-scope="scope">
{{scope.row.busdate}}
</template>
... ... @@ -556,7 +557,7 @@
getList() {
this.listLoading = true
//根据是否有主单号 来给查询条件赋值
if (this.tidyQuery.awba != undefined && this.tidyQuery.awba != '') {
if (this.tidyQuery.awba !== undefined && this.tidyQuery.awba !== '') {
getMt520XListForParam(this.tidyQuery).then(res => {
this.tidyData = res.data.dataList
this.total = res.data.count
... ... @@ -621,6 +622,7 @@
confirmButtonText: '发送',
cancelButtonText: '取消'
}).then(() => {
delete row.messageType
console.log(row)
sendCreateMt5202(row).then(res => {
if (res.data.count > 0) {
... ... @@ -652,7 +654,7 @@
// 发删除报
handleSendDelete(row){
this.respModel = {
uuid: undefined,
carrier: undefined,
reason: undefined,
contactName: undefined,
contactTel: undefined,
... ... @@ -665,8 +667,8 @@
rcfdep: 'MT5202',
}
this.dialogDeleteVisible = true
this.respModel.uuid = row.uuid
this.respModel.flightNo = row.carrier + row.flightno
this.respModel.carrier = row.carrier
this.respModel.flightNo = row.flightno
this.respModel.awba = row.awba
this.respModel.customCode = row.customcode
this.respModel.flightDate = row.flightdate
... ... @@ -724,21 +726,23 @@
},
// 更新运单为可发送状态
handleAwbStatus(row) {
delete row.parent
delete row.children
this.$confirm("是否发送更改状态", "确认消息", {
distinguishCancelAndClose: true,
confirmButtonText: '确认更改',
cancelButtonText: '取消更改'
}).then(() => {
updateStatus(row).then(res => {
if (res.data.count > 0) {
Message.success(res.data.respMessage)
this.getList()
} else {
Message.error(res.data.respMessage)
}
})
if (row.status!==22){
row.status =22;
}
// updateStatus(row).then(res => {
// if (res.data.count > 0) {
// Message.success(res.data.respMessage)
// this.getList()
// } else {
// Message.error(res.data.respMessage)
// }
// })
}).catch(action => {
this.$message({
type: 'info',
... ... @@ -867,10 +871,10 @@
},
// 新增理货弹框
handleAddTidy() {
const row = {
const query = {
'messageType': 'MT5202'
}
this.$router.push({name: '出港航班信息', params: {scopeRow: row}})
this.$router.push({name: '出港航班信息', params: {scopeRow: query}})
},
// 返回
handelBackStep() {
... ...