From f417dc0a44d225d4ed19bcb5207250eb1b669455 Mon Sep 17 00:00:00 2001 From: yangfeng <wanwan926_4@163.com> Date: 星期五, 25 八月 2023 12:45:09 +0800 Subject: [PATCH] bug修复 --- src/views/client/followupRecords/index.vue | 43 +++++++++++++++++++++++++++---------------- 1 files changed, 27 insertions(+), 16 deletions(-) diff --git a/src/views/client/followupRecords/index.vue b/src/views/client/followupRecords/index.vue index bb04e8b..c5710b0 100644 --- a/src/views/client/followupRecords/index.vue +++ b/src/views/client/followupRecords/index.vue @@ -57,16 +57,16 @@ type: Boolean, default: false }, - followRecord: { - type: Array, - default: () => [] - }, addConfig: { type: Object, default: () => { - return { - sales_leads_name: "" - } + return {} + } + }, + addIdConfig: { + type: Object, + default: () => { + return {} } } }, @@ -129,10 +129,19 @@ created() { this.setTable() if (!this.isDetail) { - this.getData() + this.search_map = {} } else { - this.tableList.tableInfomation = this.followRecord + 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() { @@ -142,11 +151,11 @@ { 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 } // 璺熻繘璁板綍 ] } @@ -174,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 || [] -- Gitblit v1.8.0