diff --git a/src/views/main/BookingLedger/detail/modules/goodsTable.vue b/src/views/main/BookingLedger/detail/modules/goodsTable.vue index 6c7bf6e..2bb7307 100644 --- a/src/views/main/BookingLedger/detail/modules/goodsTable.vue +++ b/src/views/main/BookingLedger/detail/modules/goodsTable.vue @@ -783,7 +783,7 @@ export default { if (changeValue) { CheckCtnCode({ code: changeValue }).then(res => { if (!res.data) { - this.$message.error(changeValue + '箱号不符合规') + this.$message.error(changeValue + '箱号不符合规则') } }) } @@ -1054,7 +1054,7 @@ export default { if (selectionRangeKeys.endColKey === 'cntrno') { CheckCtnCode({ code: changeValue }).then(res => { if (!res.data) { - this.$message.error(changeValue + '箱号不符合规') + this.$message.error(changeValue + '箱号不符合规则') } }) } diff --git a/src/views/main/BookingLedger/detail/modules/rightContent.vue b/src/views/main/BookingLedger/detail/modules/rightContent.vue index ddba8a2..be6b304 100644 --- a/src/views/main/BookingLedger/detail/modules/rightContent.vue +++ b/src/views/main/BookingLedger/detail/modules/rightContent.vue @@ -440,6 +440,7 @@ import { ChangeServiceltem } from '@/api/modular/main/BookingLedger' import { AntdEditor } from '@/components' +import { mapGetters } from 'vuex' import { sysFileInfoUpload } from '@/api/modular/system/fileManage' export default { name: '', @@ -540,6 +541,7 @@ export default { } }, computed: { + ...mapGetters(['userInfo']), locaService() { if (!this.details || Object.keys(this.details).length === 0) { return [] @@ -635,7 +637,7 @@ export default { if (this.editor) { this.editor.txt.html(`
您好
附件是【${file.fileName }】,请查收

-------------------------------------------------------
-
【公司名】
【操作名】
【电话】
【邮箱】
`) +
${this.userInfo.loginEmpInfo.orgName}
${this.userInfo.name}
${this.userInfo.phone}
${this.userInfo.email}
`) } this.forwardForm = {} this.forwardFile = file @@ -643,7 +645,7 @@ export default { this.forwardForm.subject = '【' + file.fileName + '】请查收' this.forwardForm.body = `
您好
附件是【${file.fileName }】,请查收

-------------------------------------------------------
-
【公司名】
【操作名】
【电话】
【邮箱】
` +
${this.userInfo.loginEmpInfo.orgName}
${this.userInfo.name}
${this.userInfo.phone}
${this.userInfo.email}
` }, handleOpenAtd(type) { this.atdFlag = true