简历问题修复
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">
|
<template slot-scope="scope">
|
||||||
<span v-if="scope.row.StartTime"
|
<span v-if="scope.row.StartTime"
|
||||||
>{{ scope.row.StartTime.split('-')[0] }}-{{
|
>{{ scope.row.StartTime.split('-')[0] }} ~ {{
|
||||||
scope.row.EndTime ? scope.row.EndTime.split('-')[0] : '至今'
|
scope.row.EndTime ? scope.row.EndTime.split('-')[0] : '至今'
|
||||||
}}</span
|
}}</span
|
||||||
>
|
>
|
||||||
|
|
|
@ -69,7 +69,9 @@
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<span v-if="scope.row.StartTime"
|
<span v-if="scope.row.StartTime"
|
||||||
>{{ scope.row.StartTime.split('-')[0] }}-{{
|
>{{ 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
|
}}</span
|
||||||
>
|
>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
:label="$t('curriculumVitae:continuingTraining:table:time')"
|
:label="$t('curriculumVitae:continuingTraining:table:time')"
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<span>{{ scope.row.BeginDateStr }}-{{ scope.row.EndDateStr }}</span>
|
<span>{{ scope.row.BeginDateStr }} ~ {{ scope.row.EndDateStr }}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
:label="$t('curriculumVitae:EducationalExperience:table:time')"
|
:label="$t('curriculumVitae:EducationalExperience:table:time')"
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<span>{{ scope.row.BeginDateStr }}-{{ scope.row.EndDateStr }}</span>
|
<span>{{ scope.row.BeginDateStr }} ~ {{ scope.row.EndDateStr }}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
|
|
@ -111,7 +111,7 @@ export default {
|
||||||
this.$emit('update:visible', false)
|
this.$emit('update:visible', false)
|
||||||
},
|
},
|
||||||
handleAddHoliday() {
|
handleAddHoliday() {
|
||||||
if (this.daterange) {
|
if (this.daterange && this.daterange.length > 0) {
|
||||||
const param = {
|
const param = {
|
||||||
DoctorId: this.reviewerId,
|
DoctorId: this.reviewerId,
|
||||||
StartDate: this.daterange[0],
|
StartDate: this.daterange[0],
|
||||||
|
|
|
@ -389,7 +389,9 @@
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<span v-if="scope.row.StartTime"
|
<span v-if="scope.row.StartTime"
|
||||||
>{{ scope.row.StartTime.split('-')[0] }}-{{
|
>{{ 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
|
}}</span
|
||||||
>
|
>
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Reference in New Issue