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
2023-05-24 09:17:02 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
5ff29e39c0976bb8ec2ef46970d98794324dce9b
5ff29e39
1 parent
aec9568c
提示语修正
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
11 deletions
src/views/allocationConfig/flightRandConfig/index.vue
src/views/systemConfig/superAllocation/dialog.vue
src/views/allocationConfig/flightRandConfig/index.vue
View file @
5ff29e3
...
...
@@ -54,8 +54,8 @@
</template>
</Tables>
<!-- 查看目的航班对话框 -->
<el-dialog title="实际配载航班" :visible.sync="openFlightDate" width="70%" :close-on-click-modal="false"
:
show-close="false" :
append-to-body="true" @close="cancelFlightDate">
<el-dialog title="实际配载航班" :visible.sync="openFlightDate" width="70%" :close-on-click-modal="false"
:show-close="false"
:append-to-body="true" @close="cancelFlightDate">
<el-table v-loading="loadingFlightDate" :data="sourceFlightAndFlightDate">
<el-table-column type="index" label="序号" align="center">
<template slot-scope="scope">{{ scope.$index + 1 }}</template>
...
...
@@ -112,8 +112,7 @@
</el-col>
<el-col :span="24" style="margin-bottom: 5%">
<span style="color: #ff4949; margin-left: 10%">提示:配载航班之间请用分号分隔【符号不区分中英文】,例:CA1053;C7433</span><br />
<span
style="color: #ff4949; margin-left: 10%">提示:如果需要设置配载航班延迟或提前可以直接在目的航班后加减【+-】天数。如:CA1053+1;CZ433-1</span>
<span style="color: #ff4949; margin-left: 10%">提示:如果需要设置配载航班延迟或提前可以直接在目的航班后加减【+-】天数。如:CA1053+1;CZ433-1</span>
</el-col>
<el-col :span="24">
<el-form-item label="配载航班" prop="flightRank">
...
...
@@ -409,15 +408,15 @@ export default {
this.$message.warning("日期为空");
return;
}
this.openFlightDate = true;
this.loadingFlightDate = true;
this.sourceFlightAndFlightDate = [];
findSourceFlightAndFlightDateApi(this.queryParams).then((response) => {
if (response.code === 200) {
this.sourceFlightAndFlightDate = response.data;
this.loadingFlightDate = false;
this.openFlightDate = true;
} else {
this.msg
Error(response.msg
);
this.msg
Warning('未查询到相关数据!'
);
}
});
},
...
...
@@ -474,6 +473,4 @@ export default {
},
};
</script>
<style>
</style>
<style></style>
...
...
src/views/systemConfig/superAllocation/dialog.vue
View file @
5ff29e3
...
...
@@ -286,8 +286,10 @@ export default {
})
},
routeChange() {
// this.$forceUpdate()
this.$refs['superAllocationForm'].clearValidate('flightRoute')
this.$forceUpdate()
this.$nextTick(() => {
this.$refs['superAllocationForm'].clearValidate('flightRoute')
})
},
close() {
this.formData = {
...
...
Please
register
or
login
to post a comment