This commit is contained in:
yyy 2025-04-09 14:58:09 +08:00
parent be07c2ade5
commit 54872ec9d9
2 changed files with 8 additions and 4 deletions

View File

@ -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

View File

@ -205,7 +205,9 @@
</el-col>
<el-col :span="12" v-if="form.direction === 2">
<el-form-item
:label="'开始点' + form.startingSortNum + '到结束点' + form.endPointSortNum"
:label="
'开始点' + (form.startingSortNum || '') + '到结束点' + (form.endPointSortNum || '')
"
prop="startToEndToward"
required
label-width="180"
@ -222,7 +224,9 @@
</el-col>
<el-col :span="12" v-if="form.direction === 2">
<el-form-item
:label="'结束点' + form.endPointSortNum + '到开始点' + form.startingSortNum"
:label="
'结束点' + (form.endPointSortNum || '') + '到开始点' + (form.startingSortNum || '')
"
prop="endToStartToward"
required
label-width="180"