Blame view

config/routers/fvm.ts 8.83 KB
cc26d1fc   张志伟   🎉 重新构建项目,解决项目过大的问题
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
53
54
55
56
57
58
59
60
61
62
63
64
  export default [
    /**运维 */
    {
      path: "/fvm/maintnce/repertoryFw", // 库存管理霏微
      component: "./stock/RepertoryFw",
    },
    {
      path: "/fvm/maintnce/shuntDetaile", // 调车详情查询
      component: "./stock/ShuntDetaile",
    },
  
    /**otd计划*/
    {
      path: "/fvm/plan/otdplan",
      component: "./stock/Plan/OTDPlan",
    },
    {
      path: "/fvm/plan/otd/adjust", //计划调整待办
      component: "./stock/Plan/OTDAdjust",
    },
    {
      path: "/fvm/plan/otd/adjust/:id/:planNum?/:areaName?", //计划调整待办编辑
      component: "./stock/Plan/OTDAdjust/components/EditOtd",
    },
    {
      path: "/fvm/plan/otdsubmit", //otd厂家提报
      component: "./stock/Plan/OTDSubmit",
    },
    {
      path: "/fvm/plan/otdsubmit/:id/:planItemId/:areaId/:otdNum", //otd厂家提报编辑
      component: "./stock/Plan/OTDSubmit/components/EditOtd",
    },
    /**厂商目标*/
    {
      path: "/fvm/plan/factory/target",
      component: "./stock/Plan/FactoryTarget",
    },
    /**厂商目标编辑*/
    {
      path: "/fvm/plan/factory/target/edit/:year/:month/:brandId/:id/:disable",
      component: "./stock/Plan/FactoryTarget/subpages/Step/CreateIndex",
    },
    /**不启票计划提醒 */
    {
      path: "/fvm/plan/noticket",
      component: "./stock/Plan/NoticketConfig",
    },
    /** 提前输机 */
    {
      path: "/fvm/advance/retail",
      component: "./stock/AdvanceRetail",
    },
    /** 提前输机选择车辆 */
    {
      path: "/fvm/AdvanceRetail/comfirm",
      component: "./stock/AdvanceRetail/components/SelectCar",
    },
    /** 提前输机进度 */
    {
      path: "/fvm/advance/progress",
      component: "./stock/AdvanceProgress",
    },
  
    /** *******系统设置****** */
2aa2036b   赵凤   启票价百分比调整设置
65
66
67
68
69
  
    {
      path: "/fvm/systems/ticket/price", // 启票价百分比调整设置
      component: "./stock/Systems/TicketPercentSetting",
    },
cc26d1fc   张志伟   🎉 重新构建项目,解决项目过大的问题
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
    {
      path: "/fvm/systems/investors", // 投资主体设置
      component: "./stock/Systems/InvestorsConfig",
    },
    {
      path: "/fvm/systems/cashReward", // 现金启票奖励设置
      component: "./stock/Systems/CashReward",
    },
    {
      path: "/fvm/systems/enclosure", // 随车附件设置
      component: "./stock/Systems/EnclosureConfig",
    },
    {
      path: "/fvm/systems/ticketStock", // 启票商家默认库房
      component: "./stock/Systems/TicketStock",
    },
    {
      path: "/fvm/systems/thirdTransport", // 第三方运输公司人员备案
      component: "./stock/Systems/ThirdTransport",
    },
    {
      path: "/fvm/systems/shunting/setting/:type", // 调车设置
      component: "./stock/Systems/ShuntSetting",
    },
    {
      path: "/fvm/systems/checkCar/:type", // 发运验车设置
      component: "./stock/Systems/ShuntSetting",
    },
    {
      path: "/fvm/systems/lock/setting", // 锁车设置
      component: "./stock/Systems/ShuntSetting/components/LockedSetting",
    },
    {
      path: "/fvm/systems/shuntingCost/", // 调车费用设置
      component: "./stock/Systems/ShuntSetting/components/CostSetting",
    },
    {
      path: "/fvm/systems/thirdTransport", // 第三方运输公司人员备案
      component: "./stock/Systems/ThirdTransport",
    },
    {
      path: "/fvm/systems/carConfig", // 门店入库车辆事项配置
      component: "./stock/Systems/CarConfig",
    },
    {
      path: "/fvm/systems/concession", // 折让
      component: "./stock/Systems/ConcessionConfig",
    },
    {
      path: "/fvm/addprice", // 车辆加价设置
      component: "./stock/CarAddPrice",
    },
c68be0f0   莫红玲   发运验车洗车费设置
122
123
124
125
    {
      path: "/fvm/systems/carwash", // 发运验车洗车费设置
      component: "./stock/Systems/CarWash",
    },
2e59316f   赵凤   厂家直营配置
126
127
128
129
    {
      path: "/fvm/systems/directsale", // 厂家直营配置
      component: "./stock/Systems/DirectSaleConfig",
    },
4ca3ab5a   gongkun   新增开增票待办设置
130
131
132
133
    {
      path: "/fvm/systems/TicketIncrease", // 开增票待办设置
      component: "./stock/Systems/TicketIncreaseToBeDone",
    },
cc26d1fc   张志伟   🎉 重新构建项目,解决项目过大的问题
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
    /**库房设置 */
    {
      path: "/fvm/storehouse/maintain", // 库房管理
      component: "./stock/StoreHouse/Maintain",
    },
    {
      path: "/fvm/storehouse/regional", // 区域库
      component: "./stock/StoreHouse/RegionalStorage",
    },
    {
      path: "/fvm/storehouse/sale", // 销售门店库
      component: "./stock/StoreHouse/ShopStorage",
    },
    {
      path: "/fvm/storehouse/regionalQuery", // 区域库查询授权
      component: "./stock/StoreHouse/RegionalQueryAuth",
    },
    {
      path: "/fvm/storehouse/regionalApproval/:type", // 区域库审批权限
      component: "./stock/StoreHouse/RegionalApproval",
    },
    {
      path: "/fvm/storehouse/qualityLoss/:type", // 区域库质损处理权限
      component: "./stock/StoreHouse/RegionalApproval",
    },
    {
      path: "/fvm/storehouse/checkAuth/:type", // 库房验车权限
      component: "./stock/StoreHouse/StorageAuth",
    },
    {
      path: "/fvm/storehouse/storageAuth/:type", // 库房权限
      component: "./stock/StoreHouse/StorageAuth",
    },
2e59316f   赵凤   厂家直营配置
167
    {
cc26d1fc   张志伟   🎉 重新构建项目,解决项目过大的问题
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
      path: "/fvm/storehouse/databag/:type", // 资料袋洗车费权限设置
      component: "./stock/StoreHouse/StorageAuth",
    },
    {
      path: "/fvm/storehouse/abnormal", // 库房权限
      component: "./stock/StoreHouse/AbnormalAuth",
    },
    {
      path: "/fvm/storehouse/overdue/:type", // 验车超期干预权限
      component: "./stock/StoreHouse/RegionalApproval",
    },
    /**车辆上架管理 */
    {
      path: "/fvm/product",
      component: "./stock/ProductSetting",
    },
    /**门店维度上架 */
    {
      path: "/fvm/product/puton",
      component: "./stock/ProductSetting/PutonShelf",
    },
    /**车辆下架 */
    {
      path: "/fvm/product/off",
      component: "./stock/ProductSetting/OffShelf",
    },
    /**门店维度调价 */
    {
      path: "/fvm/product/change/price",
      component: "./stock/ProductSetting/ChangePrice",
    },
    /**车辆维度上架 */
    {
      path: "/fvm/product/car/puton",
      component: "./stock/ProductSetting/VehicleDimension/PutonShelf",
    },
    /**车辆维度调价 */
    {
      path: "/fvm/product/car/change/price",
      component: "./stock/ProductSetting/VehicleDimension/ChangePrice",
    },
  
    /**dms */
    {
      path: "fvm/ticket/dms",
      component: "./stock/Dms",
    },
    /**dms库房 */
    {
3c533c3a   莫红玲   删无用文件
217
      path: "fvm/ticket/dmstorage",
cc26d1fc   张志伟   🎉 重新构建项目,解决项目过大的问题
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
      component: "./stock/DmsStorage",
    },
    /**厂家启票 */
    {
      path: "fvm/ticket/import",
      component: "./stock/TicketImport",
    },
    /**外采车辆导入 */
    {
      path: "fvm/ticket/external",
      component: "./stock/ExternalVehicle",
    },
    /**攻坚车 */
    {
      path: "fvm/crucialCar",
      component: "./stock/CrucialCar",
    },
    /**攻坚车新增 */
    {
      path: "fvm/crucialCar/save",
      component: "./stock/CrucialCar/subpages/SaveData",
    },
    /**样车 */
    {
      path: "fvm/sample",
      component: "./stock/SampleCar",
    },
    /**样车新增 */
    {
      path: "fvm/sample/save",
      component: "./stock/SampleCar/SubPages/SaveData",
    },
    /**特价车 */
    {
      path: "fvm/specialCar",
      component: "./stock/SpecialOfferCar",
    },
    /**特价车新增 */
    {
      path: "fvm/specialCar/save",
      component: "./stock/SpecialOfferCar/SubPages/SaveData",
    },
    // 发票设置
    {
      path: "/fvm/systems/invoiceSetting", // 调车设置
      component: "./stock/Systems/Invoice",
    },
  
    /**厂家补贴 */
    {
      path: "/fvm/subsidy/replace", // 置换补贴
      component: "./stock/ManufacturerSubsidies/Replace",
    },
    {
      path: "fvm/subsidy/keyAccount", // 大客户补贴
      component: "./stock/ManufacturerSubsidies/KeyAccount",
    },
    {
      path: "fvm/subsidy/addPurchase", // 增购补贴
      component: "./stock/ManufacturerSubsidies/AddPurchase",
    },
    {
      path: "fvm/subsidy/vehicle/insurance", //车险补贴
      component: "./stock/ManufacturerSubsidies/VehicleInsurance",
    },
  
    {
      path: "fvm/subsidy/purchase", // 购置税补贴
      component: "./stock/ManufacturerSubsidies/PurchaseTax",
    },
  
    {
      path: "fvm/promotion", // 厂家促销
      component: "./stock/ManufacturerPromotion",
    },
    {
      path: "fvm/promotion/edit/:id?/:status?", // 厂家促销编辑
      component: "./stock/ManufacturerPromotion/components/CreateIndex",
    },
  
    // OTD计划设置
    {
      path: "/fvm/plan/otdset",
      component: "./stock/Plan/OTDSetting",
    },
    {
      path: "fvm/plan/otdset/step/:planId/:brandId/:defaultActiveKey/:disable",
      component: "./stock/Plan/OTDSetting/subpages/Step",
    },
    /*******折让** */
    {
      path: "fvm/allowance", // 折让确认管理
      component: "./stock/AllowanceConfirm",
    },
    {
      path: "fvm/allowance/edit/:id?", // 折让确认管理编辑新增
      component: "./stock/AllowanceConfirm/EditComfirm/index",
    },
4947e2ea   赵凤   直营车折让确认
316
317
318
319
    {
      path: "fvm/directVehicles/allowance", // 直营车折让确认
      component: "./stock/DirectVehicles",
    },
293e3f3f   赵凤   厂家直营确认
320
321
322
323
    {
      path: "fvm/directVehicles/edit/:id?", // 直营车折让确认编辑啊
      component: "./stock/DirectVehicles/EditComfirm",
    },
06764790   莫红玲   直营车库存池,特情支付保证金申请
324
325
326
327
    {
      path: "/fvm/directpool", // 直营车库存池
      component: "./stock/DirectPool",
    },
cc26d1fc   张志伟   🎉 重新构建项目,解决项目过大的问题
328
329
330
331
332
    // OTD计划设置
    {
      path: "/fvm/plan/ticket/execution",
      component: "./stock/Plan/TicketExecution",
    },
8dfcfb06   莫红玲   加装车配置新增联调
333
334
335
336
337
    // 加装车配置
    {
      path: "/fvm/vehicle/additional",
      component: "./stock/VehicleAdditional",
    },
cc26d1fc   张志伟   🎉 重新构建项目,解决项目过大的问题
338
  ];