# **公共接口說明**
* * * * *
## **接口與接口說明**
1. 發送手機驗證碼。 說明:用于注冊的時候發送驗證碼
2. 獲取目前開發的區域。 說明:用于用戶第一次進入APP的時候選擇當前區域地區,或者卻換當前區域顯示的區域
3. 卻換區域。 說明:用于用戶選擇區域后提交后臺
4. 獲取用戶當前選擇的區域 說明:APP首頁顯示當前用戶選擇的區域
5. 常用單位 說明:常用單位有“價格單位,包含費用,空間配套,地面類型,空間功能,裝修類型,空調類型,特色標簽”
### **發送手機驗證碼**
+++
get:Api/OverallSituation/sentSMS
*phone=手機號 #
<<<
success
{
"data": "",
"info": "發送成功",
"code": 1000,
"state": 1
}
<<<
error
{
"data": "",
"info": "20170117183824,117",
"code": 1003,
"state": 2
}
可能返回的錯誤:
代號 錯誤
1005 輸入手機號有誤
1004 需間隔一分鐘
1003 短信服務商返回的錯誤
+++
## 獲取目前開發的區域 (暫時用不上)
+++
Api/OverallSituation/getCityList
<<<
success
[
{
"id": "1",
"name": "深圳",
"choice": "1",
"open": "1"
},
{
"id": "2",
"name": "廣州",
"choice": "0",
"open": "1"
}
]
+++
## 卻換區域 (暫時用不上)
+++
Api/OverallSituation/updateCity
*city_id=區域ID #
<<<
success
{
"id": "1",
"name": "深圳",
"choice": "1"
}
<<<
error
+++
## 獲取用戶當前選擇的市區 (暫時用不上)
+++
Api/OverallSituation/getCity
<<<
success
{
"id": "1",
"name": "深圳",
"choice": "1"
}
+++
## 獲取用戶當前選擇的市區下的區域(意向區域)
+++
Api/OverallSituation/getCityDistrict
<<<
success
[
{
"id": "1",
"city_id": "1",
"name": "南山區"
},
{
"id": "14",
"city_id": "1",
"name": "韓國區"
}
]
+++
## 常用單位
+++
get:Api/OverallSituation/getCompanyAll
<<<
success
{
"matching": [ //空間配套
{
"_id": {
"$id": "58a3c99ea81e5a8c1f13ee8d"
},
"type": "matching",
"name": "辦公桌"
},
{
"_id": {
"$id": "58a3c9bca81e5aca1e13ee8e"
},
"type": "matching",
"name": "文件柜"
}
],
"price_units": [ //價格單位
{
"_id": {
"$id": "58a3c714a81e5af31b13ee8d"
},
"type": "price_units",
"name": "元/m2/天"
},
{
"_id": {
"$id": "58a3c720a81e5a701b13ee8d"
},
"type": "price_units",
"name": "元/m2/月"
}
],
"conditioner": [ //空調類型
{
"_id": {
"$id": "58a3c925a81e5abb1c13ee8d"
},
"type": "conditioner",
"name": "中央空調"
},
{
"_id": {
"$id": "58a3c92fa81e5a831e13ee8e"
},
"type": "conditioner",
"name": "無空調"
}
],
"ground_type": [ //地面類型
{
"_id": {
"$id": "58a3c941a81e5a823413ee8f"
},
"type": "ground_type",
"name": "地磚"
},
{
"_id": {
"$id": "58a3c967a81e5afe1d13ee8f"
},
"type": "ground_type",
"name": "水泥地"
}
],
"renovation": [ //裝修類型
{
"_id": {
"$id": "58a3c978a81e5a397c13ee8e"
},
"type": "renovation",
"name": "毛坯"
},
{
"_id": {
"$id": "58a3c98fa81e5a511f13ee8d"
},
"type": "renovation",
"name": "豪裝"
}
],
"contain_expenses": [ //包含費用
{
"_id": {
"$id": "58a3c9cda81e5a3e1f13ee8e"
},
"type": "contain_expenses",
"name": "物業費"
},
{
"_id": {
"$id": "58a3c9e0a81e5a8c1f13ee8e"
},
"type": "contain_expenses",
"name": "車位費"
}
],
"characteristic_label": [ //特色標簽
{
"_id": {
"$id": "58a3cc4ea81e5a212013ee8d"
},
"type": "characteristic_label",
"name": "產業特色"
},
{
"_id": {
"$id": "58a3cc5aa81e5ade2013ee8d"
},
"type": "characteristic_label",
"name": "總部大樓"
}
],
"action": [ //空間功能
{
"_id": {
"$id": "58a3ce7da81e5af62213ee8d"
},
"type": "action",
"name": "辦公"
},
{
"_id": {
"$id": "58a3cea4a81e5af62213ee8e"
},
"type": "action",
"name": "生產"
}
]
}
+++