Browse Source

API配置:工具栏,修改、删除按钮的显示与隐藏控制

hezhihong 1 year ago
parent
commit
ddf43548fc
1 changed files with 8 additions and 6 deletions
  1. 8 6
      src/views/APICONFIG/index.vue

+ 8 - 6
src/views/APICONFIG/index.vue

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