路线
This commit is contained in:
parent
be07c2ade5
commit
54872ec9d9
@ -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
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user