Showing
1 changed file
with
3 additions
and
3 deletions
| ... | @@ -33,9 +33,9 @@ | ... | @@ -33,9 +33,9 @@ |
| 33 | <el-input type="text" v-model="newDictionary.route" placeholder="请输入航线" maxlength="40"> | 33 | <el-input type="text" v-model="newDictionary.route" placeholder="请输入航线" maxlength="40"> |
| 34 | </el-input> | 34 | </el-input> |
| 35 | </el-form-item> | 35 | </el-form-item> |
| 36 | - <el-form-item label="是否为ET86航线"> | 36 | + <!-- <el-form-item label="是否为ET86航线"> |
| 37 | <el-checkbox v-model="newDictionary.isEtesRoute"></el-checkbox> | 37 | <el-checkbox v-model="newDictionary.isEtesRoute"></el-checkbox> |
| 38 | - </el-form-item> | 38 | + </el-form-item> --> |
| 39 | <el-form-item> | 39 | <el-form-item> |
| 40 | <div style="color:#ff4949;line-height: 30px;">注意:此处不能添加虚拟航班!</div> | 40 | <div style="color:#ff4949;line-height: 30px;">注意:此处不能添加虚拟航班!</div> |
| 41 | </el-form-item> | 41 | </el-form-item> |
| ... | @@ -205,7 +205,7 @@ export default { | ... | @@ -205,7 +205,7 @@ export default { |
| 205 | let obj = { | 205 | let obj = { |
| 206 | fltNo: this.upCase(this.newDictionary.fltNo), | 206 | fltNo: this.upCase(this.newDictionary.fltNo), |
| 207 | route: this.upCase(this.newDictionary.route), | 207 | route: this.upCase(this.newDictionary.route), |
| 208 | - isEtesRoute: this.newDictionary.isEtesRoute == true ? "Y" : "N" | 208 | + // isEtesRoute: this.newDictionary.isEtesRoute == true ? "Y" : "N" |
| 209 | } | 209 | } |
| 210 | addRoute(obj).then(res => { | 210 | addRoute(obj).then(res => { |
| 211 | this.loading = false | 211 | this.loading = false | ... | ... |
-
Please register or login to post a comment