修改消息通知

This commit is contained in:
qq787203167
2022-03-04 17:06:13 +08:00
parent 1ee3475e45
commit 0db5597cf4
5 changed files with 21 additions and 14 deletions
@@ -189,8 +189,8 @@
<a-form-model-item class="itemModel" :prop="item.db_field_name">
<a-tree-select
v-model="formInline[item.db_field_name]"
style="width: 100%"
:maxTagCount="1"
style="width: 100%"
:tree-data="item.tree"
tree-checkable
:placeholder="$t('PleaseSelect')+item.db_field_txt"
@@ -282,7 +282,7 @@
text: this.$t('relatedInformation'),
content: []
}
],
]
}
},
mounted() {
@@ -349,7 +349,7 @@
}
/** 赋值给当前对应的表单文件 */
this.formInline[this.uploadName] = attIdList.join(',')
this.formInline = {...this.formInline }
this.formInline = { ...this.formInline }
},
handleInput(value) {
this.$nextTick(() => {
@@ -369,9 +369,9 @@
message: res.db_field_txt + this.$t('cannotEmpty'),
trigger: 'blur'
})
} else if (res.field_show_type === '4' || res.field_show_type === '6' ||
} else if (res.field_show_type === '4' || res.field_show_type === '6' ||
res.field_show_type === '5' || res.field_show_type === '7'
) {
) {
rule.push({
required: true,
message: res.db_field_txt + this.$t('cannotEmpty'),
@@ -425,6 +425,7 @@
}
})
})
console.log(this.headerText)
}
})
},