简历问题修复
continuous-integration/drone/push Build is passing Details

uat_us
wangxiaoshuang 2024-11-12 14:59:46 +08:00
parent ede1455bc4
commit f34faa7db3
6 changed files with 10 additions and 6 deletions

View File

@ -57,7 +57,7 @@
>
<template slot-scope="scope">
<span v-if="scope.row.StartTime"
>{{ scope.row.StartTime.split('-')[0] }}-{{
>{{ scope.row.StartTime.split('-')[0] }} ~ {{
scope.row.EndTime ? scope.row.EndTime.split('-')[0] : '至今'
}}</span
>

View File

@ -69,7 +69,9 @@
<template slot-scope="scope">
<span v-if="scope.row.StartTime"
>{{ scope.row.StartTime.split('-')[0] }}-{{
scope.row.EndTime ? scope.row.EndTime.split('-')[0] : ''
scope.row.EndTime
? scope.row.EndTime.split('-')[0]
: $t('curriculumVitae:lineIIcon:soFar')
}}</span
>
</template>

View File

@ -22,7 +22,7 @@
:label="$t('curriculumVitae:continuingTraining:table:time')"
>
<template slot-scope="scope">
<span>{{ scope.row.BeginDateStr }}-{{ scope.row.EndDateStr }}</span>
<span>{{ scope.row.BeginDateStr }} ~ {{ scope.row.EndDateStr }}</span>
</template>
</el-table-column>
<el-table-column

View File

@ -22,7 +22,7 @@
:label="$t('curriculumVitae:EducationalExperience:table:time')"
>
<template slot-scope="scope">
<span>{{ scope.row.BeginDateStr }}-{{ scope.row.EndDateStr }}</span>
<span>{{ scope.row.BeginDateStr }} ~ {{ scope.row.EndDateStr }}</span>
</template>
</el-table-column>
<el-table-column

View File

@ -111,7 +111,7 @@ export default {
this.$emit('update:visible', false)
},
handleAddHoliday() {
if (this.daterange) {
if (this.daterange && this.daterange.length > 0) {
const param = {
DoctorId: this.reviewerId,
StartDate: this.daterange[0],

View File

@ -389,7 +389,9 @@
<template slot-scope="scope">
<span v-if="scope.row.StartTime"
>{{ scope.row.StartTime.split('-')[0] }}-{{
scope.row.EndTime ? scope.row.EndTime.split('-')[0] : ''
scope.row.EndTime
? scope.row.EndTime.split('-')[0]
: $t('curriculumVitae:lineIIcon:soFar')
}}</span
>
</template>