1730532197@qq.com

lwj

......@@ -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;
......