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 } },