You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.1 KiB
53 lines
1.1 KiB
<template>
|
|
<div>
|
|
<div class="breadcrumb">
|
|
<Breadcrumb :list="breadcrumbList"/>
|
|
</div>
|
|
<Personnel/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Breadcrumb from '@/views/dataBoard/satisfactionEval/components/Breadcrumb'
|
|
import Personnel from '@/views/dataBoard/cpts/personnel'
|
|
export default {
|
|
name: "dissatisfiedPersonnelDetail",
|
|
components: {
|
|
Breadcrumb,
|
|
Personnel
|
|
},
|
|
data() {
|
|
return {
|
|
breadcrumbList: [{
|
|
path: '/dataBoard/satisfactionEval/index',
|
|
name: '满意度评价'
|
|
}, {
|
|
path: '/dataBoard/satisfactionEval/dissatisfiedPersonnel',
|
|
name: '画像匹配同类不满意人员'
|
|
}, {
|
|
path: '',
|
|
name: ''
|
|
}],
|
|
}
|
|
},
|
|
mounted() {
|
|
this.$set(this.breadcrumbList[2], 'name', this.$route.query.name)
|
|
this.breadcrumbList[2].name = this.$route.query.name
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.sub-title {
|
|
background: url("@/assets/images/manyidu/icon_fk.png") no-repeat left center;
|
|
font-size: 18px;
|
|
font-weight: 500;
|
|
color: #FFFFFF;
|
|
line-height: 22px;
|
|
padding-left: 26px;
|
|
margin-bottom: 20px;
|
|
}
|
|
.breadcrumb {
|
|
margin-bottom: 25px;
|
|
}
|
|
</style>
|