初始化仓库

This commit is contained in:
tao
2025-12-18 14:11:48 +08:00
parent e96f277a68
commit 54ec472bd4
1107 changed files with 158756 additions and 0 deletions

27
api/basic/boxCode.js Normal file
View File

@@ -0,0 +1,27 @@
import request from '@/utils/request'
// 查询箱码
export function listBoxCode(query) {
return request({
url: '/basic/boxCode',
method: 'get',
params: query
})
}
// 新增箱码
export function addBoxCode(data) {
return request({
url: '/basic/boxCode',
method: 'post',
data: data
})
}
// 删除箱码
export function delBoxCode() {
return request({
url: '/basic/boxCode',
method: 'put'
})
}