proPhoto.js 645 Bytes
/**
 * Created by JiangMin on 2016/3/22.
 * 产品图片管理
 */
exports.domain = require('../config/common.js').domain;

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