2 changed files with 206 additions and 27 deletions
@ -0,0 +1,166 @@ |
|||
@localhost = http://127.0.0.1:8010/ |
|||
@test = http://127.0.0.1:8010/ |
|||
@type = content-type: application/json;charset=utf-8 |
|||
|
|||
### 列表 |
|||
POST {{test}}/page/list |
|||
{{type}} |
|||
|
|||
{ |
|||
"param":{ |
|||
"pageNum":1, |
|||
"pageSize":10 |
|||
|
|||
} |
|||
} |
|||
### 添加 |
|||
POST {{localhost}}/page/add |
|||
{{type}} |
|||
|
|||
{ |
|||
"param":{ |
|||
"logo":"logo", |
|||
"name":"项目1", |
|||
"db":null, |
|||
"pages": [ |
|||
{ |
|||
"title":"title1", |
|||
"style":0, |
|||
"searches":[ |
|||
{ |
|||
"type":0, |
|||
"show":"姓名", |
|||
"name":"name" |
|||
}, |
|||
{ |
|||
"type":3, |
|||
"show":"性别", |
|||
"name":"sex", |
|||
"options": { |
|||
"dataFetchType": 0, |
|||
"data":[ |
|||
{"key":0, "value":"男"}, |
|||
{"key":1, "value":"女"} |
|||
] |
|||
} |
|||
} |
|||
], |
|||
"fields":[ |
|||
{ |
|||
"show":"序号", |
|||
"type":"2" |
|||
}, |
|||
{ |
|||
"show":"姓名", |
|||
"type":"0", |
|||
"field":"name" |
|||
}, |
|||
{ |
|||
"show":"年龄", |
|||
"type":"0", |
|||
"field":"age" |
|||
}, |
|||
{ |
|||
"show":"性别", |
|||
"type":"0", |
|||
"field":"sex" |
|||
}, |
|||
{ |
|||
"show":"操作", |
|||
"type":"1", |
|||
"operates": [ |
|||
{"icon":"edit", "show":"编辑","type":"0","url":"http://www.baidu.com"}, |
|||
{ |
|||
"icon":"delete", |
|||
"show":"删除", |
|||
"type":"1", |
|||
"dialogs":{ |
|||
"show":"是否确认执行删除操作", |
|||
"button": [ |
|||
{"show": "取消", "responseType":0}, |
|||
{"show": "确认", "responseType":1, "url":"http://www.baidu.com/delete"} |
|||
] |
|||
} |
|||
} |
|||
] |
|||
} |
|||
], |
|||
"sql" : "select id, name, age from t_user", |
|||
"operates":[ |
|||
{"icon":"add", "show":"添加","type":"0","url":"http://www.baidu.com"}, |
|||
{"icon":"download","show":"下载","type":"2","url":"http://www.baidu.com"}, |
|||
{"icon":"import","show":"上传","type":"3","url":"http://www.baidu.com"} |
|||
] |
|||
}, |
|||
{ |
|||
"title":"title1", |
|||
"style":0, |
|||
"searches":[ |
|||
{ |
|||
"type":0, |
|||
"show":"姓名", |
|||
"name":"name" |
|||
}, |
|||
{ |
|||
"type":3, |
|||
"show":"性别", |
|||
"name":"sex", |
|||
"options": { |
|||
"dataFetchType": 0, |
|||
"data":[ |
|||
{"key":0, "value":"男"}, |
|||
{"key":1, "value":"女"} |
|||
] |
|||
} |
|||
} |
|||
], |
|||
"fields":[ |
|||
{ |
|||
"show":"序号", |
|||
"type":"2" |
|||
}, |
|||
{ |
|||
"show":"姓名", |
|||
"type":"0", |
|||
"field":"name" |
|||
}, |
|||
{ |
|||
"show":"年龄", |
|||
"type":"0", |
|||
"field":"age" |
|||
}, |
|||
{ |
|||
"show":"性别", |
|||
"type":"0", |
|||
"field":"sex" |
|||
}, |
|||
{ |
|||
"show":"操作", |
|||
"type":"1", |
|||
"operates": [ |
|||
{"icon":"edit", "show":"编辑","type":"0","url":"http://www.baidu.com"}, |
|||
{ |
|||
"icon":"delete", |
|||
"show":"删除", |
|||
"type":"1", |
|||
"dialogs":{ |
|||
"show":"是否确认执行删除操作", |
|||
"button": [ |
|||
{"show": "取消", "responseType":0}, |
|||
{"show": "确认", "responseType":1, "url":"http://www.baidu.com/delete"} |
|||
] |
|||
} |
|||
} |
|||
] |
|||
} |
|||
], |
|||
"sql" : "select id, name, age from t_user", |
|||
"operates":[ |
|||
{"icon":"add", "show":"添加","type":"0","url":"http://www.baidu.com"}, |
|||
{"icon":"download","show":"下载","type":"2","url":"http://www.baidu.com"}, |
|||
{"icon":"import","show":"上传","type":"3","url":"http://www.baidu.com"} |
|||
] |
|||
} |
|||
] |
|||
} |
|||
} |
Loading…
Reference in new issue