mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-11-30 22:20:45 +00:00
25 lines
410 B
JavaScript
25 lines
410 B
JavaScript
|
|
import http from '@/util/http.js'
|
||
|
|
// 店铺平台列表
|
||
|
|
export function shopListId () {
|
||
|
|
return http({
|
||
|
|
url: '/api/shop_platforms',
|
||
|
|
method: 'get'
|
||
|
|
})
|
||
|
|
}
|
||
|
|
// 店铺新增
|
||
|
|
export function shopAdd (data) {
|
||
|
|
return http({
|
||
|
|
url: '/api/shops',
|
||
|
|
method: 'post',
|
||
|
|
data
|
||
|
|
})
|
||
|
|
}
|
||
|
|
// 店铺列表
|
||
|
|
export function storeList (data) {
|
||
|
|
return http({
|
||
|
|
url: '/api/shops',
|
||
|
|
method: 'get',
|
||
|
|
data
|
||
|
|
})
|
||
|
|
}
|