[update] 标签管理字段长度限制最大值50去掉,最大值限制9999

This commit is contained in:
lideqin
2024-08-20 10:25:17 +08:00
parent d8fd408f74
commit 8666d62af5
@@ -103,7 +103,7 @@
<!--字段长度 key 值必须加解决验证错位的问题-->
<a-col :span="24" v-if="isLength">
<a-form-model-item :label="$t('system.tag.fieldLength')" prop="dbLength" key="dbLength">
<a-input-number v-model="form.dbLength" :min="1" :max="form.fieldShowType === FieldType.TEXT_BOX.value ? 50 : 9999"
<a-input-number v-model="form.dbLength" :min="1" :max="9999"
:placeholder="$t('pleaseEnter') + $t('system.tag.fieldLength')"
style="width: 100%" :formatter="limitNumber" :parser="limitNumber" />
</a-form-model-item>