Blame view

config/routers/crm_new.ts 2.6 KB
c4f9887f   舒述军   迁移路由文件
1
2
3
4
5
6
7
8
9
10
11
12
  /*
   * @Date: 2021-03-25 14:05:27
   * @LastEditors: wangqiang@feewee.cn
   * @LastEditTime: 2021-04-07 16:04:11
   */
  export default [
    // 新 售前CRM 系统
    {
      path: '/crm/settings', // 设置
      component: './crm_new/Settings',
    },
    {
8ed12793   gongkun   跟随设置
13
14
15
16
      path: '/crm/followUpSettings', // 跟进设置 ----- 龚昆
      component: './crm_new/Settings/subpages/followUpSettings',
    },
    {
a534ab95   gongkun   新增员工拉新奖励设置和首客推荐奖励设置
17
18
19
20
21
22
23
24
      path: '/crm/RewardForEmployeeRecruitment', // 员工分享成交奖励设置 ----- 龚昆
      component: './crm_new/Settings/subpages/RewardForEmployeeRecruitment',
    },
    {
      path: '/crm/FirstCustomerRecommendationReward', // 首客推荐奖励设置 ----- 龚昆
      component: './crm_new/Settings/subpages/FirstCustomerRecommendationReward',
    },
    {
c4f9887f   舒述军   迁移路由文件
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
      path: '/crm/collectionRegionSetting', // 集客归属地设置
      component: './crm_new/Settings/subpages/CollectionRegionSetting',
    },
    {
      path: '/crm/collectionFollowSetting', // 集客跟进设置
      component: './crm_new/Settings/subpages/CollectionFollowSetting',
    },
    {
      path: '/crm/potentialCollectionFollowSetting', // 潜客跟进设置
      component: './crm_new/Settings/subpages/PotentialCollectionFollowSetting',
    },
    {
      path: '/crm/intelligentRatingSettings', // 智能评级设置
      component: './crm_new/IntelligentRatingSettings',
    },
    {
      path: '/crm/brokerRuleSettings', // 经纪人规则设置
      component: './crm_new/BrokerRuleSettings',
    },
    {
      path: '/crm/interViewSetting', // 保有客面访配置
      component: './crm_new/InterViewSetting',
    },
    {
      path: '/crm/channelImport', // 第三方渠道导入记录
      component: './crm_new/ChannelImport',
    },
    {
13bf740b   舒述军   修改门店组件
53
      path: '/crm/tragetProportion', // 目标和占比设置
57f8f51a   舒述军   路由修改
54
      component: './crm_new/TargetAndProportion',
5dae0393   舒述军   目标和占比设置
55
    },
13bf740b   舒述军   修改门店组件
56
57
58
59
    {
      path: '/crm/addTragetProportion', // 添加目标和占比设置
      component: './crm_new/TargetAndProportion/subpages/AddNewSetting',
    },
53d5394f   舒述军   线索到店
60
61
62
63
    {
      path: '/crm/clueToStore', // 线索到店设置
      component: './crm_new/ClueStoreSetting',
    },
379a9b9f   舒述军   三方平台线索归属
64
65
66
67
68
69
70
71
    {
      path: '/crm/clueAscription', // 三方平台线索归属配置
      component: './crm_new/ClueAscription',
    },
    {
      path: '/crm/addClueAscription', // 添加三方平台线索归属配置
      component: './crm_new/ClueAscription/subpages/AddSetting',
    },
604f38ad   舒述军   网销导入
72
73
74
75
    {
      path: '/crm/onlineShopImport', // 网销店导入
      component: './crm_new/OnlineImport',
    },
0bf3029f   舒述军   三方平台线索优化
76
77
78
79
    {
      path: '/crm/threePartyPlatformClue', // 三方平台线索配置
      component: './crm_new/ThreePartyPlatformClue',
    },
0fddd13d   舒述军   暂停区域线索站岗分配资格
80
81
82
83
      {
      path: '/crm/closeClue', // 暂停区域线索站岗分配
      component: './crm_new/Settings/subpages/CloseClue',
    },
c4f9887f   舒述军   迁移路由文件
84
  ];