国际化英文筛选问题

This commit is contained in:
2026-04-01 10:37:13 +08:00
parent 2abe00c28e
commit de1635dc23
4 changed files with 5 additions and 5 deletions

View File

@@ -4,8 +4,8 @@ NODE_ENV=development
VITE_DEV=true VITE_DEV=true
# 请求路径 # 请求路径
VITE_BASE_URL='http://192.168.2.22:48080' # VITE_BASE_URL='http://192.168.2.22:48080'
# VITE_BASE_URL='https://backstageapi.yolozs.com' VITE_BASE_URL='https://backstageapi.yolozs.com'
# VITE_BASE_URL='https://testapi.tknb.net' # VITE_BASE_URL='https://testapi.tknb.net'
# 文件上传类型server - 后端上传, client - 前端直连上传,仅支持 S3 服务 # 文件上传类型server - 后端上传, client - 前端直连上传,仅支持 S3 服务

View File

@@ -57,7 +57,7 @@
class="!w-240px"> class="!w-240px">
<el-option v-for="dict in countryinfoList" :key="dict.id" <el-option v-for="dict in countryinfoList" :key="dict.id"
:label="t('newHosts.min') == '最小值' ? dict.countryName : dict.countryNameEnglish" :label="t('newHosts.min') == '最小值' ? dict.countryName : dict.countryNameEnglish"
:value="t('newHosts.min') == '最小值' ? dict.countryName : dict.countryNameEnglish" /> :value="dict.countryName" />
</el-select> </el-select>
</el-form-item> </el-form-item>

View File

@@ -55,7 +55,7 @@
class="!w-240px"> class="!w-240px">
<el-option v-for="dict in countryinfoList" :key="dict.id" <el-option v-for="dict in countryinfoList" :key="dict.id"
:label="t('newHosts.min') == '最小值' ? dict.countryName : dict.countryNameEnglish" :label="t('newHosts.min') == '最小值' ? dict.countryName : dict.countryNameEnglish"
:value="t('newHosts.min') == '最小值' ? dict.countryName : dict.countryNameEnglish" /> :value="dict.countryName" />
</el-select> </el-select>
</el-form-item> </el-form-item>

View File

@@ -87,7 +87,7 @@
class="!w-240px"> class="!w-240px">
<el-option v-for="dict in countryinfoList" :key="dict.id" <el-option v-for="dict in countryinfoList" :key="dict.id"
:label="t('newHosts.min') == '最小值' ? dict.countryName : dict.countryNameEnglish" :label="t('newHosts.min') == '最小值' ? dict.countryName : dict.countryNameEnglish"
:value="t('newHosts.min') == '最小值' ? dict.countryName : dict.countryNameEnglish" /> :value="dict.countryName" />
</el-select> </el-select>
</el-form-item> </el-form-item>