‘对接口’

This commit is contained in:
Fanzink
2022-01-18 17:02:15 +08:00
parent aa94abd681
commit b800893ea5
7 changed files with 48 additions and 8 deletions

View File

@@ -41,7 +41,7 @@ export function areaAdd(data) { // 新增缓存区区域信息单条数据
export function areaCode() { // 获取缓存区区域信息code
return request({
url: '/api/wms/area/get-code',
url: '/api/wms/area/getCode',
method: 'post'
})
}

View File

@@ -41,7 +41,7 @@ export function cacheAdd(data) { // 新增缓存区信息单条数据
export function cacheCode() { // 获取缓存区信息code
return request({
url: '/api/wms/area/get-code',
url: '/api/wms/area/getCode',
method: 'post'
})
}

View File

@@ -41,7 +41,7 @@ export function storageBoxAdd(data) { // 新增存储箱单条数据
export function storageBoxCode() { // 获取存储箱code
return request({
url: '/api/wms/storagebox/get-code',
url: '/api/wms/storagebox/getCode',
method: 'post'
})
}
@@ -56,7 +56,7 @@ export function storageBoxDelete(id) { // 删除存储箱单条数据
export function PositionDetailInfoAdd(data) { // 新增存储箱地址单条数据
return request({
url: '/api/wms/storagebox-site/add',
url: '/api/wms/storagebox/add',
method: 'post',
data
})

View File

@@ -41,7 +41,7 @@ export function equipmentInfoAdd(data) { // 新增设备信息单条数据
export function equipmentInfoCode() { // 获取设备信息code
return request({
url: '/api/wms/equipment/get-code',
url: '/api/wms/equipment/getCode',
method: 'post'
})
}