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 } ]);