Showing
1 changed file
with
8 additions
and
1 deletions
| ... | @@ -149,7 +149,7 @@ export default { | ... | @@ -149,7 +149,7 @@ export default { |
| 149 | _this.noDateLevelData(this.noDateParmas); | 149 | _this.noDateLevelData(this.noDateParmas); |
| 150 | formConfig.map((item) => { | 150 | formConfig.map((item) => { |
| 151 | if (item.type !== "slot") { | 151 | if (item.type !== "slot") { |
| 152 | - if (item.label == "航班日期") { | 152 | + if (item.label == "航线") { |
| 153 | item.hidden = true; | 153 | item.hidden = true; |
| 154 | } | 154 | } |
| 155 | } | 155 | } |
| ... | @@ -161,6 +161,13 @@ export default { | ... | @@ -161,6 +161,13 @@ export default { |
| 161 | dateParmas: this.dateParmas, | 161 | dateParmas: this.dateParmas, |
| 162 | noDateParmas: this.noDateParmas, | 162 | noDateParmas: this.noDateParmas, |
| 163 | }); | 163 | }); |
| 164 | + formConfig.map((item) => { | ||
| 165 | + if (item.type !== "slot") { | ||
| 166 | + if (item.label == "航线") { | ||
| 167 | + item.hidden = true; | ||
| 168 | + } | ||
| 169 | + } | ||
| 170 | + }); | ||
| 164 | } | 171 | } |
| 165 | _this.queryForm = _this.$route.query; // 获取跳转过来的参数 | 172 | _this.queryForm = _this.$route.query; // 获取跳转过来的参数 |
| 166 | }, | 173 | }, | ... | ... |
-
Please register or login to post a comment