[update] 修改UAT问题:字典项新增编辑和标签内容项字典配置增加英文简写字段

This commit is contained in:
lideqin
2024-09-13 15:40:17 +08:00
parent cdd96e73c7
commit aad5442682
6 changed files with 21 additions and 0 deletions
+1
View File
@@ -439,6 +439,7 @@ module.exports = {
dictList: 'Dictionary List',
// 字典配置项新增,编辑弹框
dataValue: 'Data Value',
englishAbbreviation: 'English abbreviation',
rankingValue: 'Ranking Value',
valueSmallerIsHigher: 'The smaller the value, the higher the value',
valueCannotContainSpecChar: 'Data values cannot contain special characters!',
+1
View File
@@ -50,6 +50,7 @@ module.exports = {
// 字段列表
name: 'Name',
dataValue: 'Value',
englishAbbreviation: 'English abbreviation',
parentName: 'Parent Name',
select: 'Select',
tree: 'Tree',
+1
View File
@@ -50,6 +50,7 @@ module.exports = {
// 字段列表
name: '名称',
dataValue: '数据值',
englishAbbreviation: '英文简称',
parentName: '父级名称',
select: '下拉选择',
tree: '树形结构',
+1
View File
@@ -439,6 +439,7 @@ module.exports = {
dictList: '字典列表',
// 字典配置项新增,编辑弹框
dataValue: '数据值',
englishAbbreviation: '英文简称',
rankingValue: '排序值',
valueSmallerIsHigher: '值越小越靠前',
valueCannotContainSpecChar: '数据值不能包含特殊字符!',
@@ -40,6 +40,15 @@
<a-input :placeholder="$t('pleaseEnter') + $t('dict.dataValue')" v-model="model.itemValue" :maxLength="50" />
</a-form-model-item>
<!-- 英文简称 -->
<a-form-model-item
:labelCol="labelCol"
:wrapperCol="wrapperCol"
prop="enBase"
:label="$t('dict.englishAbbreviation')">
<a-input :placeholder="$t('pleaseEnter') + $t('dict.englishAbbreviation')" v-model="model.enBase" :maxLength="50" />
</a-form-model-item>
<a-form-model-item
:labelCol="labelCol"
:wrapperCol="wrapperCol"
@@ -54,6 +54,14 @@
/>
</a-form-model-item>
<!-- 英文简称 -->
<a-form-model-item prop="enBase" :label="$t('dict.englishAbbreviation')">
<a-input
:placeholder="$t('pleaseEnter') + $t('dict.englishAbbreviation')"
v-model="model.enBase"
:maxLength="50" />
</a-form-model-item>
<a-form-model-item :label="$t('description')">
<a-input :maxLength="50"
v-model="model.description"