26 lines
793 B
TypeScript
26 lines
793 B
TypeScript
![]() |
import request from '@/utils/request'
|
||
|
|
||
|
// 门店列表列表
|
||
|
export function apiSystemStoreLists(params: any) {
|
||
|
return request.get({ url: '/system_store/systemstore/lists', params })
|
||
|
}
|
||
|
|
||
|
// 添加门店列表
|
||
|
export function apiSystemStoreAdd(params: any) {
|
||
|
return request.post({ url: '/system_store/systemstore/add', params })
|
||
|
}
|
||
|
|
||
|
// 编辑门店列表
|
||
|
export function apiSystemStoreEdit(params: any) {
|
||
|
return request.post({ url: '/system_store/systemstore/edit', params })
|
||
|
}
|
||
|
|
||
|
// 删除门店列表
|
||
|
export function apiSystemStoreDelete(params: any) {
|
||
|
return request.post({ url: '/system_store/systemstore/delete', params })
|
||
|
}
|
||
|
|
||
|
// 门店列表详情
|
||
|
export function apiSystemStoreDetail(params: any) {
|
||
|
return request.get({ url: '/system_store/systemstore/detail', params })
|
||
|
}
|