调整客户列表顺序

This commit is contained in:
kris 2026-04-16 15:01:25 +08:00
parent 7f6a9b71f6
commit fc4d6a011d
1 changed files with 8 additions and 7 deletions

View File

@ -157,15 +157,16 @@ const columns = reactive<ColumnProps<ResCustomerList>[]>([
); );
} }
}, },
// { 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: "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: "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 } { prop: "operation", label: "操作", fixed: "right", width: 320 }
]); ]);