🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## 列表+children ~~~[api] post:/agentregion/list <<< success { "code": 0, "info": "成功", "data": { "list": [{ "id": 110100, "area": "市辖区", "pid": 110000, "children": [{ "id": 110101, "area": "东城区", "pid": 110100 }] }, { "id": 110200, "area": "县", "pid": 110000, "children": [{ "id": 110228, "area": "密云县", "pid": 110200 }] }], "count": 0 } } ~~~ ## 列表 ~~~[api] post:/agentregion/plist <<< success { "code": 0, "info": "成功", "data": { "list": [{ "id": 110100, "area": "市辖区", "pid": 110000 }, { "id": 110200, "area": "县", "pid": 110000 }], "count": 0 } } ~~~ ## 一个 ~~~[api] post:/agentregion/info *int:id=110000#省 / 市 /区 ID <<< success ~~~ ## 省份列表 ~~~[api] post:/agentregion/prolist <<< success ~~~