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-20 15:45:49 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3470282bb32f95c09453393dfb6618eaa8d7a0a6
3470282b
1 parent
0b4cefbc
航班顺位查看配载航班增加航线,修正维度新增保留状态的bug,文本修正
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
13 deletions
src/views/allocationConfig/flightAllocConfig/info.vue
src/views/allocationConfig/flightRandConfig/index.vue
src/views/basicInformation/goodsStation/index.vue
src/views/systemLog/dmLog/weatherTable.vue
src/views/allocationConfig/flightAllocConfig/info.vue
View file @
3470282
...
...
@@ -1158,6 +1158,7 @@ export default {
},
//返回
close() {
this.$store.dispatch('tagsView/delView', this.$route)
this.$store.state.tagsView.visitedViews.splice(
this.$store.state.tagsView.visitedViews.findIndex(
(item) => item.path === this.$route.path
...
...
src/views/allocationConfig/flightRandConfig/index.vue
View file @
3470282
...
...
@@ -60,13 +60,15 @@
<el-table-column type="index" label="序号" align="center">
<template slot-scope="scope">{{ scope.$index + 1 }}</template>
</el-table-column>
<el-table-column label="原航班" align="center" prop="sourceFlightNo" />
<el-table-column label="实际配载航班" align="center" prop="actualFlight" width="280" />
<el-table-column label="航班日期" align="center" prop="flightDate" />
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="200">
<el-table-column label="原航班" align="center" prop="sourceFlightNo" width="150" />
<el-table-column label="实际配载航班" align="center" prop="actualFlight" width="250" />
<el-table-column label="航线" align="center" prop="route" />
<el-table-column label="航班日期" align="center" prop="flightDate" width="150" />
<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)">查看配置维度</el-button>
@click="handleClick(scope.row.actualFlight, 'detail', scope.row.flightDate,scope.row.route)">查看配置维度
</el-button>
</template>
</el-table-column>
</el-table>
...
...
@@ -266,15 +268,19 @@ export default {
},
methods: {
//跳转到查看,修改页面
handleClick(fltNo, handle, fltDate) {
handleClick(fltNo, handle, fltDate
, route
) {
this.openFlightDate = false;
this.$router.push({
name: "FlightAllocConfigInfo",
params: {
let obj = {
handle: handle,
fltNo: fltNo,
fltDate: fltDate
},
fltDate: fltDate != null ? fltDate : ' ',
route: route,
routeStatus: 'FlightRandConfig',
status: '1'
}
this.$router.push({
name: "FlightAllocConfigInfo",
params: obj,
});
},
/** 查询原航班顺位规则*/
...
...
src/views/basicInformation/goodsStation/index.vue
View file @
3470282
...
...
@@ -11,8 +11,8 @@
</el-col>
<el-col :span="6">
<el-form-item label="品名">
<el-input class="formItem" v-model="selectionData.goodsName" placeholder="请输入
货站名称
"
maxlength="50"
clearable />
<el-input class="formItem" v-model="selectionData.goodsName" placeholder="请输入
品名" maxlength="50
"
clearable />
</el-form-item>
</el-col>
</el-row>
...
...
src/views/systemLog/dmLog/weatherTable.vue
View file @
3470282
...
...
@@ -64,6 +64,7 @@ export default {
},
//返回
close() {
this.$store.dispatch('tagsView/delView', this.$route)
this.$store.state.tagsView.visitedViews.splice(
this.$store.state.tagsView.visitedViews.findIndex(
(item) => item.path === this.$route.path
...
...
Please
register
or
login
to post a comment