|
@@ -116,7 +116,6 @@
|
|
|
</el-row>
|
|
|
|
|
|
<el-table
|
|
|
-
|
|
|
:data="APICONFIGList"
|
|
|
@selection-change="handleSelectionChange"
|
|
|
@row-click="showRow"
|
|
@@ -569,9 +568,9 @@ export default {
|
|
|
},
|
|
|
// 多选框选中数据
|
|
|
handleSelectionChange(selection) {
|
|
|
- this.ids = selection.map((item) => item.id);
|
|
|
- this.single = selection.length !== 1;
|
|
|
- this.multiple = !selection.length;
|
|
|
+ // this.ids = selection.map((item) => item.id);
|
|
|
+ // this.single = selection.length !== 1;
|
|
|
+ // this.multiple = !selection.length;
|
|
|
},
|
|
|
/** 新增按钮操作 */
|
|
|
handleAdd() {
|
|
@@ -635,11 +634,14 @@ export default {
|
|
|
|
|
|
// })
|
|
|
// },
|
|
|
- /** 导出按钮操作 */
|
|
|
- showRow(row) {
|
|
|
+ showRow(row) {
|
|
|
//赋值给radio
|
|
|
this.radio = this.APICONFIGList.indexOf(row);
|
|
|
this.rowData = row;
|
|
|
+
|
|
|
+ this.ids = row.id;
|
|
|
+ this.single = false;
|
|
|
+ this.multiple = false;
|
|
|
},
|
|
|
handleDownload() {
|
|
|
let row = this.rowData;
|