[TOC]
## 获取区域列表
~~~[api]
post:/merchant/regionlist
string:key#排序字段名 如 id, name
string:order#排序规则
*int:page#页码
*int:limit#每页数量
string:title#名字筛选
int:state#状态筛选
<<<
返回结果
{
"code": 0,
"info": "success",
"data": [
{
"id": 1000,
"title": "陕西",
"state": 0-停用 1-启用
}
]
}
~~~
## 创建区域
~~~[api]
post:/merchant/addregion
<<<
请求内容
{
"title": "A3"
}
<<<
返回结果
{
"code": 0,
"info": "success",
"data":
{
"id": 1000,
"title": "陕西",
"state": 0-停用 1-启用
}
}
~~~
## 编辑区域
~~~[api]
post:/merchant/editregion
<<<
请求内容
{
"id": 1000,
"title": "北京",
"state": 0
}
<<<
返回结果
{
"code": 0,
"info": "success",
"data":
{
}
}
~~~