[TOC=2]
## 获取门店
~~~[api]
get:/common/getStore
<<<
success
{
"code": 0,
"data": {
"list": [
{
"id": 3,
"title": "重算"
},
{
"id": 2,
"title": "激动死阿基"
}
]
}
}
<<<
error
~~~
## 获取小区
~~~[api]
get:/common/getCommunity
<<<
success
{
"code": 0,
"data": {
"list": [
{
"id": 2,
"title": "光华中心2"
},
{
"id": 1,
"title": "光华中心"
}
]
}
}
<<<
error
~~~
## 获取服务
~~~[api]
get:/common/getServiceItem
<<<
success
{
"code": 0,
"data": {
"list": [
{
"id": 2,
"name": "生活服务",
"icon": "",
"img": "",
"parent_id": null,
"children": [
{
"id": 4,
"name": "搬家",
"icon": "",
"img": "https://chaoshensu-test.oss-cn-hangzhou.aliyuncs.com//genius/admin/service_item/banjia",
"parent_id": 2,
"children": []
},
{
"id": 3,
"name": "疏通",
"icon": "",
"img": "https://chaoshensu-test.oss-cn-hangzhou.aliyuncs.com//genius/admin/service_item/shutong",
"parent_id": 2,
"children": []
}
]
},
{
"id": 1,
"name": "公共服务",
"icon": "",
"img": "",
"parent_id": null,
"children": [
{
"id": 5,
"name": "银行",
"icon": "",
"img": "https://chaoshensu-test.oss-cn-hangzhou.aliyuncs.com//genius/admin/service_item/bank",
"parent_id": 1,
"children": []
}
]
}
]
}
}
<<<
error
~~~