jinhui.wang

表格刷新

......@@ -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: {
......
......@@ -386,10 +386,12 @@
// 目的航班弹出框返回
cancelFlightDate() {
this.openFlightDate = false;
this.findSourceFlightAndFlightDate();
},
// 取消按钮
cancel() {
this.open = false;
this.findSourceFlightAndFlightDate();
//this.reset();
},
// 状态字典翻译
......
......@@ -717,6 +717,7 @@
// 取消按钮
cancel() {
this.open = false;
this.findAllFltData();
this.reset();
},
......