From d3c0cce8e77ea1986b2cd0c82135d926f1e2137a Mon Sep 17 00:00:00 2001
From: yangfeng <wanwan926_4@163.com>
Date: 星期二, 17 十月 2023 10:39:34 +0800
Subject: [PATCH] Merge branch 'dev' of http://192.168.5.5:10010/r/web/crm-web into zhengwenfeng/modify-style

---
 src/views/client/client/index.vue |   32 ++++++++++++++++++++------------
 1 files changed, 20 insertions(+), 12 deletions(-)

diff --git a/src/views/client/client/index.vue b/src/views/client/client/index.vue
index 357b5fc..d341bbe 100644
--- a/src/views/client/client/index.vue
+++ b/src/views/client/client/index.vue
@@ -28,7 +28,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>
@@ -47,7 +47,7 @@
               @selTableCol="selTableCol"
           >
             <template slot="tableButton">
-              <el-table-column label="鎿嶄綔" width="150">
+              <el-table-column label="鎿嶄綔" width="180">
                 <template slot-scope="scope">
                   <el-button v-if="activeName === 'first'" type="text" size="small" @click="allocationBtnClick(scope.row)"
                   >鍒嗛厤</el-button
@@ -55,7 +55,7 @@
                   <el-button v-else type="text" size="small" @click="changeHighSeasClick(scope.row)">鍙樻洿鍏捣</el-button>
                   <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>
@@ -174,6 +174,7 @@
   methods: {
     setTable() {
       this.tableList = {
+        selectIndex: true,
         tableInfomation: [],
         allcol: [],
         showcol: this.showCol,
@@ -283,7 +284,6 @@
     },
     // 鏂板缓
     addBtnClick() {
-      this.editConfig.visible = true
       this.editConfig.title = "鏂板缓"
       this.editConfig.infomation = {
         city_id: 0,
@@ -295,26 +295,36 @@
         enterprise_scale_id: 1,
         industry_id: 1
       }
+      this.editConfig.visible = true
     },
     // 缂栬緫
     handleClick(row) {
       console.log(row)
-      this.editConfig.visible = true
       this.editConfig.title = "缂栬緫"
       this.editConfig.infomation = {
         ...row
       }
+      this.editConfig.visible = true
     },
     // 鍒犻櫎
-    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(() => {
-            getDeleteClient({ ids: this.selValueList }).then((response) => {
+            let params={ids: this.selValueList }
+            if(id){
+              params={ids: [id]}
+            }
+            getDeleteClient(params).then((response) => {
               if (response.code === 200) {
                 this.$message.success("鍒犻櫎鎴愬姛")
                 this.getData()
@@ -324,9 +334,6 @@
             })
           })
           .catch(() => {})
-      } else {
-        this.$message.warning("璇疯嚦灏戦�夋嫨涓�鏉¤褰�")
-      }
     },
     getSelectArray(val) {
       console.log(val)
@@ -362,14 +369,15 @@
     // 璺熻繘
     followupClick(row) {
       console.log(row)
-      this.editFollowupConfig.visible = true
       this.editFollowupConfig.title = "鏂板缓"
       this.editFollowupConfig.infomation = {
         ...row,
         client_name: row.name,
         number: "",
+        codeStandID:'',
         next_follow_time: row.next_visit_time
       }
+      this.editFollowupConfig.visible = true
     },
     // 鍒嗛厤
     allocationBtnClick(row) {

--
Gitblit v1.8.0