调整客户列表顺序
This commit is contained in:
parent
7f6a9b71f6
commit
fc4d6a011d
|
|
@ -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: "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 }
|
||||
]);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue