收银后台跟进

This commit is contained in:
liuyingfang
2023-12-16 18:30:12 +08:00
parent 24bcc09bc2
commit 35bb1d6b25
42 changed files with 3883 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
import request from '@/utils/request'
export function add(data) {
return request({
url: 'api/tbProductGroup',
method: 'post',
data
})
}
export function del(ids) {
return request({
url: 'api/tbProductGroup/',
method: 'delete',
data: ids
})
}
export function edit(data) {
return request({
url: 'api/tbProductGroup',
method: 'put',
data
})
}
export default { add, edit, del }