shop.js 1000 Bytes
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'
	}]
}]