shotRequire.js
1.43 KB
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
49
50
/**
* Created by JiangMin on 2016/3/17.
* 拍摄要求管理
*/
exports.domain = require('../config/common.js').domain;
exports.res = [
//主界面
{
route: '/shotManage/shotRequire/index',//访问路由
method: 'GET',//方法
view: 'pages/shotManage/shotRequire',//视图
src: '/shotManage/shotRequire'//控制层
},
//api请求数据列表
{
route: '/shotManage/shotRequire/index1',
method: 'POST',
url: '/shootRequire/queryShootRequireList',
params: [
{name: 'type', type: 'Number'},//类别
{name: 'status', type: 'Number'},//状态
{name: 'page', type: 'Number'},
{name: 'size', type: 'Number'}
]
},
//新增
{
route: '/shotManage/shotRequire/add',
method: 'POST',
url: '/shootRequire/saveShootRequire',
params: [
{name: 'type', type: 'Number'},//类别
{name: 'status', type: 'Number'},//状态
{name: 'name', type: 'string'}//名称
]
},
//删除
{
route: '/shotManage/shotRequire/update',
method: 'POST',
url: '/shootRequire/saveShootRequire',
params: [
{name: 'id', type: 'Number'},//主键
{name: 'type', type: 'Number'},//类别
{name: 'status', type: 'Number'},//状态
{name: 'name', type: 'string'}//名称
]
}
];