From ea4f9ee1d7a6333bd516deb09c1d12f18a168787 Mon Sep 17 00:00:00 2001
From: yangfeng <wanwan926_4@163.com>
Date: 星期五, 18 八月 2023 19:04:53 +0800
Subject: [PATCH] bug 修复
---
src/views/client/followupRecords/index.vue | 81 +++++++++++++++++++++++++++++++++-------
1 files changed, 67 insertions(+), 14 deletions(-)
diff --git a/src/views/client/followupRecords/index.vue b/src/views/client/followupRecords/index.vue
index a9486b0..9922a00 100644
--- a/src/views/client/followupRecords/index.vue
+++ b/src/views/client/followupRecords/index.vue
@@ -9,6 +9,9 @@
ref="searchCommonView"
:query-class-options="queryClassOptions"
:search-options="searchOptions"
+ :search-sel="searchSel"
+ @searchClick="searchClick"
+ @resetClick="resetClick"
/>
<div class="btn-pager">
<PublicFunctionBtnView :statistics="true" :operates-list="operatesList" @batchDelete="delClick" />
@@ -53,6 +56,18 @@
isDetail: {
type: Boolean,
default: false
+ },
+ addConfig: {
+ type: Object,
+ default: () => {
+ return {}
+ }
+ },
+ addIdConfig: {
+ type: Object,
+ default: () => {
+ return {}
+ }
}
},
mixins: [pageMixin],
@@ -103,12 +118,30 @@
visible: false,
infomation: {}
},
- selValueList: []
+ selValueList: [],
+ searchSel: {
+ value: "topic",
+ label: ""
+ },
+ search_map: {}
}
},
created() {
this.setTable()
- this.getData()
+ if (!this.isDetail) {
+ this.search_map = {}
+ } else {
+ let content = ""
+ if (this.addConfig.keywordType === "閿�鍞満浼�") {
+ content = this.addConfig.id
+ } else {
+ content = this.addConfig.common_name
+ }
+ this.search_map = {
+ [this.addConfig.id_name]: content
+ }
+ }
+ this.getData(this.search_map)
},
methods: {
setTable() {
@@ -118,25 +151,26 @@
{ label: "涓婚", prop: "topic", min: 120 }, // 涓婚
{ label: "瀹㈡埛鍚嶇О", prop: "client_name", min: 190, isClientClick: true }, // 瀹㈡埛鍚嶇О
{ label: "鑱旂郴浜哄鍚�", prop: "contact_name", min: 100, isContactClick: true }, // 鑱旂郴浜哄鍚�
- { label: "瀹㈡埛鐘舵��", prop: "client_status_id", min: 100 }, // 瀹㈡埛鐘舵��
- { label: "鑱旂郴鏂瑰紡", prop: "phone", min: 100 }, // 鑱旂郴鏂瑰紡
- { 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: "client_status", min: 100 }, // 瀹㈡埛鐘舵��
+ { label: "鑱旂郴鏂瑰紡", prop: "contact_information_name", min: 100 }, // 鑱旂郴鏂瑰紡
+ { label: "鑱旂郴鏃ユ湡", prop: "follow_time", min: 130 }, // 鑱旂郴浜烘棩鏈�
+ { label: "涓嬫鍥炶鏃ユ湡", prop: "next_follow_time", min: 130 }, // 涓嬫鍥炶鏃ユ湡
+ { label: "璐熻矗浜�", prop: "member_name", min: 110 }, // 璐熻矗浜�
{ label: "璺熻繘璁板綍", prop: "record", min: 130 } // 璺熻繘璁板綍
]
}
this.searchOptions = []
for (let i = 0; i < this.tableList.tableColumn.length; i++) {
const label = this.tableList.tableColumn[i].label
- this.searchOptions.push({ value: (i + 1).toString(), label: label })
+ const value = this.tableList.tableColumn[i].prop
+ this.searchOptions.push({ value: value, label: label })
}
},
// 璇锋眰鏁版嵁
async getData() {
this.loading = true
await getFollowRecordList({
- keyword: "",
+ search_map: this.search_map,
page: this.pagerOptions.currPage,
pageSize: this.pagerOptions.pageSize
})
@@ -149,8 +183,10 @@
...item,
client_name: item.client.name,
contact_name: item.contact.name,
- client_status_id: item.client.client_status_id,
- phone: item.contact.phone
+ client_status: item.client_status.name,
+ phone: item.contact.phone,
+ member_name: item.member.username
+ // contact_information_name: item.contact_information.name
}
})
this.tableList.tableInfomation = list || []
@@ -169,11 +205,23 @@
this.loading = false
})
},
+ // 鎼滅储
+ searchClick(val, content) {
+ console.log(val, content)
+ this.search_map = {
+ [val.value]: content
+ }
+ this.getData()
+ },
+ resetClick() {
+ this.search_map = {}
+ this.getData()
+ },
// 鏂板缓
addBtnClick() {
this.editConfig.visible = true
this.editConfig.title = "鏂板缓"
- this.editConfig.infomation = {}
+ this.editConfig.infomation = { ...this.addConfig }
},
// 缂栬緫
handleClick(row) {
@@ -217,7 +265,11 @@
selContactsClick(row) {
console.log(row)
this.contactsDeail.visible = true
- this.contactsDeail.infomation = { ...row.contact, Client: { name: row.client_name } }
+ this.contactsDeail.infomation = {
+ ...row.contact,
+ Client: { name: row.client_name, client_status_id: row.client.client_status_id },
+ client_name: row.client_name
+ }
},
// 瀹㈡埛鍚嶇О璇︽儏
selClientClick(row) {
@@ -227,7 +279,8 @@
...row.client,
client_name: row.client.name,
client_level: row.client.client_level.name,
- client_status: row.client.client_status.name
+ client_status: row.client.client_status.name,
+ contact_name: row.contact_name
}
}
}
--
Gitblit v1.8.0