From db8cf5ade031998f352951dfc206d272c1eca742 Mon Sep 17 00:00:00 2001 From: memorylkf <312904636@qq.com> Date: Tue, 3 Feb 2026 14:27:23 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20[=E6=93=8D=E4=BD=9C=E6=97=A5=E5=BF=97]?= =?UTF-8?q?=20=E8=AF=95=E9=AA=8C=E6=97=A5=E5=BF=97=E5=8A=A0=E4=B8=8A?= =?UTF-8?q?=E5=90=8D=E7=A7=B0=E7=BC=96=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/business/form/drug/comp/enter.vue | 2 +- src/views/business/form/nonTrial/comp/enter.vue | 2 +- src/views/business/study/comp/enter.vue | 2 +- src/views/business/systemLog/comp/czrz.vue | 10 +++++----- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/views/business/form/drug/comp/enter.vue b/src/views/business/form/drug/comp/enter.vue index a03c591..8fabdc7 100644 --- a/src/views/business/form/drug/comp/enter.vue +++ b/src/views/business/form/drug/comp/enter.vue @@ -66,7 +66,7 @@ export default { this.$modal.loading() drug_info({id:this.$route.params.studyId}).then(({data}) => { this.study = data - const obj = Object.assign({}, this.$route, { title: '麻精药表单:'+this.study.sn }) + const obj = Object.assign({}, this.$route, { title: this.study.name+'('+this.study.sn+')' }) this.$tab.updatePage(obj); }).finally(() => { this.$modal.closeLoading() diff --git a/src/views/business/form/nonTrial/comp/enter.vue b/src/views/business/form/nonTrial/comp/enter.vue index 984d362..5dd0bf4 100644 --- a/src/views/business/form/nonTrial/comp/enter.vue +++ b/src/views/business/form/nonTrial/comp/enter.vue @@ -66,7 +66,7 @@ export default { this.$modal.loading() nonTrial_info({id:this.$route.params.studyId}).then(({data}) => { this.study = data - const obj = Object.assign({}, this.$route, { title: '非试验表单:'+this.study.sn }) + const obj = Object.assign({}, this.$route, { title: this.study.name+'('+this.study.sn+')' }) this.$tab.updatePage(obj); }).finally(() => { this.$modal.closeLoading() diff --git a/src/views/business/study/comp/enter.vue b/src/views/business/study/comp/enter.vue index cda9a1e..5c2596d 100644 --- a/src/views/business/study/comp/enter.vue +++ b/src/views/business/study/comp/enter.vue @@ -80,7 +80,7 @@ export default { this.$modal.loading() study_info({id:this.$route.params.studyId}).then(({data}) => { this.study = data - const obj = Object.assign({}, this.$route, { title: '试验管理:'+this.study.sn }) + const obj = Object.assign({}, this.$route, { title: this.study.name+'('+this.study.sn+')' }) this.$tab.updatePage(obj); }).finally(() => { this.$modal.closeLoading() diff --git a/src/views/business/systemLog/comp/czrz.vue b/src/views/business/systemLog/comp/czrz.vue index 1e7d565..7e489cd 100644 --- a/src/views/business/systemLog/comp/czrz.vue +++ b/src/views/business/systemLog/comp/czrz.vue @@ -46,7 +46,7 @@ - + @@ -122,9 +122,9 @@ export default { _.forEach(list,(o,index)=>{ nr+=o.name+':'+o.value+(index===list.length-1?'':';') }) - return nr + return (row.name || '')+nr+(row.remark?(';'+this.$t('form.remark')+":"+row.remark):'') }else{ - return row.jcnr + return (row.name || '')+(row.jcnr || '')+(row.remark?(';'+this.$t('form.remark')+":"+row.remark):'') } }else{ if(this.isJSON(row.jcnrEn)){ @@ -133,9 +133,9 @@ export default { _.forEach(list,(o,index)=>{ nr+=o.name+':'+o.value+(index===list.length-1?'':';') }) - return nr + return (row.name || '')+nr+(row.remark?(';'+this.$t('form.remark')+":"+row.remark):'') }else{ - return row.jcnrEn + return (row.name || '')+(row.jcnrEn || '')+(row.remark?(';'+this.$t('form.remark')+":"+row.remark):'') } } },