Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
imac-vue
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
jinhui.wang
2022-12-14 17:55:08 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
8350e270b4fe73db550be6b550851dd95c0a3a62
8350e270
1 parent
a797f94f
航线字典排序修正,文本修正,样式修改
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
5 deletions
src/assets/languages/tableHeaders.js
src/views/basicInformation/flightInformationMaintenance/index.vue
src/views/systemConfig/dictionaryConfig/dialog.vue
src/assets/languages/tableHeaders.js
View file @
8350e27
...
...
@@ -1334,7 +1334,7 @@ let tableHeaders = {
status
:
1
},
{
columnChineseName
:
"是否开启高
地
价"
,
columnChineseName
:
"是否开启高
低
价"
,
columnName
:
"highLowPriceFlg"
,
columnWidth
:
""
,
status
:
1
...
...
src/views/basicInformation/flightInformationMaintenance/index.vue
View file @
8350e27
...
...
@@ -124,7 +124,7 @@
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-row
style="margin-bottom:5px"
>
<el-col :span="12">
<el-form-item prop="route">
<template slot="label">
...
...
@@ -142,7 +142,7 @@
</el-option>
</el-select>
</el-form-item>
<div class="formTips" v-if="title == '修改航班信息'
&& routeMultiple
">注意!:移除航线,相对应日期级别航线维度会同时删除</div>
<div class="formTips" v-if="title == '修改航班信息'">注意!:移除航线,相对应日期级别航线维度会同时删除</div>
</el-col>
<el-col :span="12">
<el-form-item label="航班类型" prop="typeId">
...
...
@@ -1090,7 +1090,8 @@ export default {
}
.formTips {
width: 85%;
color: #ff4949;
margin-left: 110px
;
text-align: right
;
}
</style>
...
...
src/views/systemConfig/dictionaryConfig/dialog.vue
View file @
8350e27
...
...
@@ -85,6 +85,7 @@
<script>
import { addDict, addDictBatch, addServiceCodeBatch, addFlight, addRoute, queryRoute, orderRoute } from '@/api/system/dictionary.js'
import { queryRouteByFltNo } from "@/api/destinationFlight"
export default {
props: {
...
...
@@ -157,7 +158,7 @@ export default {
} else if (this.status == 'sort') {
this.newDictionary = this.addDictionary.serviceCodeKey
this.title = '航线排序'
queryRoute({ fltNo: this.newDictionary.fltNo }).then(res => {
queryRoute
ByFltNo
({ fltNo: this.newDictionary.fltNo }).then(res => {
if (res.code === 200) {
this.routeList = res.data.list
} else {
...
...
Please
register
or
login
to post a comment