车辆新增新添加车辆ip和车俩端口参数
This commit is contained in:
parent
28328ebaaf
commit
7540273481
@ -4,9 +4,9 @@ NODE_ENV=development
|
||||
VITE_DEV=true
|
||||
|
||||
# 请求路径
|
||||
# VITE_BASE_URL='http://192.168.0.74:48080'
|
||||
VITE_BASE_URL='http://192.168.0.74:48080'
|
||||
# VITE_BASE_URL='http://192.168.0.153:48080'
|
||||
VITE_BASE_URL='http://192.168.0.45:48080'
|
||||
# VITE_BASE_URL='http://192.168.0.45:48080'
|
||||
|
||||
# 文件上传类型:server - 后端上传, client - 前端直连上传,仅支持 S3 服务
|
||||
VITE_UPLOAD_TYPE=server
|
||||
|
@ -70,6 +70,24 @@
|
||||
@change="floorAreaChange"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="车辆ip" prop="robotIp">
|
||||
<el-input
|
||||
v-model="formData.robotIp"
|
||||
:disabled="false"
|
||||
placeholder="请输入车辆ip"
|
||||
maxlength="20"
|
||||
show-word-limit
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="车辆端口" prop="robotPort">
|
||||
<el-input
|
||||
v-model="formData.robotPort"
|
||||
:disabled="false"
|
||||
placeholder="请输入车辆端口"
|
||||
maxlength="6"
|
||||
show-word-limit
|
||||
/>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
|
||||
<template #footer>
|
||||
@ -93,7 +111,9 @@ const formData = ref({
|
||||
robotNo: undefined, //车辆编号
|
||||
macAddress: undefined, //mac地址
|
||||
floorAreaJson: [],
|
||||
autoCharge: undefined
|
||||
autoCharge: undefined,
|
||||
robotIp: undefined,
|
||||
robotPort: undefined
|
||||
})
|
||||
const carModelList = ref([])
|
||||
const floorAreaList = ref([])
|
||||
|
Loading…
Reference in New Issue
Block a user