shotGoods.js 761 Bytes
/**
 * Created by JiangMin on 2016/3/22.
 * 拍摄商品列表
 */
//exports.domain = require('../config/common.js').domain;
//exports.domain = 'http://172.16.6.162:8080/platform'; //李建
exports.domain = 'http://192.168.102.216:8180/platform'; //测试环境

exports.res = [
    //主界面
    {
        route: '/shotManage/shotGoods/index',//访问路由
        method: 'GET',//方法
        view: 'pages/shotManage/shotGoods',//视图
        src: '/shotManage/shotGoods'//控制层
    },
    //api请求数据
    {
        route: '/shotManage/shotGoods/index1',
        method: 'POST',
        //url: '/model/queryModelList',
        params: [
            {name: 'page', type: 'Number'},
            {name: 'size', type: 'Number'}
        ]
    }
];