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-16 11:02:43 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
95df274e25eef587bb4480f564be167237a38050
95df274e
1 parent
9b4140ec
文本修正,航线字典排序查询接口替换
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
8 deletions
src/assets/languages/tableHeaders.js
src/views/allocationConfig/flightRandConfig/index.vue
src/views/basicInformation/flightInformationMaintenance/index.vue
src/views/systemConfig/dictionaryConfig/dialog.vue
src/assets/languages/tableHeaders.js
View file @
95df274
...
...
@@ -1334,7 +1334,7 @@ let tableHeaders = {
status
:
1
},
{
columnChineseName
:
"是否开启高
地
价"
,
columnChineseName
:
"是否开启高
低
价"
,
columnName
:
"highLowPriceFlg"
,
columnWidth
:
""
,
status
:
1
...
...
src/views/allocationConfig/flightRandConfig/index.vue
View file @
95df274
...
...
@@ -114,7 +114,7 @@
<el-col :span="24" style="margin-bottom: 5%">
<span style="color: #ff4949; margin-left: 10%">提示:配载航班之间请用分号分隔【符号不区分中英文】,例:CA1053;C7433</span><br />
<span
style="color: #ff4949; margin-left: 10%">提示:如果需要设置配载航班延迟或提前可以直接在目的航
斑
后加减【+-】天数。如:CA1053+1;CZ433-1</span>
style="color: #ff4949; margin-left: 10%">提示:如果需要设置配载航班延迟或提前可以直接在目的航
班
后加减【+-】天数。如:CA1053+1;CZ433-1</span>
</el-col>
<el-col :span="24">
<el-form-item label="配载航班" prop="flightRank">
...
...
src/views/basicInformation/flightInformationMaintenance/index.vue
View file @
95df274
...
...
@@ -201,20 +201,20 @@
<el-col :span="12">
<el-form-item label="高价百分比" prop="highPriceWeightPercent">
<el-input-number class="wid80" :disabled="ishighPriceWeightPercent" @change="LowHighAvailable"
placeholder="开启高
地
价后可修改" v-model="form.highPriceWeightPercent"></el-input-number>
placeholder="开启高
低
价后可修改" v-model="form.highPriceWeightPercent"></el-input-number>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="12">
<el-form-item label="低价百分比" prop="lowPriceWeightPercent">
<el-input-number class="wid80" :disabled="true" placeholder="开启高
地
价后计算"
<el-input-number class="wid80" :disabled="true" placeholder="开启高
低
价后计算"
v-model="form.lowPriceWeightPercent"></el-input-number>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="高价可配重量" prop="highAvailableWeight">
<el-input-number class="wid80" :disabled="true" placeholder="开启高
地
价后计算" v-model="form.highAvailableWeight"
<el-input-number class="wid80" :disabled="true" placeholder="开启高
低
价后计算" v-model="form.highAvailableWeight"
:precision="2"></el-input-number>
</el-form-item>
</el-col>
...
...
@@ -222,7 +222,7 @@
<el-row>
<el-col :span="12">
<el-form-item label="低价可配重量" prop="lowAvailableWeight">
<el-input-number class="wid80" :disabled="true" placeholder="开启高
地
价后计算" v-model="form.lowAvailableWeight"
<el-input-number class="wid80" :disabled="true" placeholder="开启高
低
价后计算" v-model="form.lowAvailableWeight"
:precision="2"></el-input-number>
</el-form-item>
</el-col>
...
...
src/views/systemConfig/dictionaryConfig/dialog.vue
View file @
95df274
...
...
@@ -81,7 +81,8 @@
</template>
<script>
import { addDict, addDictBatch, addServiceCodeBatch, addFlight, addRoute, queryRoute, orderRoute } from '@/api/system/dictionary.js'
import { addDict, addDictBatch, addServiceCodeBatch, addFlight, addRoute, orderRoute } from '@/api/system/dictionary.js'
import { queryRouteByFltNo } from "@/api/destinationFlight"
export default {
props: {
...
...
@@ -154,7 +155,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 {
...
...
@@ -377,4 +378,5 @@ export default {
</script>
<style>
</style>
\ No newline at end of file
...
...
Please
register
or
login
to post a comment