shop.js
1000 Bytes
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
exports.domain = require('../config/common.js').domain;
exports.res = [{
route: '/supplier/shop/decoration',
method: 'GET',
src: '/store/shop',
view: 'pages/store/shop2'
}, {
//店铺装修管理 -> 页面渲染
route: '/shop/decoration/index',
method: 'GET',
src: '/store/decoration-index',
view: 'pages/store/index',
data: {
pagetitle: {
level1title: '店铺装修管理',
level2title: '店铺装修管理',
level3title: '店铺装修管理'
},
checkStatus: true,
selectShop: true,
gridurl: '/shop/ShopsDecoratorRest/findShopsDecorator'
}
}, {
//店铺装修管理 -> 列表数据
route: '/shop/ShopsDecoratorRest/findShopsDecorator',
method: 'POST',
url: '/ShopsDecoratorRest/findShopsDecorator',
params: [{
name: 'page',
type: 'number'
}, {
name: 'size',
type: 'number'
}, {
name: 'shopsId',
type: 'number'
}, {
name: 'checkStatus',
type: 'number'
}, {
name: 'supplierId',
type: 'number'
}, {
name: 'brandId',
type: 'number'
}]
}]