简历问题修复
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
ede1455bc4
commit
f34faa7db3
|
@ -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
|
||||
>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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],
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue