workbench.config.ts 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. export type TASK_TYPE = {
  2. key: string
  3. title: string
  4. backgroundImage: string
  5. }
  6. export const DEFAULT_WORKBENCH_TASKS: TASK_TYPE[] = [
  7. {
  8. key: 'customer_visit',
  9. title: '客户拜访',
  10. backgroundImage: 'https://yy-cloud-oss.oss-cn-beijing.aliyuncs.com/img/khbf.svg',
  11. },
  12. {
  13. key: 'market_research',
  14. title: '市场信息收集',
  15. backgroundImage: 'https://yy-cloud-oss.oss-cn-beijing.aliyuncs.com/img/scxxsj.svg',
  16. },
  17. {
  18. key: 'business_customer_manage',
  19. title: '商业公司客户管理',
  20. backgroundImage: 'https://yy-cloud-oss.oss-cn-beijing.aliyuncs.com/img/sygskhgl.svg',
  21. },
  22. {
  23. key: 'info_forward',
  24. title: '信息转发',
  25. backgroundImage: 'https://yy-cloud-oss.oss-cn-beijing.aliyuncs.com/img/xxzf.svg',
  26. },
  27. {
  28. key: 'meeting_training',
  29. title: '会议培训与专访',
  30. backgroundImage: 'https://yy-cloud-oss.oss-cn-beijing.aliyuncs.com/img/hypxyzf.svg',
  31. },
  32. {
  33. key: 'special_service',
  34. title: '专项服务',
  35. backgroundImage: 'https://yy-cloud-oss.oss-cn-beijing.aliyuncs.com/img/zxfw.svg',
  36. },
  37. ]
  38. export const INVESTMENT_MANAGER_TASKS = [
  39. {
  40. key: 'agent_customer_manage',
  41. title: '代理商客户管理',
  42. backgroundImage: 'https://yy-cloud-oss.oss-cn-beijing.aliyuncs.com/img/dlskhgl.svg',
  43. },
  44. ]