jinhui.wang

bug修复样式更新

<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%">
......
......@@ -567,13 +567,17 @@ export default {
},
//航班种类修改
kindChange(val) {
if (val === 94076) {
this.form.route = []
this.routeMultiple = true
} else {
this.form.route = ''
this.routeMultiple = false
}
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()
},
//查询条件数据源
......