jinhui.wang

航线字典排序修正,文本修正,样式修改

...@@ -1334,7 +1334,7 @@ let tableHeaders = { ...@@ -1334,7 +1334,7 @@ let tableHeaders = {
1334 status: 1 1334 status: 1
1335 }, 1335 },
1336 { 1336 {
1337 - columnChineseName: "是否开启高价", 1337 + columnChineseName: "是否开启高价",
1338 columnName: "highLowPriceFlg", 1338 columnName: "highLowPriceFlg",
1339 columnWidth: "", 1339 columnWidth: "",
1340 status: 1 1340 status: 1
......
...@@ -124,7 +124,7 @@ ...@@ -124,7 +124,7 @@
124 </el-form-item> 124 </el-form-item>
125 </el-col> 125 </el-col>
126 </el-row> 126 </el-row>
127 - <el-row> 127 + <el-row style="margin-bottom:5px">
128 <el-col :span="12"> 128 <el-col :span="12">
129 <el-form-item prop="route"> 129 <el-form-item prop="route">
130 <template slot="label"> 130 <template slot="label">
...@@ -142,7 +142,7 @@ ...@@ -142,7 +142,7 @@
142 </el-option> 142 </el-option>
143 </el-select> 143 </el-select>
144 </el-form-item> 144 </el-form-item>
145 - <div class="formTips" v-if="title == '修改航班信息' && routeMultiple">注意!:移除航线,相对应日期级别航线维度会同时删除</div> 145 + <div class="formTips" v-if="title == '修改航班信息'">注意!:移除航线,相对应日期级别航线维度会同时删除</div>
146 </el-col> 146 </el-col>
147 <el-col :span="12"> 147 <el-col :span="12">
148 <el-form-item label="航班类型" prop="typeId"> 148 <el-form-item label="航班类型" prop="typeId">
...@@ -1090,7 +1090,8 @@ export default { ...@@ -1090,7 +1090,8 @@ export default {
1090 } 1090 }
1091 1091
1092 .formTips { 1092 .formTips {
1093 + width: 85%;
1093 color: #ff4949; 1094 color: #ff4949;
1094 - margin-left: 110px; 1095 + text-align: right;
1095 } 1096 }
1096 </style> 1097 </style>
......
...@@ -85,6 +85,7 @@ ...@@ -85,6 +85,7 @@
85 85
86 <script> 86 <script>
87 import { addDict, addDictBatch, addServiceCodeBatch, addFlight, addRoute, queryRoute, orderRoute } from '@/api/system/dictionary.js' 87 import { addDict, addDictBatch, addServiceCodeBatch, addFlight, addRoute, queryRoute, orderRoute } from '@/api/system/dictionary.js'
88 +import { queryRouteByFltNo } from "@/api/destinationFlight"
88 89
89 export default { 90 export default {
90 props: { 91 props: {
...@@ -157,7 +158,7 @@ export default { ...@@ -157,7 +158,7 @@ export default {
157 } else if (this.status == 'sort') { 158 } else if (this.status == 'sort') {
158 this.newDictionary = this.addDictionary.serviceCodeKey 159 this.newDictionary = this.addDictionary.serviceCodeKey
159 this.title = '航线排序' 160 this.title = '航线排序'
160 - queryRoute({ fltNo: this.newDictionary.fltNo }).then(res => { 161 + queryRouteByFltNo({ fltNo: this.newDictionary.fltNo }).then(res => {
161 if (res.code === 200) { 162 if (res.code === 200) {
162 this.routeList = res.data.list 163 this.routeList = res.data.list
163 } else { 164 } else {
......