goods.yohoCoin.js
3.1 KB
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
65
66
67
68
69
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
module.exports={
namespace:"yohoCoin",
apis:{
queryPageList:{
title:'yoho币管理列表查询',
url: "/yohoCoin/queryPageList",
params:[
{name: 'productSkn', type: 'Number'},
{name: 'shopId', type: 'Number'},
{name: 'brandId', type: 'Number'},
{name: 'supplierId', type: 'Number'},
{name: 'gender', type: 'String'},
{name: 'auditStatus', type: 'Number'},
{name: 'maxSortId', type: 'Number'},
{name: 'middleSortId', type: 'Number'},
{name: 'smallSortId', type: 'Number'},
{name: 'sortId', type: 'Number'},
{name: 'page', type: 'Number'},
{name: 'size', type: 'Number'},
{name: 'returnCoinMoney', type: 'Number'}
]
},
set:{
title:'编辑保存yoho币',
url: "/yohoCoin/set",
params:[
{name: 'productSkn', type: 'Number'},
{name: 'returnCoinMoney', type: 'Number'},
{name: 'salesPrice', type: 'Number'},
{name: 'auditorId', type: 'Number'}
]
},
queryBatchImportResult:{
title:'批量上传TaskId查询',
url: "/importResult/queryBatchImportResult",
params:[
{name: 'param', type: 'String'},
]
},
insertBatch:{
title:'批量确认提交',
url: "/yohoCoin/insertBatch",
params:[
{name: 'auditorId', type: 'Number'},
{name: 'productPrices', type: 'String'}
]
},
queryPageList4Audit:{
title:'yoho币审核列表查询',
url: "/yohoCoin/queryPageList4Audit ",
params:[
{name: 'auditStatus', type: 'Number'},
{name: 'productSkn', type: 'Number'},
{name: 'shopId', type: 'Number'},
{name: 'brandId', type: 'Number'},
{name: 'supplierId', type: 'Number'},
{name: 'gender', type: 'String'},
{name: 'auditorId', type: 'Number'},
{name: 'maxSortId', type: 'Number'},
{name: 'middleSortId', type: 'Number'},
{name: 'smallSortId', type: 'Number'},
{name: 'sortId', type: 'Number'},
{name: 'page', type: 'Number'}
]
},
pass:{
title:'审核通过',
url: "/yohoCoin/pass",
params:[
{name: 'productSkn', type: 'Number'},
]
},
passBatch:{
title:'批量审核通过',
url: "/yohoCoin/passBatch",
params:[
{name: 'productSkns', type: 'String'},
]
},
reject:{
title:'驳回',
url: "/yohoCoin/reject",
params:[
{name: 'productSkn', type: 'Number'},
{name: 'comment', type: 'String'},
]
},
rejectBatch:{
title:'批量驳回',
url: "/yohoCoin/rejectBatch",
params:[
{name: 'productSkns', type: 'String'},
{name: 'comment', type: 'String'},
]
}
}
}