diff --git a/src/views/dictionary/attachment/components/SignatureTemplate/attachmentList.vue b/src/views/dictionary/attachment/components/SignatureTemplate/attachmentList.vue index 8aaaaac1..31531ffd 100644 --- a/src/views/dictionary/attachment/components/SignatureTemplate/attachmentList.vue +++ b/src/views/dictionary/attachment/components/SignatureTemplate/attachmentList.vue @@ -147,6 +147,10 @@ export default { } }, edit(row) { + this.title = this.$t('dictionary:signature:attachmentForm:title:update') + if (!row.Id) { + this.title = this.$t('dictionary:signature:attachmentForm:title:add') + } this.rowData = Object.assign({}, row) this.visible = true },