From 65b17021541858faf30aafbb05a8daa520460512 Mon Sep 17 00:00:00 2001 From: "15881625488@163.com" <15881625488@163.com> Date: Mon, 9 Feb 2026 21:24:21 +0800 Subject: [PATCH] =?UTF-8?q?fix:[=E8=A1=A8=E5=8D=95=E7=AE=A1=E7=90=86]?= =?UTF-8?q?=E6=93=8D=E4=BD=9C=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/business/study/comp/jhbd/Bj.vue | 4 +++- src/views/business/study/comp/sqbd/Bj.vue | 4 +++- src/views/business/study/comp/tbbd/Bj.vue | 4 +++- src/views/business/study/comp/ytbd/Bj.vue | 5 +++-- 4 files changed, 12 insertions(+), 5 deletions(-) diff --git a/src/views/business/study/comp/jhbd/Bj.vue b/src/views/business/study/comp/jhbd/Bj.vue index cabfc37..97d98d0 100644 --- a/src/views/business/study/comp/jhbd/Bj.vue +++ b/src/views/business/study/comp/jhbd/Bj.vue @@ -285,7 +285,9 @@ export default { this.showIndex = 1 this.form = _.merge({}, this.form, row) this.templateData = deepClone(this.form) - this.saveSimpleLog({jcmc:'计划表单新增',jcmcEn:'Create',jcnr:'',jcmcEn:''}) + let name=this.studyType==1?'试验':(this.studyType==5?'非试验表单':'麻精药表单') + let nameEn=this.studyType==1?'Study':(this.studyType==5?'Non-study':'ontrolled Drug') + this.saveSimpleLog({jcmc:'计划表单新增',jcmcEn:'Plan Table Create',name:name,nameEn:nameEn}) this.open = true } }, diff --git a/src/views/business/study/comp/sqbd/Bj.vue b/src/views/business/study/comp/sqbd/Bj.vue index 6a7f834..d1eeb23 100644 --- a/src/views/business/study/comp/sqbd/Bj.vue +++ b/src/views/business/study/comp/sqbd/Bj.vue @@ -287,7 +287,9 @@ export default { this.showIndex = 1 this.form = _.merge({}, this.form, row) this.templateData = deepClone(this.form) - this.saveSimpleLog({jcmc:'领取申请单新增',nameEn:'Create',name:'',nameEn:''}) + let name=this.studyType==1?'试验':(this.studyType==5?'非试验表单':'麻精药表单') + let nameEn=this.studyType==1?'Study':(this.studyType==5?'Non-study':'ontrolled Drug') + this.saveSimpleLog({jcmc:'领取申请单新增',jcmcEn:'Material Application Table Create',name:name,nameEn:nameEn}) this.open = true } }, diff --git a/src/views/business/study/comp/tbbd/Bj.vue b/src/views/business/study/comp/tbbd/Bj.vue index bd9772e..568867c 100644 --- a/src/views/business/study/comp/tbbd/Bj.vue +++ b/src/views/business/study/comp/tbbd/Bj.vue @@ -608,7 +608,9 @@ export default { this.templateData = deepClone(this.form) const obj = Object.assign({}, this.$route, { title: this.$t('page.business.study.studyFormFill.xzbd') }) this.$tab.updatePage(obj); - this.saveSimpleLog({jcmc:'填报表单新增',jcmcEn:'Create',name:'',nameEn:''}) + let name=this.studyType==1?'试验':(this.studyType==5?'非试验表单':'麻精药表单') + let nameEn=this.studyType==1?'Study':(this.studyType==5?'Non-study':'ontrolled Drug') + this.saveSimpleLog({jcmc:'填报表单新增',jcmcEn:'Record Create',name:name,nameEn:nameEn}) this.$modal.closeLoading() }) } diff --git a/src/views/business/study/comp/ytbd/Bj.vue b/src/views/business/study/comp/ytbd/Bj.vue index d8971a9..085ff65 100644 --- a/src/views/business/study/comp/ytbd/Bj.vue +++ b/src/views/business/study/comp/ytbd/Bj.vue @@ -285,11 +285,12 @@ export default { } else { this.showIndex = 1 this.form = _.merge({}, this.form, row) - this.saveSimpleLog({name:this.form.bdbh,nameEn:this.form.bdbh,jcmc:'新增表单',jcmcEn:'Create'}) this.templateData = deepClone(this.form) const obj = Object.assign({}, this.$route, { title: this.$t('page.business.study.studyFormFill.xzbd') }) this.$tab.updatePage(obj); - this.saveSimpleLog({jcmc:'预填表单新增',jcmcEn:'Create',name:'',jcmcEn:''}) + let name=this.studyType==1?'试验':(this.studyType==5?'非试验表单':'麻精药表单') + let nameEn=this.studyType==1?'Study':(this.studyType==5?'Non-study':'ontrolled Drug') + this.saveSimpleLog({jcmc:'预填表单新增',jcmcEn:'Preset Create',name:name,nameEn:nameEn}) this.open = true } },