fix: 系统名称长度设置20位字符

This commit is contained in:
TsMask
2023-11-28 20:55:05 +08:00
parent 8e1edc680e
commit 642fff876a

View File

@@ -69,7 +69,7 @@ onMounted(() => {
<a-input
v-model:value="state.title"
allow-clear
:maxlength="11"
:maxlength="20"
:placeholder="t('common.ipnutPlease')"
></a-input>
</a-form-item>
@@ -99,7 +99,7 @@ onMounted(() => {
<a-typography>
<a-typography-paragraph>
{{ t('views.system.setting.sysNameLimitation') }}
<a-typography-text mark>11</a-typography-text>
<a-typography-text mark>20</a-typography-text>
{{ t('views.system.setting.charMaxLen') }}
</a-typography-paragraph>
</a-typography>