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-10-17 17:53:23 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
89f65666a9e2d35c2ea3c5a23be45f24a844578d
89f65666
1 parent
38fd7ac6
modify
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
src/views/et86Config/et86RuleConfig/edit/index.vue
src/views/et86Config/et86RuleConfig/edit/index.vue
View file @
89f6566
<template>
<div class="form-header">
<div class="form-header"
v-loading="loading"
>
<el-row style="padding-bottom: 20px">
<el-col>
<el-divider content-position="left">ET86配舱航班顺位</el-divider>
...
...
@@ -445,6 +445,7 @@ export default {
mixins: [indexMixins, inputBlurValidate],
data() {
return {
loading: false,
queryForm: {
// ET86配舱航班顺位维度
// 表单参数
...
...
@@ -488,7 +489,7 @@ export default {
getRouter() {
if (this.$route.query.name == "add" || this.$route.query.name == "edit") {
return "保存";
}else {
}
else {
return false;
}
},
...
...
@@ -535,8 +536,10 @@ export default {
},
// ET86详情
queryFindEtesRuleById({ id, status, name }) {
this.loading = true;
findEtesRuleById({ id: id, status: status })
.then((res) => {
this.loading = false;
const { code, data, msg } = res;
if (code == 200) {
data.list.flightRankDtoList.map((item) => {
...
...
@@ -589,7 +592,9 @@ export default {
this.msgError(msg || "获取查看失败");
}
})
.catch(() => {});
.catch(() => {
this.loading = false;
});
},
// ET86编辑
postUpdate(parmas) {
...
...
Please
register
or
login
to post a comment