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-02-25 15:07:18 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a37d6347f18097b0665edf5e4f70504cc5e84688
a37d6347
1 parent
9294476f
表格刷新
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
1 deletions
src/views/allocationConfig/flightAllocConfig/index.vue
src/views/allocationConfig/flightRandConfig/index.vue
src/views/basicInformation/flightInformationMaintenance/index.vue
src/views/allocationConfig/flightAllocConfig/index.vue
View file @
a37d634
...
...
@@ -147,6 +147,9 @@ export default {
loading: false,
};
},
activated(){
this.getList()
},
methods: {
getList() {
this.queryParams.limit = this.limit;
...
...
@@ -199,6 +202,7 @@ export default {
message: res.msg,
type: res.code === 200 ? "success" : "warning",
});
this.getList()
})
.catch(() => {});
})
...
...
@@ -226,7 +230,7 @@ export default {
},
},
created() {
this.getList();
//
this.getList();
},
computed:{
purposeOfFlightNo: {
...
...
src/views/allocationConfig/flightRandConfig/index.vue
View file @
a37d634
...
...
@@ -386,10 +386,12 @@
// 目的航班弹出框返回
cancelFlightDate() {
this.openFlightDate = false;
this.findSourceFlightAndFlightDate();
},
// 取消按钮
cancel() {
this.open = false;
this.findSourceFlightAndFlightDate();
//this.reset();
},
// 状态字典翻译
...
...
src/views/basicInformation/flightInformationMaintenance/index.vue
View file @
a37d634
...
...
@@ -717,6 +717,7 @@
// 取消按钮
cancel() {
this.open = false;
this.findAllFltData();
this.reset();
},
...
...
Please
register
or
login
to post a comment