shop.shopAudit.js
1.45 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
module.exports={
namespace:"shopAudit",
apis:{
/****************店铺审核**********************/
getLastCheckShopInfoById:{
title:"审核店铺详情",
url:"/ShopsCheckRest/getLastCheckShopInfoById",
params:[
{name:"shopsId",type:"String"}
]
},
checkShopPass:{
title:"审核通过",
url:"/ShopsRest/checkShopPass",
params: [
{name:"shopsId",type:"Number"}
]
},
checkReject:{
title:"驳回",
url:"/ShopsRest/checkReject",
params: [
{name:"shopsId",type:"Number"}
]
},
/****************店铺装修审核**********************/
findAuditShopsDecorator:{
title:"店铺装修审核列表",
url:"/ShopsDecoratorRest/findAuditShopsDecorator",
params:[
{name: 'supplierId', type: 'Number'},
{name: 'brandId', type: 'Number'},
{name: 'checkStatus', type: 'Number'}
]
},
auditShopsDecorator:{
title:"店铺装修审核",
url:"/ShopsDecoratorRest/auditShopsDecorator",
params:[
{name: 'id', type: 'Number'},
{name: 'checkStatus', type: 'Number'},
{name: 'comment', type: 'String'}
]
}
}
}