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-10-26 17:24:12 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
70ecc1074a61fcb906b2ff98770e6ef419a56311
70ecc107
1 parent
f3585e4f
状态增加
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
src/router/index.js
src/views/allocationConfig/flightRandConfig/index.vue
src/views/basicInformation/flightInformationMaintenance/index.vue
src/views/systemLog/dmLog/index.vue
src/router/index.js
View file @
70ecc10
...
...
@@ -73,7 +73,7 @@ export const constantRoutes = [
hidden
:
true
,
children
:
[
{
path
:
'/info/:handle/:id|:routeStatus|:fltNo|:route|:fltDate'
,
path
:
'/info/:handle/:id|:routeStatus|:fltNo|:route|:fltDate
|:status
'
,
component
:
(
resolve
)
=>
require
([
'@/views/allocationConfig/flightAllocConfig/info'
],
resolve
),
name
:
'FlightAllocConfigInfo'
,
meta
:
{
title
:
'航班配舱'
,
icon
:
'user'
}
...
...
src/views/allocationConfig/flightRandConfig/index.vue
View file @
70ecc10
...
...
@@ -277,7 +277,7 @@ export default {
fltDate: fltDate != null ? fltDate : ' ',
route: route,
routeStatus: 'FlightRandConfig',
status: '
1
'
status: '
'
}
this.$router.push({
name: "FlightAllocConfigInfo",
...
...
src/views/basicInformation/flightInformationMaintenance/index.vue
View file @
70ecc10
...
...
@@ -791,7 +791,7 @@ export default {
fltDate: val.fltDate ? val.fltDate : null,
route: val.flightKindName != 'Purple Tail' ? val.route : ' ',
routeStatus: 'flightInformationMaintenance' + val.flightKindName,
status: '
1
'
status: '
'
}
this.$router.push({
name: 'FlightAllocConfigInfo',
...
...
src/views/systemLog/dmLog/index.vue
View file @
70ecc10
...
...
@@ -64,14 +64,14 @@
<template v-slot:awbNbr="scope">
<el-link type="primary" @click="gotoWeatherTable(scope.row)">
{{
scope.row.awbNbr
scope.row.awbNbr
}}<i class="el-icon-link"></i> </el-link>
</template>
<template v-slot:flightFltNo="scope">
<el-link v-if="scope.row.allocDimId" type="primary"
@click="$router.push({ name: 'FlightAllocConfigInfo', params: { id: scope.row.allocDimId, handle: 'detail', fltNo: scope.row.flightFltNo, fltDate: scope.row.flightFltDate ? scope.row.flightFltDate : ' ', routeStatus: 'dmLog', route: scope.row.currentFlightRoute
? scope.row.currentFlightRoute:
' ' } })">
@click="$router.push({ name: 'FlightAllocConfigInfo', params: { id: scope.row.allocDimId, handle: 'detail', fltNo: scope.row.flightFltNo, fltDate: scope.row.flightFltDate ? scope.row.flightFltDate : ' ', routeStatus: 'dmLog', route: scope.row.currentFlightRoute
? scope.row.currentFlightRoute : ' ', status:
' ' } })">
{{
scope.row.flightFltNo
scope.row.flightFltNo
}}<i class="el-icon-link"></i> </el-link>
<span v-else>{{ scope.row.flightFltNo }}</span>
</template>
...
...
Please
register
or
login
to post a comment