增加字段

This commit is contained in:
wgx 2026-01-08 17:41:25 +08:00
parent dacd296f0a
commit e9cb47183b
4 changed files with 12 additions and 2 deletions

View File

@ -6,7 +6,7 @@ VITE_PUBLIC_PATH = /
# 跨域代理,您可以配置多个 ,请注意,没有换行符 # 跨域代理,您可以配置多个 ,请注意,没有换行符
VITE_PROXY = [["/jeecgboot","http://192.168.2.110:9999"],["/upload","http://192.168.2.110:3300/upload"]] VITE_PROXY = [["/jeecgboot","http://192.168.2.110:9999"],["/upload","http://192.168.2.110:3300/upload"]]
#VITE_PROXY = [["/jeecgboot","https://fxnsp.sxcooh.com"],["/upload","http://192.168.2.111:3300/upload"]] VITE_PROXY = [["/jeecgboot","https://fxnsp.sxcooh.com/lh-api/"],["/upload","http://192.168.2.111:3300/upload"]]
# 控制台不输出 # 控制台不输出
VITE_DROP_CONSOLE = false VITE_DROP_CONSOLE = false

View File

@ -48,6 +48,7 @@
"@vueuse/shared": "^8.3.0", "@vueuse/shared": "^8.3.0",
"@zxcvbn-ts/core": "^2.0.1", "@zxcvbn-ts/core": "^2.0.1",
"ant-design-vue": "^3.2.12", "ant-design-vue": "^3.2.12",
"html2canvas": "1.4.1",
"axios": "^0.26.1", "axios": "^0.26.1",
"china-area-data": "^5.0.1", "china-area-data": "^5.0.1",
"clipboard": "^2.0.8", "clipboard": "^2.0.8",

View File

@ -96,6 +96,9 @@ importers:
ezuikit-js: ezuikit-js:
specifier: ^7.6.8 specifier: ^7.6.8
version: 7.7.10 version: 7.7.10
html2canvas:
specifier: 1.4.1
version: 1.4.1
intro.js: intro.js:
specifier: ^5.1.0 specifier: ^5.1.0
version: 5.1.0 version: 5.1.0

View File

@ -7,6 +7,11 @@
<a-input v-model:value="formData.stationName" placeholder="请输入站点名称" :disabled="disabled"></a-input> <a-input v-model:value="formData.stationName" placeholder="请输入站点名称" :disabled="disabled"></a-input>
</a-form-item> </a-form-item>
</a-col> </a-col>
<a-col :span="24">
<a-form-item label="站点名称简写" v-bind="validateInfos.stationShortName">
<a-input v-model:value="formData.stationShortName" placeholder="请输入站点名称简写" :disabled="disabled"></a-input>
</a-form-item>
</a-col>
<a-col :span="24"> <a-col :span="24">
<a-form-item label="站点类型" v-bind="validateInfos.stationType"> <a-form-item label="站点类型" v-bind="validateInfos.stationType">
<JDictSelectTag type="select" v-model:value="formData.stationType" dictCode="surv_station_type" placeholder="请选择运维类型" /> <JDictSelectTag type="select" v-model:value="formData.stationType" dictCode="surv_station_type" placeholder="请选择运维类型" />
@ -152,6 +157,7 @@
updatedTime: '', updatedTime: '',
isDel: undefined, isDel: undefined,
stationName: '', stationName: '',
stationShortName: '',
stationLatitude: '', stationLatitude: '',
stationLongitude: '', stationLongitude: '',
corpId: '', corpId: '',