@@ -30,7 +30,7 @@
|
||||
{{ $t('curriculumVitae:curriculum:fileTitle:EN') }}
|
||||
</div>
|
||||
<template v-if="resumeListEN.length > 0">
|
||||
<div class="file" v-for="item in resumeListEN" :key="item">
|
||||
<div class="file" v-for="item in resumeListEN" :key="item.FileName">
|
||||
<div class="name" :title="item.FileName">{{ item.FileName }}</div>
|
||||
<i
|
||||
class="el-icon-download"
|
||||
|
||||
@@ -537,7 +537,7 @@
|
||||
{{ $t('curriculumVitae:curriculum:fileTitle:EN') }}
|
||||
</div>
|
||||
<template v-if="true">
|
||||
<div class="file" v-for="item in resumeListEN" :key="item">
|
||||
<div class="file" v-for="item in resumeListEN" :key="item.FileName">
|
||||
<div class="name" :title="item.FileName">{{ item.FileName }}</div>
|
||||
<i
|
||||
class="el-icon-download"
|
||||
|
||||
@@ -15,7 +15,12 @@
|
||||
<el-menu-item index="3">{{
|
||||
$t('trials:trials-myinfo:menuTitle:loginLog')
|
||||
}}</el-menu-item>
|
||||
<div index="4" @click="handleSelect('4')" class="el-menu-item">
|
||||
<div
|
||||
index="4"
|
||||
@click="handleSelect('4')"
|
||||
class="el-menu-item"
|
||||
v-if="hasPermi(['role:ir'])"
|
||||
>
|
||||
{{ $t('trials:trials-myinfo:menuTitle:resume') }}
|
||||
</div>
|
||||
</el-menu>
|
||||
|
||||
@@ -107,7 +107,7 @@
|
||||
icon="el-icon-view"
|
||||
circle
|
||||
:title="$t('trials:spmEnroll:button:view')"
|
||||
@click="lookResumeInfo(scope.row)"
|
||||
@click="handleDetail(scope.row)"
|
||||
/>
|
||||
<!-- 同意 -->
|
||||
<el-button
|
||||
@@ -219,9 +219,11 @@ export default {
|
||||
},
|
||||
handleSelectTable(row) { return row.DoctorTrialState !== 8 },
|
||||
handleDetail(row) {
|
||||
const { href } = this.$router.resolve({ path: `/trialsResume?doctorId=${row.Id}` })
|
||||
const { href } = this.$router.resolve({
|
||||
path: `/trialsResume?doctorId=${row.Id}&trialId=${this.$route.query.trialId}`,
|
||||
})
|
||||
window.open(href, '_blank')
|
||||
}
|
||||
},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
@@ -1,7 +1,12 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<!-- <resume-info v-if="isInit" /> -->
|
||||
<preview :isEN="isEN" :reviewerId.sync="reviewerId" :trialId.sync="trialId" />
|
||||
<preview
|
||||
:isEN="isEN"
|
||||
:isAll="isAll"
|
||||
:reviewerId.sync="reviewerId"
|
||||
:trialId.sync="trialId"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
@@ -29,6 +34,9 @@ export default {
|
||||
isEN() {
|
||||
return this.$i18n.locale !== 'zh'
|
||||
},
|
||||
isAll() {
|
||||
return this.hasPermi(['role:pm', 'role:admin', 'role:apm', 'role:ir'])
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
const token = getQueryString('token')
|
||||
|
||||
Reference in New Issue
Block a user