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
Elements-SY
2023-09-08 16:11:53 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
80bf2db1ab2e29f920f4ab219fb869bd6c45a2e1
80bf2db1
1 parent
82ad6c52
modify
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
40 deletions
src/views/allocationConfig/flightAllocConfig/info.vue
src/views/allocationConfig/flightAllocConfig/info.vue
View file @
80bf2db
...
...
@@ -216,7 +216,7 @@
<el-col v-for="item in checkBoxItem.cargoStatus" :span="3"
:key="item.id">
<el-checkbox v-if="item.status === 1" :label="item.chineseName"
:name="item.chineseName"
disabled
:key="item.code">
:name="item.chineseName" :key="item.code">
<Tooltips :content="item.chineseName" :refName="item.code">
</Tooltips>
</el-checkbox>
...
...
@@ -283,19 +283,6 @@
</Tooltips>
</el-checkbox>
</div>
<!-- <el-row>
<el-col v-for="item in checkBoxItem.handlingCode" :span="2"
:key="item.id">
<el-checkbox
v-if="item.status === 1 || val.handlingCode.includes(item.chineseName)"
:label="item.chineseName" :name="item.chineseName"
:disabled="val.handlingCode.includes(item.chineseName) && item.status == 0"
:key="item.code">
<Tooltips :content="item.chineseName" :refName="item.code">
</Tooltips>
</el-checkbox>
</el-col>
</el-row> -->
</el-checkbox-group>
</el-card>
</el-form-item>
...
...
@@ -315,12 +302,6 @@
</Tooltips>
</el-checkbox>
</div>
<!-- <el-row>
<el-col v-for="item in checkBoxItem.subCategory" :span="2"
:key="item.id">
</el-col>
</el-row> -->
</el-checkbox-group>
</el-card>
</el-form-item>
...
...
@@ -547,11 +528,6 @@
</Tooltips>
</el-checkbox>
</div>
<!-- <el-row>
<el-col v-for="item in checkBoxItem.handlingCode" :span="2" :key="item.id">
</el-col>
</el-row> -->
</el-checkbox-group>
</el-card>
</el-form-item>
...
...
@@ -570,18 +546,6 @@
</Tooltips>
</el-checkbox>
</div>
<!-- <el-row>
<el-col v-for="item in checkBoxItem.subCategory" :span="2" :key="item.id">
<el-checkbox
v-if="item.status === 1 || val.subCategory.includes(item.chineseName)"
:label="item.chineseName" :name="item.chineseName"
:disabled="val.subCategory.includes(item.chineseName) && item.status == 0"
:key="item.code">
<Tooltips :content="item.chineseName" :refName="item.code">
</Tooltips>
</el-checkbox>
</el-col>
</el-row> -->
</el-checkbox-group>
</el-card>
</el-form-item>
...
...
@@ -714,7 +678,7 @@ export default {
} else {
obj.route = this.$route.params.route ? this.$route.params.route : ''
}
this.getRouteDimension(obj)
this.getRouteDimension(obj)
// 修改时 & 详情时
}
}
},
...
...
@@ -782,6 +746,7 @@ export default {
if(this.$route.params.handle == "updated"){
delete obj.flightRoute
}
// 修改时 & 详情时
if (this.$route.params.handle != 'add') {
findDestinationFltRuleByFlightNo(obj).then(res => {
if (res.code === 200) {
...
...
@@ -996,8 +961,8 @@ export default {
data.list.forEach(item => {
if (route.route === item.flightRoute) {
routesStatus = 2
//
item.id = undefined
//
item.status = undefined
item.id = undefined
item.status = undefined
// item.flightRoute = this.infoForm.route
// item.routePriority = route.routePriority
this.infoForm.list.push(this.dataHandle(item))
...
...
Please
register
or
login
to post a comment