lihaiMiddleOfficeAdminWeb/src/api/store_branch_product.ts

26 lines
948 B
TypeScript
Raw Normal View History

2024-06-07 17:58:50 +08:00
import request from '@/utils/request'
// 门店商品辅助表列表
export function apiStoreBranchProductLists(params: any) {
return request.get({ url: '/store_branch_product/storebranchproduct/lists', params })
}
// 添加门店商品辅助表
export function apiStoreBranchProductAdd(params: any) {
return request.post({ url: '/store_branch_product/storebranchproduct/add', params })
}
// 编辑门店商品辅助表
export function apiStoreBranchProductEdit(params: any) {
return request.post({ url: '/store_branch_product/storebranchproduct/edit', params })
}
// 删除门店商品辅助表
export function apiStoreBranchProductDelete(params: any) {
return request.post({ url: '/store_branch_product/storebranchproduct/delete', params })
}
// 门店商品辅助表详情
export function apiStoreBranchProductDetail(params: any) {
return request.get({ url: '/store_branch_product/storebranchproduct/detail', params })
}