Blame view

config/routers/performance.ts 3.44 KB
cc26d1fc   张志伟   🎉 重新构建项目,解决项目过大的问题
1
2
3
4
  /**
   * 绩效系统
   */
  export default [
5ff1cf49   赵凤   绩效指标库列表
5
6
    /** 绩效指标库 */
    {
175082ba   zhaolin   绩效排名组合
7
8
      path: "/morax/kpiSetting", //绩效指标库设置
      component: "./performance/KpiSetting",
5ff1cf49   赵凤   绩效指标库列表
9
    },
cc26d1fc   张志伟   🎉 重新构建项目,解决项目过大的问题
10
    {
175082ba   zhaolin   绩效排名组合
11
12
      path: "/morax/kpiGroupSetting", //绩效组设置
      component: "./performance/KpiGroupSetting",
ed4e26a9   赵凤   绩效指标库配置
13
    },
54f64cee   赵凤   按照岗位选择门店
14
15
    /** 绩效组设置==》编辑新增 */
    {
fdbfb874   曾柯   绩效薪酬审批修改
16
      path: "morax/kpiGroupSetting/edit/:id?/:read?/:type?",
54f64cee   赵凤   按照岗位选择门店
17
18
      component: "./performance/KpiGroupSetting/EditComfirm/index",
    },
ed4e26a9   赵凤   绩效指标库配置
19
    {
175082ba   zhaolin   绩效排名组合
20
21
      path: "/morax/performanceManage/performanceGroup", //绩效组设置
      component: "./performance/PerforGroupSeting",
cc26d1fc   张志伟   🎉 重新构建项目,解决项目过大的问题
22
    },
0c7098e9   赵凤   薪酬计算方式-星级
23
  
cc26d1fc   张志伟   🎉 重新构建项目,解决项目过大的问题
24
    {
175082ba   zhaolin   绩效排名组合
25
26
27
28
29
30
31
32
33
34
35
36
37
      path: "/performance/QuotaSetting/:teamId", // 绩效组设置 -> 设置指标
      component: "./performance/QuotaSetting",
    },
  
    /**  绩效排名组合设置*/
    {
      path: "/morax/KpiRankSettings",
      component: "./performance/KpiRankSettings",
    },
    /** 绩效排名组合设置==》编辑新增 */
    {
      path: "morax/KpiRankSettings/edit/:id?",
      component: "./performance/KpiRankSettings/EditComfirm/index",
cc26d1fc   张志伟   🎉 重新构建项目,解决项目过大的问题
38
    },
2b104873   赵凤   绩效组配置
39
40
41
42
  
    /** 薪酬 */
    /** 薪酬指标库 */
    {
175082ba   zhaolin   绩效排名组合
43
44
      path: "/morax/salarySetting", //薪酬指标库设置
      component: "./performance/SalarySetting",
2b104873   赵凤   绩效组配置
45
    },
0c7098e9   赵凤   薪酬计算方式-星级
46
47
    /** * 薪酬组设置 */
    {
175082ba   zhaolin   绩效排名组合
48
49
      path: "/morax/compensateGroupConfig", //薪酬组设置
      component: "./performance/CompensateGroupConfig",
0c7098e9   赵凤   薪酬计算方式-星级
50
51
52
    },
    /** 薪酬组设置==》编辑新增 */
    {
fdbfb874   曾柯   绩效薪酬审批修改
53
      path: "morax/compensateGroupConfig/edit/:id?/:read?/:type?",
0c7098e9   赵凤   薪酬计算方式-星级
54
55
      component: "./performance/CompensateGroupConfig/EditComfirm/index",
    },
179018a7   赵凤   薪资明细
56
57
58
  
    /** 薪酬明细 */
    {
175082ba   zhaolin   绩效排名组合
59
60
      path: "/morax/salaryDetail", //薪酬指标库设置
      component: "./performance/SalaryDetail",
179018a7   赵凤   薪资明细
61
    },
fac92585   赵凤   星级规则
62
63
64
65
66
    /** 薪酬星级规则 */
    {
      path: "morax/starRule",
      component: "./performance/StarRatingRules",
    },
77dbe4e7   赵凤   薪酬组回显
67
68
69
70
71
    /** 薪酬系统设置 */
    {
      path: "morax/systemSetting",
      component: "./performance/SalarySystemSetting",
    },
a7b88b33   曾柯   考评组设置部分
72
  
f0653c98   曾柯   考评指标
73
74
75
76
77
    /** 考评指标 */
    {
      path: "/morax/evaSetting", //考评指标库设置
      component: "./performance/EvaSetting",
    },
a7b88b33   曾柯   考评组设置部分
78
79
80
81
82
83
84
85
86
    {
      path: "/morax/evaGroupSetting", //考评组设置
      component: "./performance/EvaGroupSetting",
    },
    /** 考评组设置==》编辑新增 */
    {
      path: "/morax/evaGroupSetting/edit/:id?/:read?/:type?",
      component: "./performance/EvaGroupSetting/EditComfirm/index",
    },
2683f431   曾柯   考评数据导入
87
88
89
90
91
92
93
    /** 考评数据导入 */
    {
      path: "/morax/evaDataImport",
      component: "./performance/EvaDataImport",
    },
    /** 考评数据导入==> 查看数据清单 */
    {
c0188e80   曾柯   考评bugfix0306
94
      path: "/morax/evaDataImport/edit/:id?/:num?",
2683f431   曾柯   考评数据导入
95
96
      component: "./performance/EvaDataImport/EditComfirm/index",
    },
179018a7   赵凤   薪资明细
97
  
fac92585   赵凤   星级规则
98
    /** 旧 */
cc26d1fc   张志伟   🎉 重新构建项目,解决项目过大的问题
99
    {
175082ba   zhaolin   绩效排名组合
100
101
      path: "/performance/salaryManage/salaryGroupSetting", //薪酬组设置
      component: "./performance/SalaryGroupSetting",
cc26d1fc   张志伟   🎉 重新构建项目,解决项目过大的问题
102
103
    },
    {
175082ba   zhaolin   绩效排名组合
104
105
      path: "/performance/salaryManage/salaryGroupSetting/:teamId", //薪酬项构成设置
      component: "./performance/SalaryitemSetting",
cc26d1fc   张志伟   🎉 重新构建项目,解决项目过大的问题
106
107
    },
    {
175082ba   zhaolin   绩效排名组合
108
109
      path: "/performance/salaryManage/aftersaleSalary", //售后薪酬组设置
      component: "./performance/AftersaleSalary",
cc26d1fc   张志伟   🎉 重新构建项目,解决项目过大的问题
110
111
    },
    {
175082ba   zhaolin   绩效排名组合
112
113
      path: "/performance/salaryManage/aftersaleSalary/:teamId/:name/:remark", //薪酬组->售后薪酬项设置
      component: "./performance/AftersaleItemSetting",
cc26d1fc   张志伟   🎉 重新构建项目,解决项目过大的问题
114
115
    },
    {
175082ba   zhaolin   绩效排名组合
116
117
      path: "/performance/performanceManage/aftersalePerformance", //售后绩效
      component: "./performance/AftersalePerformance",
cc26d1fc   张志伟   🎉 重新构建项目,解决项目过大的问题
118
119
    },
    {
175082ba   zhaolin   绩效排名组合
120
121
      path: "/performance/performanceManage/aftersalePerformance/:teamId/:name/:remark", //售后绩效-指标
      component: "./performance/AftersalePerformance",
cc26d1fc   张志伟   🎉 重新构建项目,解决项目过大的问题
122
    },
175082ba   zhaolin   绩效排名组合
123
  ];