论著开头空格问题
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
f8ddeb311c
commit
3a81bad5db
|
@ -11,9 +11,7 @@
|
|||
{{ $t('common:button:edit') }}
|
||||
</el-button>
|
||||
</div>
|
||||
<div class="message" v-if="DATA.Publications">
|
||||
{{ DATA.Publications }}
|
||||
</div>
|
||||
<div class="message" v-if="DATA.Publications">{{ DATA.Publications }}</div>
|
||||
<div class="noData" v-else>{{ $t('curriculumVitae:noData') }}</div>
|
||||
<base-model :config="model_cfg">
|
||||
<template slot="dialog-body">
|
||||
|
|
|
@ -253,8 +253,10 @@ export default {
|
|||
},
|
||||
},
|
||||
async created() {
|
||||
this.$i18n.locale = this.$route.query.lang
|
||||
this.trialId = this.$route.query.trialId
|
||||
this.$i18n.locale =
|
||||
this.$route.query.lang || zzSessionStorage.getItem('lang')
|
||||
this.trialId =
|
||||
this.$route.query.trialId || zzSessionStorage.getItem('trialId')
|
||||
await this.setLanguage(this.$route.query.lang)
|
||||
if (sessionStorage.getItem('reviewerId')) {
|
||||
this.reviewerId = sessionStorage.getItem('reviewerId')
|
||||
|
|
|
@ -468,9 +468,7 @@
|
|||
class="message break-word"
|
||||
style="white-space: pre-wrap"
|
||||
v-if="reviewerData.ResearchPublicationView.Publications"
|
||||
>
|
||||
{{ reviewerData.ResearchPublicationView.Publications }}
|
||||
</div>
|
||||
>{{ reviewerData.ResearchPublicationView.Publications }}</div>
|
||||
</div>
|
||||
<div
|
||||
class="message break-word"
|
||||
|
|
Loading…
Reference in New Issue