From 8657bcda4b7e3f9e73be601b61ffe2738d2e9571 Mon Sep 17 00:00:00 2001
From: haoxuan <haoxuan>
Date: 星期二, 10 十月 2023 19:59:49 +0800
Subject: [PATCH] 编码设置的配置

---
 src/views/client/contacts/index.vue |   25 ++++++++++++++++---------
 1 files changed, 16 insertions(+), 9 deletions(-)

diff --git a/src/views/client/contacts/index.vue b/src/views/client/contacts/index.vue
index 00dfcf3..af6ace0 100644
--- a/src/views/client/contacts/index.vue
+++ b/src/views/client/contacts/index.vue
@@ -15,7 +15,7 @@
         >
           <template slot="leftButton">
             <el-button size="small" type="primary"  @click="addBtnClick">鏂板缓</el-button>
-            <el-button size="small"  @click="delClick">鍒犻櫎</el-button>
+            <!-- <el-button size="small"  @click="delClick">鍒犻櫎</el-button> -->
           </template>
         </CommonSearch>
       </div>
@@ -34,11 +34,11 @@
               @selTableCol="selTableCol"
           >
             <template slot="tableButton">
-              <el-table-column label="鎿嶄綔" width="90" fixed="right">
+              <el-table-column label="鎿嶄綔" width="130" fixed="right">
                 <template slot-scope="scope">
                   <el-button @click="handleClick(scope.row)" type="text" size="small">缂栬緫</el-button>
                   <el-button @click="followupClick(scope.row)" type="text" size="small">璺熻繘</el-button>
-                  <!-- <el-button @click="delClick(scope.row.id)" type="text" size="small">鍒犻櫎</el-button> -->
+                  <el-button @click="delClick(scope.row.id)" type="text" size="small">鍒犻櫎</el-button>
                 </template>
               </el-table-column>
             </template>
@@ -156,6 +156,7 @@
   methods: {
     setTable() {
       this.tableList = {
+        selectIndex: true,
         tableInfomation: [],
         allcol: [],
         showcol: this.showCol,
@@ -238,15 +239,24 @@
       this.editConfig.infomation = { ...row }
     },
     // 鍒犻櫎
-    delClick() {
-      if (this.selValueList && this.selValueList.length > 0) {
+    delClick(id) {
+      if(!id){
+        if (this.selValueList && this.selValueList.length == 0) {
+          this.$message.warning("璇疯嚦灏戦�夋嫨涓�鏉¤褰�")
+          return true;
+        }
+      }
         this.$confirm("鏄惁纭鍒犻櫎?", "璀﹀憡", {
           confirmButtonText: "纭畾",
           cancelButtonText: "鍙栨秷",
           type: "warning"
         })
           .then(() => {
-            getDeleteContact({ ids: this.selValueList }).then((response) => {
+            let params={ids: this.selValueList }
+            if(id){
+              params={ids: [id]}
+            }
+            getDeleteContact(params).then((response) => {
               if (response.code === 200) {
                 this.$message.success("鍒犻櫎鎴愬姛")
                 this.getData()
@@ -256,9 +266,6 @@
             })
           })
           .catch(() => {})
-      } else {
-        this.$message.warning("璇疯嚦灏戦�夋嫨涓�鏉¤褰�")
-      }
     },
     getSelectArray(val) {
       console.log(val)

--
Gitblit v1.8.0