| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- export type TASK_TYPE = {
- key: string
- title: string
- backgroundImage: string
- }
- export const DEFAULT_WORKBENCH_TASKS: TASK_TYPE[] = [
- {
- key: 'customer_visit',
- title: '客户拜访',
- backgroundImage: 'https://yy-cloud-oss.oss-cn-beijing.aliyuncs.com/img/khbf.svg',
- },
- {
- key: 'market_research',
- title: '市场信息收集',
- backgroundImage: 'https://yy-cloud-oss.oss-cn-beijing.aliyuncs.com/img/scxxsj.svg',
- },
- {
- key: 'business_customer_manage',
- title: '商业公司客户管理',
- backgroundImage: 'https://yy-cloud-oss.oss-cn-beijing.aliyuncs.com/img/sygskhgl.svg',
- },
- {
- key: 'info_forward',
- title: '信息转发',
- backgroundImage: 'https://yy-cloud-oss.oss-cn-beijing.aliyuncs.com/img/xxzf.svg',
- },
- {
- key: 'meeting_training',
- title: '会议培训与专访',
- backgroundImage: 'https://yy-cloud-oss.oss-cn-beijing.aliyuncs.com/img/hypxyzf.svg',
- },
- {
- key: 'special_service',
- title: '专项服务',
- backgroundImage: 'https://yy-cloud-oss.oss-cn-beijing.aliyuncs.com/img/zxfw.svg',
- },
- ]
- export const INVESTMENT_MANAGER_TASKS = [
- {
- key: 'agent_customer_manage',
- title: '代理商客户管理',
- backgroundImage: 'https://yy-cloud-oss.oss-cn-beijing.aliyuncs.com/img/dlskhgl.svg',
- },
- ]
|