From fc4d6a011d8ae4bbf3964ffa842b8c55f045b3e2 Mon Sep 17 00:00:00 2001 From: kris Date: Thu, 16 Apr 2026 15:01:25 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E5=AE=A2=E6=88=B7=E5=88=97?= =?UTF-8?q?=E8=A1=A8=E9=A1=BA=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/customerManage/customerList/index.vue | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/views/customerManage/customerList/index.vue b/src/views/customerManage/customerList/index.vue index 327ad6c..e8423c8 100644 --- a/src/views/customerManage/customerList/index.vue +++ b/src/views/customerManage/customerList/index.vue @@ -157,15 +157,16 @@ const columns = reactive[]>([ ); } }, - // { prop: "name", label: "客户名称", width: 160, search: { el: "input" }, isShow: false, sortable: "custom" }, - { prop: "introducer", label: "介绍人", width: 160, search: { el: "input" }, sortable: "custom" }, - { prop: "baseLocation", label: "base地", width: 160, search: { el: "input" }, sortable: "custom" }, - { prop: "type", label: "客户类型", width: 160, enum: customerType, search: { el: "select" }, sortable: "custom" }, - { prop: "createdAt", label: "创建时间", width: 200 }, - { prop: "isValid", label: "是否有效", width: 160, enum: isValidType, search: { el: "select" } }, { prop: "contactName", label: "联系人名称", width: 160, search: { el: "input" } }, - { prop: "nextRemindTime", label: "下次提醒时间", width: 200, sortable: "custom" }, + { prop: "type", label: "客户类型", width: 160, enum: customerType, search: { el: "select" }, sortable: "custom" }, + { prop: "baseLocation", label: "base地", width: 160, search: { el: "input" }, sortable: "custom" }, + { prop: "introducer", label: "介绍人", width: 160, search: { el: "input" }, sortable: "custom" }, + { prop: "createdAt", label: "创建时间", width: 200 }, { prop: "latestFollowTime", label: "最后跟进时间", width: 200, sortable: "custom" }, + { prop: "nextRemindTime", label: "下次提醒时间", width: 200, sortable: "custom" }, + { prop: "isValid", label: "是否有效", width: 160, enum: isValidType, search: { el: "select" } }, + + // { prop: "name", label: "客户名称", width: 160, search: { el: "input" }, isShow: false, sortable: "custom" }, { prop: "operation", label: "操作", fixed: "right", width: 320 } ]);