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-11-17 09:27:28 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
5e20213a2843d0d2eaf5087ac1c6f9091d9ad982
5e20213a
1 parent
31ea6b7e
跳转逻辑增加,字典增加
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
5 deletions
src/assets/languages/dictLabels.js
src/views/allocationConfig/flightAllocConfig/info.vue
src/views/allocationConfig/flightRandConfig/index.vue
src/assets/languages/dictLabels.js
View file @
5e20213
...
...
@@ -19,7 +19,8 @@ let ductLabels = {
"7"
:
"预审导出"
,
"8"
:
"预审导入"
,
"9"
:
"航班不推送修改为待推送"
,
"10"
:
"回推ACCS"
"10"
:
"回推ACCS"
,
"11"
:
"航班迁转"
}
},
"menu"
:
{
//菜单设置
...
...
@@ -62,6 +63,11 @@ let ductLabels = {
"1"
:
"是"
,
"2"
:
"否"
,
},
"whiteListSwitch"
:
{
"1"
:
"开启"
,
"0"
:
"关闭"
,
null
:
'关闭'
}
},
"flightRand"
:
{
//航班顺位设置
"status"
:
{
...
...
src/views/allocationConfig/flightAllocConfig/info.vue
View file @
5e20213
...
...
@@ -778,7 +778,7 @@ export default {
})
} else {
//航线为空,提示未找到维度数据
if (this.routeSatus == 'flightInformationMaintenancePurple Tail') {
if (this.routeSatus == 'flightInformationMaintenancePurple Tail'
|| this.routeSatus == 'FlightRandConfig'
) {
findDestinationFltRuleByFlightNo({
purposeOfFlightNo: this.infoForm.fltNo,
flightRoute: this.infoForm.route,
...
...
src/views/allocationConfig/flightRandConfig/index.vue
View file @
5e20213
...
...
@@ -67,7 +67,8 @@
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="150">
<template slot-scope="scope">
<el-button size="mini" type="text" icon="el-icon-edit"
@click="handleClick(scope.row.actualFlight, 'detail', scope.row.flightDate, ' ', ' ')">查看配置维度
@click="handleClick(scope.row.actualFlight, 'detail', scope.row.flightDate, ' ', ' ')">
查看配置维度
</el-button>
</template>
</el-table-column>
...
...
@@ -268,7 +269,7 @@ export default {
},
methods: {
//跳转到查看,修改页面
handleClick(fltNo, handle, fltDate, route) {
handleClick(fltNo, handle, fltDate, route
, status
) {
this.openFlightDate = false;
let obj = {
id: ' ',
...
...
@@ -277,7 +278,7 @@ export default {
fltDate: fltDate != null ? fltDate : ' ',
route: route,
routeStatus: 'FlightRandConfig',
status:
' '
,
status:
status
,
createStatus: 1,
}
this.$router.push({
...
...
Please
register
or
login
to post a comment