Elements-SY

modify

...@@ -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 },
......