jinhui.wang

样式修改,数据状态变更

<template>
<div>
<el-dialog title="货物配舱" width="80%" :visible.sync="dialogVisible" :close-on-click-modal="false" :show-close="false"
:append-to-body="true">
<el-dialog title="货物配舱" width="80%" top="5vh" :visible.sync="dialogVisible" :close-on-click-modal="false"
:show-close="false" :append-to-body="true">
<el-divider content-position="left">已选货物信息</el-divider>
<el-table :data="tableData" size="mini" height="200" max-height="200" border stripe highlight-current-row
style="width: 100%">
......
......@@ -552,13 +552,17 @@ export default {
},
//航班种类修改
kindChange(val) {
if (val === 94076) {
this.form.route = []
this.routeMultiple = true
} else {
this.selectOption.flightKindlist.forEach(item => {
if (item.id == val) {
if (item.chineseName == 'White Tail') {
this.form.route = ''
this.routeMultiple = false
} else if (item.chineseName == 'Purple Tail') {
this.form.route = []
this.routeMultiple = true
}
}
})
this.$refs.routeSelect.$forceUpdate()
},
//查询条件数据源
......@@ -751,7 +755,7 @@ export default {
findFltById(row).then((response) => {
if (response.code == 200) {
this.form = response.data;
this.form.route.split(';')
this.form.route = this.form.route.split(';')
//是否开启高低价
// this.form.highLowPriceFlg = this.form.highLowPriceFlg === 1 ? true : false;
//是否预审
......