mirror of
https://gitee.com/hhyykk/ipms-sjy-ui.git
synced 2025-07-14 10:55:06 +08:00
refactor: 提取公共选项定义
This commit is contained in:
19
src/views/crm/backlog/tables/common.ts
Normal file
19
src/views/crm/backlog/tables/common.ts
Normal file
@ -0,0 +1,19 @@
|
||||
/** 跟进状态 */
|
||||
export const FOLLOWUP_STATUS = [
|
||||
{ label: '已跟进', value: true },
|
||||
{ label: '待跟进', value: false }
|
||||
]
|
||||
|
||||
/** 归属范围 */
|
||||
export const SCENE_TYPES = [
|
||||
{ label: '我负责的', value: 1 },
|
||||
{ label: '我参与的', value: 2 },
|
||||
{ label: '下属负责的', value: 3 }
|
||||
]
|
||||
|
||||
/** 联系状态 */
|
||||
export const CONTACT_STATUS = [
|
||||
{ label: '今日需联系', value: 1 },
|
||||
{ label: '已逾期', value: 2 },
|
||||
{ label: '已联系', value: 3 }
|
||||
]
|
Reference in New Issue
Block a user