You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
375 B
16 lines
375 B
import request from '@/utils/request'
|
|
|
|
// api地址
|
|
const api = {
|
|
storeGoodsList:'storeKeeper/list',
|
|
delGoods:'storeKeeper/delete'
|
|
}
|
|
|
|
// 店主--商品列表
|
|
export function storeGoodsList(param) {
|
|
return request.get(api.storeGoodsList, { ...param })
|
|
}
|
|
//店主--删除/批量删除
|
|
export function delGoods(param) {
|
|
return request.post(api.delGoods, { ...param })
|
|
}
|
|
|