1
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
fcac89e034
commit
8be1b41295
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="education-info">
|
<div class="education-info">
|
||||||
<div class="title">Education (in chronological order)</div>
|
<div class="title">{{ $t('resumeInfo:label:Education') }}</div>
|
||||||
<el-table :data="educationList" border style="width: 100%;margin-top:10px;" size="small">
|
<el-table :data="educationList" border style="width: 100%;margin-top:10px;" size="small">
|
||||||
<template slot="empty">
|
<template slot="empty">
|
||||||
<span></span>
|
<span></span>
|
||||||
|
|
|
@ -54,7 +54,7 @@
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="6">
|
<el-col :span="6">
|
||||||
<el-form-item :label="$t('resumeInfo:label:Country')">
|
<el-form-item :label="$t('resumeInfo:label:Country:')">
|
||||||
<span v-if="isEnglish">{{ employment.Country }}</span>
|
<span v-if="isEnglish">{{ employment.Country }}</span>
|
||||||
<span v-else>{{ employment.CountryCN }}</span>
|
<span v-else>{{ employment.CountryCN }}</span>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
|
@ -56,7 +56,7 @@
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form>
|
</el-form>
|
||||||
<el-dialog
|
<el-dialog
|
||||||
title="Vacation"
|
:title="$t('resumeInfo:label:Vacation')"
|
||||||
:visible.sync="dialogVisible"
|
:visible.sync="dialogVisible"
|
||||||
width="35%"
|
width="35%"
|
||||||
:close-on-click-modal="false"
|
:close-on-click-modal="false"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="trialExperience-info">
|
<div class="trialExperience-info">
|
||||||
<div class="title">Clinical Trial Experience</div>
|
<div class="title">{{$t('resumeInfo:title:ClinicalTrialExperience')}}</div>
|
||||||
<el-table :data="GCPList" border style="width: 100%" size="small">
|
<el-table :data="GCPList" border style="width: 100%" size="small">
|
||||||
<template slot="empty">
|
<template slot="empty">
|
||||||
<span></span>
|
<span></span>
|
||||||
|
|
|
@ -16,35 +16,35 @@
|
||||||
<div style="flex:1;margin-top:50px;overflow-y: auto;">
|
<div style="flex:1;margin-top:50px;overflow-y: auto;">
|
||||||
<el-collapse v-model="activeNames">
|
<el-collapse v-model="activeNames">
|
||||||
<status-info :basic-info="basicInfo" :status-list="statusList" :doctor-id="doctorId" :holiday="holiday" :is-english="isEnglish" />
|
<status-info :basic-info="basicInfo" :status-list="statusList" :doctor-id="doctorId" :holiday="holiday" :is-english="isEnglish" />
|
||||||
<el-collapse-item title="Basic Info" name="1">
|
<el-collapse-item :title="$t('resumeInfo:title:BasicInfo')" name="1">
|
||||||
<basic-info :basic-info="doctorInfo.BasicInfoView" :is-english="isEnglish" />
|
<basic-info :basic-info="doctorInfo.BasicInfoView" :is-english="isEnglish" />
|
||||||
</el-collapse-item>
|
</el-collapse-item>
|
||||||
<el-collapse-item title="Employment" name="2">
|
<el-collapse-item :title="$t('resumeInfo:title:Employment')" name="2">
|
||||||
<Employment :employment="workInfo" :is-english="isEnglish" />
|
<Employment :employment="workInfo" :is-english="isEnglish" />
|
||||||
</el-collapse-item>
|
</el-collapse-item>
|
||||||
<el-collapse-item title="Specialty" name="3">
|
<el-collapse-item :title="$t('resumeInfo:title:Specialty')" name="3">
|
||||||
<Specialty :specialty="specialtyList" :is-english="isEnglish" />
|
<Specialty :specialty="specialtyList" :is-english="isEnglish" />
|
||||||
</el-collapse-item>
|
</el-collapse-item>
|
||||||
<el-collapse-item title="Education & Training" name="4">
|
<el-collapse-item :title="$t('resumeInfo:title:Education&Training')" name="4">
|
||||||
<education-training :education-list="doctorInfo.EducationList" :postgraduate-list="doctorInfo.PostgraduateList" :is-english="isEnglish" />
|
<education-training :education-list="doctorInfo.EducationList" :postgraduate-list="doctorInfo.PostgraduateList" :is-english="isEnglish" />
|
||||||
</el-collapse-item>
|
</el-collapse-item>
|
||||||
<el-collapse-item title="Research & Publication" name="5">
|
<el-collapse-item :title="$t('resumeInfo:title:Research&Publication')" name="5">
|
||||||
<research-publication :research-info="doctorInfo.ResearchPublicationView" :is-english="isEnglish" />
|
<research-publication :research-info="doctorInfo.ResearchPublicationView" :is-english="isEnglish" />
|
||||||
|
|
||||||
</el-collapse-item>
|
</el-collapse-item>
|
||||||
<el-collapse-item title="Trial Experience" name="6">
|
<el-collapse-item :title="$t('resumeInfo:title:TrialExperience')" name="6">
|
||||||
<trial-experience v-if="doctorInfo.TrialExperienceView" :trial-experience="doctorInfo.TrialExperienceView" :is-english="isEnglish" />
|
<trial-experience v-if="doctorInfo.TrialExperienceView" :trial-experience="doctorInfo.TrialExperienceView" :is-english="isEnglish" />
|
||||||
</el-collapse-item>
|
</el-collapse-item>
|
||||||
<el-collapse-item title="Credentials" name="7">
|
<el-collapse-item :title="$t('resumeInfo:title:Credentials')" name="7">
|
||||||
<Credentials v-if="doctorInfo.AttachmentList" :attachment-list="doctorInfo.AttachmentList" :doctor-id="doctorId" />
|
<Credentials v-if="doctorInfo.AttachmentList" :attachment-list="doctorInfo.AttachmentList" :doctor-id="doctorId" />
|
||||||
</el-collapse-item>
|
</el-collapse-item>
|
||||||
<el-collapse-item title="Resume" name="8">
|
<el-collapse-item :title="$t('resumeInfo:title:Resume')" name="8">
|
||||||
<Resume v-if="doctorInfo.AttachmentList" :resume-list="doctorInfo.AttachmentList" />
|
<Resume v-if="doctorInfo.AttachmentList" :resume-list="doctorInfo.AttachmentList" />
|
||||||
</el-collapse-item>
|
</el-collapse-item>
|
||||||
<el-collapse-item title="Agreements" name="9">
|
<el-collapse-item :title="$t('resumeInfo:title:Agreements')" name="9">
|
||||||
<Agreements v-if="doctorInfo.AttachmentList" :doctor-info="doctorInfo" />
|
<Agreements v-if="doctorInfo.AttachmentList" :doctor-info="doctorInfo" />
|
||||||
</el-collapse-item>
|
</el-collapse-item>
|
||||||
<el-collapse-item title="Comment" name="10">
|
<el-collapse-item :title="$t('resumeInfo:title:Comment')" name="10">
|
||||||
<Comment :status-list="statusList" />
|
<Comment :status-list="statusList" />
|
||||||
</el-collapse-item>
|
</el-collapse-item>
|
||||||
</el-collapse>
|
</el-collapse>
|
||||||
|
@ -189,7 +189,7 @@ export default {
|
||||||
if (res.Result) {
|
if (res.Result) {
|
||||||
this.holiday = res.Result.InHoliday ? 'Yes' : 'No'
|
this.holiday = res.Result.InHoliday ? 'Yes' : 'No'
|
||||||
this.doctorInfo = res.Result
|
this.doctorInfo = res.Result
|
||||||
this.title = `${this.doctorInfo.BasicInfoView.FirstName} ${this.doctorInfo.BasicInfoView.LastName}'s Details`
|
this.title = `${this.doctorInfo.BasicInfoView.FirstName} ${this.doctorInfo.BasicInfoView.LastName}${this.$t('resumeInfo:title:Details')}`
|
||||||
this.htmlTitle = this.title
|
this.htmlTitle = this.title
|
||||||
this.initStatus()
|
this.initStatus()
|
||||||
this.initEmploymentInfo()
|
this.initEmploymentInfo()
|
||||||
|
|
Loading…
Reference in New Issue