Showing
3 changed files
with
7 additions
and
0 deletions
| ... | @@ -146,6 +146,9 @@ export default { | ... | @@ -146,6 +146,9 @@ export default { |
| 146 | loading: false, | 146 | loading: false, |
| 147 | }; | 147 | }; |
| 148 | }, | 148 | }, |
| 149 | + activated(){ | ||
| 150 | + this.getList() | ||
| 151 | + }, | ||
| 149 | methods: { | 152 | methods: { |
| 150 | getList() { | 153 | getList() { |
| 151 | this.queryParams.limit = this.limit; | 154 | this.queryParams.limit = this.limit; |
| ... | @@ -197,6 +200,7 @@ export default { | ... | @@ -197,6 +200,7 @@ export default { |
| 197 | message: res.msg, | 200 | message: res.msg, |
| 198 | type: res.code === 200 ? "success" : "warning", | 201 | type: res.code === 200 ? "success" : "warning", |
| 199 | }); | 202 | }); |
| 203 | + this.getList(); | ||
| 200 | }) | 204 | }) |
| 201 | .catch(() => {}); | 205 | .catch(() => {}); |
| 202 | }); | 206 | }); | ... | ... |
| ... | @@ -567,10 +567,12 @@ export default { | ... | @@ -567,10 +567,12 @@ export default { |
| 567 | // 目的航班弹出框返回 | 567 | // 目的航班弹出框返回 |
| 568 | cancelFlightDate() { | 568 | cancelFlightDate() { |
| 569 | this.openFlightDate = false; | 569 | this.openFlightDate = false; |
| 570 | + this.findSourceFlightAndFlightDate(); | ||
| 570 | }, | 571 | }, |
| 571 | // 取消按钮 | 572 | // 取消按钮 |
| 572 | cancel() { | 573 | cancel() { |
| 573 | this.open = false; | 574 | this.open = false; |
| 575 | + this.findSourceFlightAndFlightDate(); | ||
| 574 | //this.reset(); | 576 | //this.reset(); |
| 575 | }, | 577 | }, |
| 576 | // 状态字典翻译 | 578 | // 状态字典翻译 | ... | ... |
-
Please register or login to post a comment