apifm-webapi 3.48.0 → 3.49.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +9 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -767,6 +767,15 @@ module.exports = {
|
|
|
767
767
|
depositBackApply: (token, id) => {
|
|
768
768
|
return request('/deposit/back/apply', true, 'post', { token, id })
|
|
769
769
|
},
|
|
770
|
+
shopAreaCities: () => {
|
|
771
|
+
return request('/shopArea/cities', true, 'get')
|
|
772
|
+
},
|
|
773
|
+
shopAreaList: (data) => {
|
|
774
|
+
return request('/shopArea/list', true, 'post', data)
|
|
775
|
+
},
|
|
776
|
+
shopAreaDetail: (id) => {
|
|
777
|
+
return request('/shopArea/detail', true, 'get', { id })
|
|
778
|
+
},
|
|
770
779
|
fetchShopsCities: () => {
|
|
771
780
|
return request('/shop/subshop/cities', true, 'get')
|
|
772
781
|
},
|