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-27 09:21:27 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
50e8ae4fcec243c6d5d1d3223da66e9393a33bcb
50e8ae4f
1 parent
70ecc107
参数增加
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
4 deletions
src/views/allocationConfig/flightAllocConfig/info.vue
src/views/allocationConfig/flightRandConfig/index.vue
src/views/basicInformation/flightInformationMaintenance/index.vue
src/views/systemLog/dmLog/index.vue
src/views/allocationConfig/flightAllocConfig/info.vue
View file @
50e8ae4
...
...
@@ -563,7 +563,7 @@ export default {
},
activated() {
this.routeSatus = this.$route.params.routeStatus
if (!this.$route.params.
s
tatus) {
if (!this.$route.params.
createS
tatus) {
if (this.$route.params.handle == 'add') {
if (this.infoForm.fltNo && this.infoForm.fltNo != null && this.infoForm.fltNo != '') {
this.getRoutes(this.infoForm.fltNo)
...
...
src/views/allocationConfig/flightRandConfig/index.vue
View file @
50e8ae4
...
...
@@ -277,7 +277,8 @@ export default {
fltDate: fltDate != null ? fltDate : ' ',
route: route,
routeStatus: 'FlightRandConfig',
status: ' '
status: ' ',
createStatus: 1,
}
this.$router.push({
name: "FlightAllocConfigInfo",
...
...
src/views/basicInformation/flightInformationMaintenance/index.vue
View file @
50e8ae4
...
...
@@ -791,7 +791,8 @@ export default {
fltDate: val.fltDate ? val.fltDate : null,
route: val.flightKindName != 'Purple Tail' ? val.route : ' ',
routeStatus: 'flightInformationMaintenance' + val.flightKindName,
status: ' '
status: ' ',
createStatus: 1,
}
this.$router.push({
name: 'FlightAllocConfigInfo',
...
...
src/views/systemLog/dmLog/index.vue
View file @
50e8ae4
...
...
@@ -69,7 +69,7 @@
</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 : ' ', status: ' ' } })">
@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: ' '
, createStatus: 1,
} })">
{{
scope.row.flightFltNo
}}<i class="el-icon-link"></i> </el-link>
...
...
Please
register
or
login
to post a comment