|
|
@ -33,6 +33,8 @@
|
|
|
|
@selection-change="handleSelectionChange"
|
|
|
|
@selection-change="handleSelectionChange"
|
|
|
|
@row-click="handleRowClick"
|
|
|
|
@row-click="handleRowClick"
|
|
|
|
v-loading="loading"
|
|
|
|
v-loading="loading"
|
|
|
|
|
|
|
|
highlight-current-row
|
|
|
|
|
|
|
|
:row-key="getRowKeys"
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<!-- <el-table-column type="selection" width="55"> </el-table-column> -->
|
|
|
|
<!-- <el-table-column type="selection" width="55"> </el-table-column> -->
|
|
|
|
<!-- <el-table-column type="index" width="55"> </el-table-column> -->
|
|
|
|
<!-- <el-table-column type="index" width="55"> </el-table-column> -->
|
|
|
@ -78,7 +80,7 @@
|
|
|
|
>
|
|
|
|
>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
|
|
<el-table-column fixed="right" label="操作" width="200">
|
|
|
|
<el-table-column label="操作" width="200">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-button
|
|
|
|
<el-button
|
|
|
|
@click.native.stop="handleResive(scope.row)"
|
|
|
|
@click.native.stop="handleResive(scope.row)"
|
|
|
@ -159,6 +161,9 @@ export default {
|
|
|
|
this.lineList();
|
|
|
|
this.lineList();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
getRowKeys(row) {
|
|
|
|
|
|
|
|
return row.id;
|
|
|
|
|
|
|
|
},
|
|
|
|
//获取线路列表数据
|
|
|
|
//获取线路列表数据
|
|
|
|
lineList() {
|
|
|
|
lineList() {
|
|
|
|
this.loading = true;
|
|
|
|
this.loading = true;
|
|
|
|