This commit is contained in:
2026-01-20 16:56:01 +08:00
commit efdaaadc61
338 changed files with 44003 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
import request from '@/utils/request'
// 查询列表数据
export function listOutrevoke(data) {
return request({
url: '/wisdom/stock/list',
method: 'post',
data: data
})
}
export function delStore(data) {
return request({
url: '/wisdom/stock/deleteByIds',
method: 'post',
data: data
})
}
export function storeFun(data) {
return request({
url: '/wisdom/stock/revertByIds',
method: 'post',
data: data
})
}