Showing
1 changed file
with
8 additions
and
1 deletions
| ... | @@ -73,7 +73,7 @@ | ... | @@ -73,7 +73,7 @@ |
| 73 | <el-table-column label="航班日期" align="center" prop="flightDate" /> | 73 | <el-table-column label="航班日期" align="center" prop="flightDate" /> |
| 74 | <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="200"> | 74 | <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="200"> |
| 75 | <template slot-scope="scope"> | 75 | <template slot-scope="scope"> |
| 76 | - <el-button size="mini" type="text" icon="el-icon-edit">查看配置维度</el-button> | 76 | + <el-button size="mini" type="text" icon="el-icon-edit" @click="handleClick(scope.row.sourceFlightNo, 'detail')">查看配置维度</el-button> |
| 77 | </template> | 77 | </template> |
| 78 | </el-table-column> | 78 | </el-table-column> |
| 79 | </el-table> | 79 | </el-table> |
| ... | @@ -227,6 +227,13 @@ | ... | @@ -227,6 +227,13 @@ |
| 227 | this.findSourceFlightRules(); | 227 | this.findSourceFlightRules(); |
| 228 | }, | 228 | }, |
| 229 | methods: { | 229 | methods: { |
| 230 | + //跳转到查看,修改页面 | ||
| 231 | + handleClick(flightiId, handle) { | ||
| 232 | + this.$router.push({ | ||
| 233 | + name: "Info", | ||
| 234 | + params: { handle: handle, id: flightiId }, | ||
| 235 | + }); | ||
| 236 | + }, | ||
| 230 | /** 查询原航班顺位规则*/ | 237 | /** 查询原航班顺位规则*/ |
| 231 | findSourceFlightRules() { | 238 | findSourceFlightRules() { |
| 232 | //this.loading = true; | 239 | //this.loading = true; | ... | ... |
-
Please register or login to post a comment