diff --git a/src/services/datacenter/DataCenter.js b/src/services/datacenter/DataCenter.js index 29c8904..2da8556 100644 --- a/src/services/datacenter/DataCenter.js +++ b/src/services/datacenter/DataCenter.js @@ -22,7 +22,7 @@ export function downSellerData(params, call) { * 下拉框数据店铺 */ export function downShopData(params, call) { - return http.get('/poi/store/user/shop',params).then(call) + return http.post('/poi/store/user/shop',params).then(call) } /** diff --git a/src/services/generalize/IncreaseData.js b/src/services/generalize/IncreaseData.js index 57f172c..c7a950b 100644 --- a/src/services/generalize/IncreaseData.js +++ b/src/services/generalize/IncreaseData.js @@ -73,7 +73,7 @@ export function generalizeOfSeller(params, call) { * @returns {Promise} */ export function storeInit(params, call) { - return http.get('/poi/store/user/shop', params).then(call) + return http.post('/poi/store/user/shop', params).then(call) } /** * 导购信息 diff --git a/src/services/staff/staff.js b/src/services/staff/staff.js index 593cd2b..c6ad4b9 100644 --- a/src/services/staff/staff.js +++ b/src/services/staff/staff.js @@ -27,7 +27,7 @@ export function downRegionData(params, call) { * 下拉框数据店铺 */ export function downShopData(params, call) { - return http.get('/poi/store/user/shop',params).then(call) + return http.post('/poi/store/user/shop',params).then(call) } /**