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
1730532197@qq.com
2021-12-06 11:36:20 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
7087dbcf32a8be2da0890a7947ba8bbde21dadce
7087dbcf
1 parent
bfe1f703
lwj
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletions
src/views/allocationConfig/flightRandConfig/index.vue
src/views/allocationConfig/flightRandConfig/index.vue
View file @
7087dbc
...
...
@@ -73,7 +73,7 @@
<el-table-column label="航班日期" align="center" prop="flightDate" />
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="200">
<template slot-scope="scope">
<el-button size="mini" type="text" icon="el-icon-edit">查看配置维度</el-button>
<el-button size="mini" type="text" icon="el-icon-edit"
@click="handleClick(scope.row.sourceFlightNo, 'detail')"
>查看配置维度</el-button>
</template>
</el-table-column>
</el-table>
...
...
@@ -227,6 +227,13 @@
this.findSourceFlightRules();
},
methods: {
//跳转到查看,修改页面
handleClick(flightiId, handle) {
this.$router.push({
name: "Info",
params: { handle: handle, id: flightiId },
});
},
/** 查询原航班顺位规则*/
findSourceFlightRules() {
//this.loading = true;
...
...
Please
register
or
login
to post a comment