From 02a1ab651bb79684cf0656bd6fad0611fe568b2b Mon Sep 17 00:00:00 2001
From: yangfeng <wanwan926_4@163.com>
Date: 星期四, 20 七月 2023 18:28:17 +0800
Subject: [PATCH] 服务模块相关接口联调

---
 src/views/client/followupRecords/index.vue |   72 ++++++++++++++++--------------------
 1 files changed, 32 insertions(+), 40 deletions(-)

diff --git a/src/views/client/followupRecords/index.vue b/src/views/client/followupRecords/index.vue
index 6d2d7b0..5cf30ea 100644
--- a/src/views/client/followupRecords/index.vue
+++ b/src/views/client/followupRecords/index.vue
@@ -10,6 +10,7 @@
         <el-table-column label="鎿嶄綔" width="120" fixed="right">
           <template slot-scope="scope">
             <el-button @click="handleClick(scope.row)" type="text" size="small">缂栬緫</el-button>
+            <el-button @click="delClick(scope.row.id)" type="text" size="small">鍒犻櫎</el-button>
           </template>
         </el-table-column>
       </template>
@@ -21,7 +22,7 @@
 
 <script>
 import AddFollowupRecordsDialog from "@/views/client/followupRecords/AddFollowupRecordsDialog"
-import { getFollowRecordList } from "@/api/client/followupRecords.js"
+import { getFollowRecordList, getDeleteFollowRecord } from "@/api/client/followupRecords.js"
 
 export default {
   name: "FollowupRecords",
@@ -72,15 +73,15 @@
       this.tableList = {
         tableInfomation: [],
         tableColumn: [
-          { label: "涓婚", prop: "topic", min: 190 }, // 涓婚
+          { label: "涓婚", prop: "topic", min: 120 }, // 涓婚
           { label: "瀹㈡埛鍚嶇О", prop: "client_name", min: 190 }, // 瀹㈡埛鍚嶇О
           { label: "鑱旂郴浜哄鍚�", prop: "contact_name", min: 100 }, // 鑱旂郴浜哄鍚�
           { label: "瀹㈡埛鐘舵��", prop: "client_status_id", min: 100 }, // 瀹㈡埛鐘舵��
           { label: "鑱旂郴鏂瑰紡", prop: "phone", min: 100 }, // 鑱旂郴鏂瑰紡
-          { label: "鑱旂郴浜烘棩鏈�", prop: "follow_time", min: 100 }, // 鑱旂郴浜烘棩鏈�
-          { label: "涓嬫鍥炶鏃ユ湡", prop: "next_follow_time", min: 130 }, // 涓嬫鍥炶鏃ユ湡
-          { label: "璐熻矗浜�", prop: "member_id", min: 120 }, // 璐熻矗浜�
-          { label: "璺熻繘璁板綍", prop: "record", min: 120 } // 璺熻繘璁板綍
+          { label: "鑱旂郴浜烘棩鏈�", prop: "follow_time", isTime: true, min: 130 }, // 鑱旂郴浜烘棩鏈�
+          { label: "涓嬫鍥炶鏃ユ湡", prop: "next_follow_time", isTime: true, min: 130 }, // 涓嬫鍥炶鏃ユ湡
+          { label: "璐熻矗浜�", prop: "member_id", min: 110 }, // 璐熻矗浜�
+          { label: "璺熻繘璁板綍", prop: "record", min: 130 } // 璺熻繘璁板綍
         ]
       }
       this.searchOptions = []
@@ -126,46 +127,37 @@
     addBtnClick() {
       this.editConfig.visible = true
       this.editConfig.title = "鏂板缓"
-      this.editConfig.infomation = {
-        client_id: "",
-        number: "",
-        client_status_id: "",
-        contact_id: "",
-        member_id: "",
-        topic: "",
-        record: "",
-        phoneNumber: "",
-        sale_chance_id: "",
-        sales_leads_id: "",
-        follow_time: "",
-        next_follow_time: "",
-        purpose: "",
-        content: ""
-      }
+      this.editConfig.infomation = {}
     },
     // 缂栬緫
     handleClick(row) {
       console.log(row)
       this.editConfig.visible = true
       this.editConfig.title = "缂栬緫"
-      this.editConfig.infomation = {
-        id: row.id,
-        client_name: row.client_name,
-        client_id: row.client_id,
-        number: row.number,
-        client_status_id: row.client_status_id,
-        contact_id: row.contact_id,
-        member_id: row.member_id,
-        topic: row.topic,
-        record: row.record,
-        phoneNumber: "",
-        sale_chance_id: row.sale_chance_id,
-        sales_leads_id: row.sales_leads_id,
-        follow_time: row.follow_time,
-        next_follow_time: row.next_follow_time,
-        purpose: row.purpose,
-        content: row.content
-      }
+      this.editConfig.infomation = { ...row }
+    },
+    // 鍒犻櫎
+    delClick(id) {
+      this.$confirm("鏄惁纭鍒犻櫎?", "璀﹀憡", {
+        confirmButtonText: "纭畾",
+        cancelButtonText: "鍙栨秷",
+        type: "warning"
+      })
+        .then(function () {
+          return getDeleteFollowRecord({ id: id })
+        })
+        .then((response) => {
+          if (response.code === 200) {
+            this.$message.success("鍒犻櫎鎴愬姛")
+            this.getUserList()
+          } else {
+            this.$message.warning("鍒犻櫎澶辫触")
+          }
+        })
+        .catch(function () {})
+    },
+    getSelectArray(val) {
+      console.log(val)
     }
   }
 }

--
Gitblit v1.8.0