appEntranceIncon.js
1.78 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
/**
* Created by yoho on 2016/6/21.
*/
module.exports = {
namespace: "appEntranceIcon",
apis: {
/************************************app入口及图标管理*************************************/
queryList: {
title: "列表数据",
url: '/appEntranceIcon/queryList',
params: {
displayName: {type: String},
status: {type: Number},
categoryId: {type: Number},
page: {type: Number},
size: {type: Number}
}
},
selectAppEntranceCategory:{
title:'查询app入口图标分类',
url: '/appEntranceIcon/selectAllCategory',
params: [
{name: 'categoryName', type: 'String'}
]
},
queryById: {
title: "单条数据",
url: '/appEntranceIcon/queryById',
params: {
id: {type: Number}
}
},
update: {
title: "编辑店铺优惠券",
url: '/appEntranceIcon/updateById',
params: {
id: {type: Number},
displayName: {type: String},
status: {type: Number},
iosSmallImage: {type: String},
iosBigImage: {type: String},
androidImage: {type: String},
iosSmallImageN: {type: String},
iosBigImageN: {type: String},
androidImageN: {type: String},
iosSmallImageFirst: {type: String},
iosBigImageFirst: {type: String},
androidImageFirst: {type: String},
}
},
uploadZip:{
title:"上传zip",
url:"/appEntranceIcon/uploadIconZip"
}
}
};