size.js 1.47 KB
/**
 * Created by wangqianjun on 16/2/3.
 */

exports.domain = require('../config/common.js').domain;
//路由配置
exports.res = [
{route: '/-p-l-a-t-f-o-r-m/8',method:"GET"}//此模块上线将此删除
    // {
    //     //产品管理【品类列表】页面渲染
    //     route: '/erpproduct/sizeattribute/index',
    //     method: 'GET',
    //     view: 'pages/product/size-property',
    //     src: '/product/size-property',
    //     isJsonRaw:true
    // }, {
    //     route: '/erpproduct/sizeattribute/propertyList',
    //     method: 'POST',
    //     url: '/product/querySizeAttributeList', //接口的url
    //     isJsonRaw:true,
    //     params:[
    //         {name: 'page', type: 'Number', def: '1'}, //页码
    //         {name: 'size', type: 'Number', def : '10'} //每页条数
    //     ]
    // }, {
    //     route: '/erpproduct/sizeattribute/propertyAdd', // 添加尺码属性
    //     method: 'POST',
    //     url: '/product/addSizeAttribute', //接口的url
    //     isJsonRaw:true,
    //     params:[
    //         {name: 'attributeName', type: 'String'} //名称
    //     ]
    // }, {
    //     route: '/erpproduct/sizeattribute/propertyModify', // 修改尺码属性
    //     method: 'POST',
    //     url: '/product/updateSizeAttribute', //接口的url
    //     isJsonRaw:true,
    //     params:[
    //         {name: 'id', type: 'Number'}, //id
    //         {name: 'attributeName', type: 'String'} //名称
    //     ]
    // }
];