Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
imac-vue
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
jinhui.wang
2022-10-13 15:02:03 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a94fa6ae9c357033afdd09ca56ea9384cdd95ba5
a94fa6ae
1 parent
453facc9
样式修改,数据状态变更
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
10 deletions
src/views/allocationConfig/cargoAllocation/info.vue
src/views/basicInformation/flightInformationMaintenance/index.vue
src/views/allocationConfig/cargoAllocation/info.vue
View file @
a94fa6a
<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%">
...
...
src/views/basicInformation/flightInformationMaintenance/index.vue
View file @
a94fa6a
...
...
@@ -552,13 +552,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()
},
//查询条件数据源
...
...
@@ -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;
//是否预审
...
...
Please
register
or
login
to post a comment