优化
This commit is contained in:
parent
088a427770
commit
33295f9faa
Binary file not shown.
|
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 4.0 KiB |
@ -5,8 +5,8 @@
|
|||||||
<img :src="obj.src|| ''" :onerror="defaultImg" alt="">
|
<img :src="obj.src|| ''" :onerror="defaultImg" alt="">
|
||||||
</div>
|
</div>
|
||||||
<div v-if="isShow" class="header-title-right commonFont">
|
<div v-if="isShow" class="header-title-right commonFont">
|
||||||
<span style="font-size:14px;">{{obj.name || "熊成强"}}</span>
|
<span v-if="obj.name" style="font-size:14px;">{{obj.name || "熊成强"}}</span>
|
||||||
<span style="font-size:12px;">{{obj.departmentName || "技术部门"}}</span>
|
<span v-if="obj.departmentName" style="font-size:12px;">{{obj.departmentName || "技术部门"}}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@ -45,6 +45,7 @@ export default {
|
|||||||
// margin: 0 0 10PX 0;
|
// margin: 0 0 10PX 0;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
&-img{
|
&-img{
|
||||||
width: 40px;
|
width: 40px;
|
||||||
height: 40px;
|
height: 40px;
|
||||||
|
|||||||
@ -186,6 +186,7 @@ export default {
|
|||||||
props: {
|
props: {
|
||||||
value: 'startId',
|
value: 'startId',
|
||||||
label: 'time',
|
label: 'time',
|
||||||
|
expandTrigger: 'hover',
|
||||||
level: true
|
level: true
|
||||||
},
|
},
|
||||||
startId: [],
|
startId: [],
|
||||||
|
|||||||
@ -95,6 +95,13 @@
|
|||||||
label="姓名"
|
label="姓名"
|
||||||
align='center'
|
align='center'
|
||||||
>
|
>
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<div>
|
||||||
|
<InfoHeader :obj="{
|
||||||
|
src:scope.row.avatar,
|
||||||
|
name:scope.row.staffName }" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="departmentName"
|
prop="departmentName"
|
||||||
@ -212,7 +219,7 @@ import PopupRight from '@/components/PopupRight'
|
|||||||
import EvaluationTeamFilter from '@/components/EvaluationTeamFilter'
|
import EvaluationTeamFilter from '@/components/EvaluationTeamFilter'
|
||||||
import ChooseInitiate from '@/components/ChooseInitiate'
|
import ChooseInitiate from '@/components/ChooseInitiate'
|
||||||
import popupRemovePerson from '@/components/popupPerson'
|
import popupRemovePerson from '@/components/popupPerson'
|
||||||
|
import InfoHeader from '@/components/InfoHeader'
|
||||||
import { apiManagerDetail, apiChartList, apiAssessManagerToScore } from '@/api/assessment'
|
import { apiManagerDetail, apiChartList, apiAssessManagerToScore } from '@/api/assessment'
|
||||||
import { getStartsData } from '@/api/report'
|
import { getStartsData } from '@/api/report'
|
||||||
let id = 0
|
let id = 0
|
||||||
@ -271,7 +278,8 @@ export default {
|
|||||||
popupRemovePerson,
|
popupRemovePerson,
|
||||||
PopupRight,
|
PopupRight,
|
||||||
EvaluationTeamFilter,
|
EvaluationTeamFilter,
|
||||||
ChooseInitiate
|
ChooseInitiate,
|
||||||
|
InfoHeader
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
formTitle () {
|
formTitle () {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user