update 去掉输入框(链接)类型

This commit is contained in:
赵霄
2023-10-19 16:34:56 +08:00
parent 9283f77e18
commit 0ecfa8b94f
6 changed files with 11 additions and 10 deletions
@@ -526,7 +526,7 @@ export default {
this.formListArr.forEach((res, index) => {
const rule = []
if (res.fieldMustInput === '1') {
if ([FieldType.TEXT_BOX.value, FieldType.TEXTAREA.value, FieldType.TEXT_LINK.value].includes(res.fieldShowType)) {
if ([FieldType.TEXT_BOX.value, FieldType.TEXTAREA.value].includes(res.fieldShowType)) {
rule.push({
required: true,
message: res.dbFieldTxt + this.$t('cannotEmpty'),