jufubao-admin-library 1.0.0-beta1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +90 -0
  3. package/library/gulpfile.js/const.js +51 -0
  4. package/library/gulpfile.js/index.js +237 -0
  5. package/library/gulpfile.js/util.js +114 -0
  6. package/library/viewModules/config.js +75 -0
  7. package/library/viewModules/viewStat/router/supplierStat.js +33 -0
  8. package/library/viewModules/viewStat/schemas/supplier.stat.js +70 -0
  9. package/library/viewModules/viewStat/schemas.js +18 -0
  10. package/library/viewModules/viewStat/viewsStat/index/components/stat-all.vue +233 -0
  11. package/library/viewModules/viewStat/viewsStat/index/components/stat-product.vue +129 -0
  12. package/library/viewModules/viewStat/viewsStat/index/components/stat-supplier.vue +124 -0
  13. package/library/viewModules/viewStat/viewsStat/index/components/table-category.vue +309 -0
  14. package/library/viewModules/viewStat/viewsStat/index/components/table-product.vue +316 -0
  15. package/library/viewModules/viewStat/viewsStat/index/components/table-supplier.vue +276 -0
  16. package/library/viewModules/viewStat/viewsStat/index/index.vue +117 -0
  17. package/library/viewModules/viewTask/router/tasks.js +34 -0
  18. package/library/viewModules/viewTask/schemas/tasks.js +52 -0
  19. package/library/viewModules/viewTask/viewTask/list.vue +195 -0
  20. package/library/viewModules/viewsEnterpriseBuy/router/enterprise_buy.js +91 -0
  21. package/library/viewModules/viewsEnterpriseBuy/schemas/enterprise_buy.js +420 -0
  22. package/library/viewModules/viewsEnterpriseBuy/viewsEnterpriseBuy/compontents/OrderInfoButton.vue +550 -0
  23. package/library/viewModules/viewsEnterpriseBuy/viewsEnterpriseBuy/compontents/cardList.vue +119 -0
  24. package/library/viewModules/viewsEnterpriseBuy/viewsEnterpriseBuy/compontents/expressCopy.vue +259 -0
  25. package/library/viewModules/viewsEnterpriseBuy/viewsEnterpriseBuy/compontents/operateHistory.vue +164 -0
  26. package/library/viewModules/viewsEnterpriseBuy/viewsEnterpriseBuy/compontents/send_list.vue +395 -0
  27. package/library/viewModules/viewsEnterpriseBuy/viewsEnterpriseBuy/compontents/storeList.vue +100 -0
  28. package/library/viewModules/viewsEnterpriseBuy/viewsEnterpriseBuy/compontents/workHistory.vue +163 -0
  29. package/library/viewModules/viewsEnterpriseBuy/viewsEnterpriseBuy/detail.vue +503 -0
  30. package/library/viewModules/viewsEnterpriseBuy/viewsEnterpriseBuy/list.vue +635 -0
  31. package/library/viewModules/viewsEnterpriseBuy/viewsEnterpriseBuy/order_detail.vue +860 -0
  32. package/library/viewModules/viewsEnterpriseBuy/viewsEnterpriseBuy/set_create.vue +219 -0
  33. package/library/viewModules/viewsEnterpriseBuy/viewsEnterpriseBuy/set_list.vue +237 -0
  34. package/library/viewModules/viewsEnterpriseBuy/viewsEnterpriseBuy/table-card.vue +180 -0
  35. package/library/viewModules/viewsFinance/router/balance.js +75 -0
  36. package/library/viewModules/viewsFinance/router/finance.js +30 -0
  37. package/library/viewModules/viewsFinance/schemas/trade.record.js +153 -0
  38. package/library/viewModules/viewsFinance/schemas/wallet.js +116 -0
  39. package/library/viewModules/viewsFinance/viewsFinance/balance/components/listChannel.vue +220 -0
  40. package/library/viewModules/viewsFinance/viewsFinance/balance/components/listOpenapi.vue +260 -0
  41. package/library/viewModules/viewsFinance/viewsFinance/balance/components/listPartner.vue +217 -0
  42. package/library/viewModules/viewsFinance/viewsFinance/balance/components/listSupplier.vue +229 -0
  43. package/library/viewModules/viewsFinance/viewsFinance/balance/detail_channel.vue +401 -0
  44. package/library/viewModules/viewsFinance/viewsFinance/balance/detail_openapi.vue +364 -0
  45. package/library/viewModules/viewsFinance/viewsFinance/balance/detail_partner.vue +633 -0
  46. package/library/viewModules/viewsFinance/viewsFinance/balance/detail_supplier.vue +417 -0
  47. package/library/viewModules/viewsFinance/viewsFinance/balance/list.vue +75 -0
  48. package/library/viewModules/viewsFinance/viewsFinance/index.vue +191 -0
  49. package/library/viewModules/viewsLimit/router/buyLimit/buyLimit.js +31 -0
  50. package/library/viewModules/viewsLimit/schemas/buyLimit.js +22 -0
  51. package/library/viewModules/viewsLimit/viewsLimit/index.vue +211 -0
  52. package/package.json +114 -0
