增加商品词条模块

This commit is contained in:
sj
2022-09-29 17:04:00 +08:00
parent e81c4987ba
commit 36efe2efac
5 changed files with 179 additions and 11 deletions
+27
View File
@@ -0,0 +1,27 @@
import request from '@/utils/request'
export function add(data) {
return request({
url: 'bxg/api/yxStoreEntry',
method: 'post',
data
})
}
export function del(ids) {
return request({
url: 'bxg/api/yxStoreEntry/',
method: 'delete',
data: ids
})
}
export function edit(data) {
return request({
url: 'bxg/api/yxStoreEntry',
method: 'put',
data
})
}
export default { add, edit, del }