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):'') } } },