@@ -0,0 +1,91 @@
1
+ import Layout from '@/layout'
2
+ import roles from '@/constant/permissions' //引用权限值
3
+ const enterprise_buy = roles.enterprise_buy
4
+ const enterpriseBuyRouter = {
5
+ path: '/enterprise_buy',
6
+ component: Layout,
7
+ sort: 80,
8
+ name: '集采单管理',
9
+ alwaysShow: true,
10
+ redirect: '/enterprise_buy/list',
11
+ meta: {
12
+ title: '集采单管理',
13
+ icon: 'el-icon-collection',
14
+ iconSize: 20,
15
+ roles: [enterprise_buy.purchaseMainOrder]
16
+ },
17
+ children: [
18
+ {
19
+ path: 'list',
20
+ name: 'enterprise_buy_list',
21
+ component: () => import('@/viewsEnterpriseBuy/list'),
22
+ meta: {
23
+ title: '集采单列表',
24
+ icon: 'el-icon-document',
25
+ roles: [enterprise_buy.purchaseMainOrder]
26
+ }
27
+ },
28
+ {
29
+ path: 'detail/:id',
30
+ name: 'enterprise_buy_detail',
31
+ component: () => import('@/viewsEnterpriseBuy/detail'),
32
+ hidden: true,
33
+ meta: {
34
+ title: '集采单详情',
35
+ icon: 'el-icon-s-platform',
36
+ roles: [enterprise_buy.purchaseMainOrderInfo],
37
+ activeMenu: "/enterprise_buy/list"
38
+ }
39
+ },
40
+ {
41
+ path: 'order_detail/:id',
42
+ name: 'enterprise_buy_order_detail',
43
+ component: () => import('@/viewsEnterpriseBuy/order_detail'),
44
+ hidden: true,
45
+ meta: {
46
+ title: '订单详情',
47
+ icon: 'el-icon-s-platform',
48
+ roles: [enterprise_buy.mainOrderDetail],
49
+ activeMenu: "/enterprise_buy/list"
50
+ }
51
+ },
52
+ // #ifdef admin
53
+ {
54
+ path: 'set_list',
55
+ name: 'set_list',
56
+ component: () => import('@/viewsEnterpriseBuy/set_list'),
57
+ meta: {
58
+ title: '集采配置',
59
+ icon: 'el-icon-setting',
60
+ roles: [enterprise_buy.taxRatioConfigList],
61
+ }
62
+ },
63
+ {
64
+ path: 'set_create',
65
+ name: 'set_create',
66
+ component: () => import('@/viewsEnterpriseBuy/set_create'),
67
+ hidden: true,
68
+ meta: {
69
+ title: '新增集采配置',
70
+ icon: 'el-icon-s-platform',
71
+ roles: [enterprise_buy.taxRatioConfigSet],
72
+ activeMenu: "/enterprise_buy/set_list"
73
+ }
74
+ },
75
+ {
76
+ path: 'set_update/:id',
77
+ name: 'set_update',
78
+ component: () => import('@/viewsEnterpriseBuy/set_create'),
79
+ hidden: true,
80
+ meta: {
81
+ title: '编辑集采配置',
82
+ icon: 'el-icon-s-platform',
83
+ roles: [enterprise_buy.taxRatioConfigGet,enterprise_buy.taxRatioConfigSet],
84
+ activeMenu: "/enterprise_buy/set_list"
85
+ }
86
+ },
87
+ // #endif
88
+ ]
89
+ }
90
+
91
+ export default enterpriseBuyRouter
@@ -0,0 +1,420 @@
1
+ 'use strict'
2
+
3
+ module.exports = {
4
+ name: 'enterprise_buy',
5
+ title: '集采单管理',
6
+ vuex: true,
7
+ model: [
8
+ {
9
+ title: '集采单管理 - 列表',
10
+ mapFn: "purchaseMainOrder",
11
+ isPublic: true,
12
+ // #ifdef admin
13
+ path: '/wholesale-admin/v1/purchase-main-order',
14
+ // #endif
15
+ // #ifdef partner-wholesale
16
+ path: '/wholesale-partner/v1/purchase-main-order',
17
+ // #endif
18
+ // #ifdef oa-finance
19
+ path: '/wholesale-partner/v1/finance/purchase-main-order',
20
+ // #endif
21
+ isRule: false,
22
+ data: {
23
+ filter: ['filter', 'Object', '非必填'],
24
+ page_size: ['每页', 'String', '必填'],
25
+ page_token: ['页数', 'String', '必填'],
26
+ },
27
+ resultKey: "data",
28
+ disabled: true,
29
+ role: '@@@.@@@.PURCHASE_MAIN_ORDER',
30
+ },
31
+ {
32
+ title: '集采主单详情',
33
+ mapFn: "purchaseMainOrderInfo",
34
+ isPublic: true,
35
+ // #ifdef admin
36
+ path: '/wholesale-admin/v1/purchase-main-order/:purchase_main_order_id',
37
+ // #endif
38
+ // #ifdef partner-wholesale
39
+ path: '/wholesale-partner/v1/purchase-main-order/:purchase_main_order_id',
40
+ // #endif
41
+ // #ifdef oa-finance
42
+ path: '/wholesale-partner/v1/finance/purchase-main-order/:purchase_main_order_id',
43
+ // #endif
44
+ isRule: false,
45
+ params: {
46
+ purchase_main_order_id: ['purchase_main_order_id', 'String', '非必填'],
47
+ },
48
+ resultKey: "data",
49
+ disabled: true,
50
+ role: '@@@.@@@.PURCHASE_MAIN_ORDER_GET',
51
+ },
52
+ {
53
+ title: '订单主单详情',
54
+ mapFn: "mainOrderDetail",
55
+ isPublic: true,
56
+ // #ifdef admin
57
+ path: '/order-admin/v1/customer-service/main-detail',
58
+ // #endif
59
+ // #ifdef oa-finance partner-wholesale
60
+ path: '/wholesale-partner/v1/order/main-order/detail',
61
+ // #endif
62
+ isRule: false,
63
+ params: {
64
+ main_order_id: ['main_order_id', 'String', '必填'],
65
+ },
66
+ resultKey: "data",
67
+ disabled: true,
68
+ role: '@@@.@@@.MAIN_ORDER_DETAIL',
69
+ },
70
+ {
71
+ title: '切换标签',
72
+ mapFn: "tabItems",
73
+ isPublic: true,
74
+ // #ifdef admin partner-wholesale
75
+ path: '/wholesale-public/v1/tab/items',
76
+ // #endif
77
+ // #ifdef oa-finance
78
+ path: '/wholesale-public/v1/finance-tab/items',
79
+ // #endif
80
+ isRule: false,
81
+ params: {},
82
+ resultKey: "data",
83
+ disabled: true,
84
+ },
85
+ {
86
+ title: '集采单接单',
87
+ mapFn: "purchaseMainOrderReceive",
88
+ path: '/wholesale-partner/v1/purchase-main-order/:purchase_main_order_id/receive',
89
+ isRule: false,
90
+ params: {
91
+ purchase_main_order_id: ['purchase_main_order_id', 'String', '必填'],
92
+ },
93
+ resultKey: "data",
94
+ disabled: true,
95
+ method:'put',
96
+ role: '@@@.@@@.PURCHASE_MAIN_ORDER_RECEIVE',
97
+ },
98
+ {
99
+ title: '集采单取消',
100
+ mapFn: "purchaseMainOrderCancel",
101
+ isPublic: true,
102
+ // #ifdef admin
103
+ path: '/wholesale-admin/v1/purchase-main-order/:purchase_main_order_id/order-status',
104
+ // #endif
105
+ // #ifdef oa-finance partner-wholesale
106
+ path: '/wholesale-partner/v1/purchase-main-order/:purchase_main_order_id/cancel',
107
+ // #endif
108
+ isRule: false,
109
+ params: {
110
+ purchase_main_order_id: ['purchase_main_order_id', 'String', '必填'],
111
+ },
112
+ resultKey: "data",
113
+ disabled: true,
114
+ method: 'put',
115
+ role: '@@@.@@@.PURCHASE_MAIN_ORDER_CANCEL',
116
+ },
117
+ {
118
+ title: '超管-集采单确认价格',
119
+ mapFn: "supplierSettlementAmountBatch",
120
+ path: '/wholesale-admin/v1/purchase-sub-order/supplier-settlement-amount/batch',
121
+ isRule: false,
122
+ data: {
123
+ purchase_main_order_id: ['purchase_main_order_id', 'String', '必填'],
124
+ items: ['items', 'Array', '必填'],
125
+ },
126
+ resultKey: "data",
127
+ disabled: true,
128
+ method: 'put',
129
+ role: '@@@.@@@.SUPPLIER_SETTLEMENT_AMOUNT_BATCH',
130
+ },
131
+ {
132
+ title: '集采单确认主单价格',
133
+ mapFn: "purchaseMainOrderConfirmAmount",
134
+ path: '/wholesale-partner/v1/purchase-main-order/:purchase_main_order_id/confirm-amount',
135
+ isRule: false,
136
+ params: {
137
+ purchase_main_order_id: ['purchase_main_order_id', 'String', '必填'],
138
+ },
139
+ resultKey: "data",
140
+ disabled: true,
141
+ method: 'put',
142
+ role: '@@@.@@@.PURCHASE_MAIN_ORDER_CONFIRM_AMOUNT',
143
+ },
144
+ {
145
+ title: '集采单确定买家支付',
146
+ mapFn: "purchaseMainOrderConfirmPaid",
147
+ path: '/wholesale-partner/v1/purchase-main-order/:purchase_main_order_id/confirm-consumer-paid',
148
+ isRule: false,
149
+ params: {
150
+ purchase_main_order_id: ['purchase_main_order_id', 'String', '必填'],
151
+ },
152
+ resultKey: "data",
153
+ disabled: true,
154
+ method: 'put',
155
+ role: '@@@.@@@.PURCHASE_MAIN_ORDER_CONFIRM_CONSUMER_PAID',
156
+ },
157
+ {
158
+ title: '集采单确定加盟商支付',
159
+ mapFn: "purchaseMainOrderConfirmPartnerPaid",
160
+ path: '/wholesale-partner/v1/purchase-main-order/:purchase_main_order_id/confirm-partner-paid',
161
+ isRule: false,
162
+ params: {
163
+ purchase_main_order_id: ['purchase_main_order_id', 'String', '必填'],
164
+ },
165
+ resultKey: "data",
166
+ disabled: true,
167
+ method: 'put',
168
+ role: '@@@.@@@.PURCHASE_MAIN_ORDER_CONFIRM_PARTNER_PAID',
169
+ },
170
+ {
171
+ title: '订单供货商列表',
172
+ mapFn: "purchaseMainOrderSuppliers",
173
+ path: '/wholesale-partner/v1/purchase-main-order/:purchase_main_order_id/suppliers',
174
+ isRule: false,
175
+ params: {
176
+ purchase_main_order_id: ['purchase_main_order_id', 'String', '必填'],
177
+ },
178
+ resultKey: "data",
179
+ disabled: true,
180
+ role: '@@@.@@@.PURCHASE_MAIN_ORDER_SUPPLIERS',
181
+ },
182
+ {
183
+ title: '上传加盟商发票',
184
+ mapFn: "purchaseMainOrderPartnerUpload",
185
+ path: '/wholesale-partner/v1/purchase-main-order/:purchase_main_order_id/upload-partner-invoice',
186
+ isRule: false,
187
+ params: {
188
+ purchase_main_order_id: ['purchase_main_order_id', 'String', '必填'],
189
+ invoice_url: ['invoice_url', 'String', '必填'],
190
+ },
191
+ resultKey: "data",
192
+ disabled: true,
193
+ method: 'put',
194
+ role: '@@@.@@@.UPLOAD_PARTNER_INVOICE',
195
+ },
196
+ {
197
+ title: '上传供应商发票',
198
+ mapFn: "purchaseMainOrderSupplierUpload",
199
+ path: '/wholesale-partner/v1/purchase-main-order/:purchase_main_order_id/upload-supplier-invoice',
200
+ isRule: false,
201
+ params: {
202
+ purchase_main_order_id: ['purchase_main_order_id', 'String', '必填'],
203
+ items: ['items', 'Array', '必填'],
204
+ },
205
+ resultKey: "data",
206
+ disabled: true,
207
+ method: 'put',
208
+ role: '@@@.@@@.UPLOAD_SUPPLIER_INVOICE',
209
+ },
210
+ {
211
+ title: '更新主单价格-用户结算价格',
212
+ mapFn: "userSettlementAmount",
213
+ path: '/wholesale-partner/v1/purchase-main-order/:purchase_main_order_id/user-settlement-amount',
214
+ isRule: false,
215
+ params: {
216
+ purchase_main_order_id: ['purchase_main_order_id', 'String', '必填'],
217
+ amount: ['amount', 'String', '必填'],
218
+ },
219
+ resultKey: "data",
220
+ disabled: true,
221
+ method: 'put',
222
+ role: '@@@.@@@.USER_SETTLEMENT_AMOUNT',
223
+ },
224
+ {
225
+ title: '更新商品价格-用户结算价格',
226
+ mapFn: "userSettlementPrice",
227
+ path: '/wholesale-partner/v1/purchase-main-order/:purchase_main_order_id/user-settlement-price',
228
+ isRule: false,
229
+ params: {
230
+ purchase_main_order_id: ['purchase_main_order_id', 'String', '必填'],
231
+ items: ['items', 'Array', '必填'],
232
+ },
233
+ resultKey: "data",
234
+ disabled: true,
235
+ method: 'put',
236
+ role: '@@@.@@@.USER_SETTLEMENT_PRICE',
237
+ },
238
+ {
239
+ title: '查看主单真实联系信息',
240
+ mapFn: "mainOrderContactWh",
241
+ isPublic: true,
242
+ // #ifdef admin
243
+ path: '/order-admin/v1/customer-service/contact',
244
+ // #endif
245
+ // #ifdef oa-finance partner-wholesale
246
+ path: '/wholesale-partner/v1/order/main-order/contact',
247
+ // #endif
248
+ isRule: false,
249
+ params: {
250
+ main_order_id: ['main_order_id', 'String', '必填'],
251
+ },
252
+ resultKey: "data",
253
+ disabled: true,
254
+ role: '@@@.@@@.MAIN_ORDER_CONTACT',
255
+ },
256
+ {
257
+ title: '查看主单包裹轨迹',
258
+ mapFn: "logisticsMainOrderPackageTrackWh",
259
+ isPublic: true,
260
+ // #ifdef admin
261
+ path: '/order-admin/v1/customer-service/package-track',
262
+ // #endif
263
+ // #ifdef oa-finance partner-wholesale
264
+ path: '/wholesale-partner/v1/logistics-main-order/package-track',
265
+ // #endif
266
+ isRule: false,
267
+ params: {
268
+ main_order_id: ['main_order_id', 'String', '必填'],
269
+ package_id: ['package_id', 'String', '必填'],
270
+ },
271
+ resultKey: "data",
272
+ disabled: true,
273
+ role: '@@@.@@@.LOGISTICS_MAIN_ORDER_PACKAGE_TRACK',
274
+ },
275
+ {
276
+ title: '操作记录主单',
277
+ mapFn: "mainOrderChangeLogsWh",
278
+ isPublic: true,
279
+ // #ifdef admin
280
+ path: '/order-admin/v1/order/change-logs',
281
+ // #endif
282
+ // #ifdef oa-finance partner-wholesale
283
+ path: '/wholesale-partner/v1/main-order/change-logs',
284
+ // #endif
285
+ isRule: false,
286
+ params: {
287
+ main_order_id: ['main_order_id', 'String', '必填'],
288
+ page_size: ['page_size', 'Number', '必填'],
289
+ page_token: ['page_token', 'String', '必填'],
290
+ },
291
+ resultKey: "data",
292
+ disabled: true,
293
+ role: '@@@.@@@.MAIN_ORDER_CHANGE_LOGS',
294
+ },
295
+ {
296
+ title: '操作记录子单',
297
+ mapFn: "subOrderChangeLogsWh",
298
+ path: '/wholesale-partner/v1/sub-order/change-logs',
299
+ isRule: false,
300
+ params: {
301
+ sub_order_id: ['sub_order_id', 'String', '必填'],
302
+ page_size: ['page_size', 'Number', '必填'],
303
+ page_token: ['page_token', 'String', '必填'],
304
+ },
305
+ resultKey: "data",
306
+ disabled: true,
307
+ role: '@@@.@@@.SUB_ORDER_CHANGE_LOGS',
308
+ },
309
+ {
310
+ mapFn: 'syncPackageTrackWh',
311
+ isRule: false,
312
+ title: '同步物流信息',
313
+ isPublic: true,
314
+ // #ifdef admin
315
+ path: '/order-admin/v1/logistics-sub-order/sync-package-track',
316
+ // #endif
317
+ // #ifdef oa-finance partner-wholesale
318
+ path: '/order-partner/v1/logistics-sub-order/sync-package-track',
319
+ // #endif
320
+ data: {
321
+ order_package_id: ['order_package_id', 'String', '必选'],
322
+ express_number: ['express_number', 'String', '必选'],
323
+ express_code: ['express_code', 'String', '必选'],
324
+ },
325
+ disabled: true,
326
+ role: '@@@.@@@.LOGISTTICS_SUB_ORDER_SYNC_PACKAGE_TRACK',
327
+ },
328
+ {
329
+ mapFn: 'recordPackageTrackWh',
330
+ isRule: false,
331
+ title: '自定义录入物流信息',
332
+ isPublic: true,
333
+ // #ifdef admin
334
+ path: '/order-admin/v1/logistics-sub-order/record-package-track',
335
+ // #endif
336
+ // #ifdef oa-finance partner-wholesale
337
+ path: '/order-partner/v1/logistics-sub-order/record-package-track',
338
+ // #endif
339
+ data: {
340
+ package_id: ['package_id', 'String', '必选'],
341
+ time: ['time', 'Number', '必选'],
342
+ content: ['content', 'String', '必填'],
343
+ },
344
+ disabled: true,
345
+ role: '@@@.@@@.LOGISTTICS_SUB_ORDER_RECORD_PACKAGE_TRACK',
346
+ },
347
+ {
348
+ title: '集采-配置-获取加盟商税点',
349
+ mapFn: "taxRatioConfigGet",
350
+ path: '/wholesale-admin/v1/tax-ratio-config/get',
351
+ isRule: false,
352
+ params: {
353
+ partner_id: ['partner_id', 'String', '必填'],
354
+ },
355
+ resultKey: "data",
356
+ disabled: true,
357
+ role: '@@@.@@@.TAX_RATIO_CONFIG_GET',
358
+ },
359
+ {
360
+ title: '集采-配置-获取加盟商列表',
361
+ mapFn: "taxRatioConfigList",
362
+ path: '/wholesale-admin/v1/tax-ratio-config/list',
363
+ isRule: false,
364
+ params: {
365
+ page_token: ['page_token', 'String', '必填'],
366
+ page_size: ['page_size', 'String', '必填'],
367
+ },
368
+ resultKey: "data",
369
+ disabled: true,
370
+ role: '@@@.@@@.TAX_RATIO_CONFIG_LIST',
371
+ },
372
+ {
373
+ title: '集采-配置-保存加盟商税点',
374
+ mapFn: "taxRatioConfigSet",
375
+ path: '/wholesale-admin/v1/tax-ratio-config/set',
376
+ isRule: false,
377
+ data: {
378
+ partner_id: ['partner_id', 'Number', '必填'],
379
+ tax_ratio: ['tax_ratio', 'Number', '必填'],
380
+ status: ['status', 'String', '必填'],
381
+ },
382
+ resultKey: "data",
383
+ disabled: true,
384
+ role: '@@@.@@@.TAX_RATIO_CONFIG_SET',
385
+ },
386
+ {
387
+ title: '生成订单',
388
+ mapFn: "purchaseMainOrderCreateOrder",
389
+ isPublic:true,
390
+ path: '/wholesale-partner/v1/purchase-main-order/:purchase_main_order_id/create-order',
391
+ isRule: false,
392
+ data: {
393
+ purchase_main_order_id: ['purchase_main_order_id', 'String', '必填'],
394
+ },
395
+ resultKey: "data",
396
+ disabled: true,
397
+ role: '@@@.@@@.PURCHASE_MAIN_ORDER_CREATE_ORDER',
398
+ },
399
+ {
400
+ title: '集采-列表-操作按钮',
401
+ mapFn: "purchaseListOperate",
402
+ path: '',
403
+ isRule: false,
404
+ data: {},
405
+ resultKey: "data",
406
+ disabled: true,
407
+ role: '@@@.@@@.PURCHASE_LIST_OPRERATE',
408
+ },
409
+ {
410
+ title: '集采-详情-操作按钮',
411
+ mapFn: "purchaseDetailOperate",
412
+ path: '',
413
+ isRule: false,
414
+ data: {},
415
+ resultKey: "data",
416
+ disabled: true,
417
+ role: '@@@.@@@.PURCHASE_DETAIL_OPRERATE',
418
+ },
419
+ ],
420
+ }