翻转机设备

This commit is contained in:
yyy 2025-07-16 15:20:26 +08:00
parent ce338fce96
commit f99e5d0ff4
3 changed files with 4 additions and 5 deletions

View File

@ -4,9 +4,9 @@ NODE_ENV=development
VITE_DEV=true
# 请求路径
VITE_BASE_URL='http://10.10.7.132:48080'
# VITE_BASE_URL='http://10.10.7.132:48080'
# VITE_BASE_URL='http://10.10.100.15:48080'
# VITE_BASE_URL='http://10.10.5.5:48080'
VITE_BASE_URL='http://10.10.5.5:48080'
# 文件上传类型server - 后端上传, client - 前端直连上传,仅支持 S3 服务
VITE_UPLOAD_TYPE=server

View File

@ -175,7 +175,7 @@ const checkPointList = ref([])
//
const getTakePointList = async () => {
try {
takePointList.value = await DeviceApi.getWareHouseTakePointList({ pointType: 1 })
takePointList.value = await DeviceApi.getWareHouseTakePointList({ pointType: 0 })
} catch (error) {
console.error('获取取放货点位失败:', error)
takePointList.value = []
@ -185,7 +185,7 @@ const getTakePointList = async () => {
//
const getCheckPointList = async () => {
try {
checkPointList.value = await DeviceApi.getWareHouseTakePointList({ pointType: 0 })
checkPointList.value = await DeviceApi.getWareHouseTakePointList({ pointType: 1 })
} catch (error) {
console.error('获取检测区点位失败:', error)
checkPointList.value = []

View File

@ -779,7 +779,6 @@
</el-form>
<locationSelectionDialog
:positionMapId="null"
ref="locationSelectionDialogRef"
@location-selection-dialog-success="locationSelectionDialogSuccess"
/>