| 123456789101112131415161718192021 |
- import https from '@/plugins/luch-request_0.0.7/request'
- export const bindStore = data => {
- return https.post('/delivery-shop/bind-store', data)
- }
- export const unBindStore = data => {
- return https.post('/delivery-shop/unbind-store', data)
- }
- export const storeList = data => {
- return https.get('/delivery-shop/store-list', data)
- }
- export const storeDetail = data => {
- return https.post('/delivery-shop/store-detail', data)
- }
- export const updateStore = data => {
- return https.post('/delivery-shop/update-store', data)
- }
|