crm:联系人增加 ContactList 组件,提供给其它模块内嵌

This commit is contained in:
YunaiV
2023-11-29 21:42:10 +08:00
parent 2cda0cdd9f
commit 7de0e93d5a
7 changed files with 181 additions and 46 deletions

View File

@ -12,6 +12,14 @@ export interface PermissionVO {
createTime?: Date
}
export enum BizTypeEnum {
CRM_LEADS = 1, // 线索
CRM_CUSTOMER = 2, // 客户
CRM_CONTACTS = 3, // 联系人
CRM_BUSINESS = 5, // 商机
CRM_CONTRACT = 6 // 合同
}
// 查询团队成员列表
export const getPermissionList = async (params) => {
return await request.get({ url: `/crm/permission/list`, params })