优化
This commit is contained in:
parent
84418ad8e5
commit
da3de51df7
@ -156,7 +156,7 @@ export default {
|
|||||||
type: 'primary',
|
type: 'primary',
|
||||||
info: !this.info,
|
info: !this.info,
|
||||||
permis: 'changeResult',
|
permis: 'changeResult',
|
||||||
click: this.handleJieguo
|
click: this.handleZhiding
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: '开始评分',
|
name: '开始评分',
|
||||||
|
|||||||
@ -1,7 +1,85 @@
|
|||||||
<!-- -->
|
<!-- -->
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div class="tablePint">
|
||||||
表格
|
<div class="tablePint-title">
|
||||||
|
员工月度绩效计划与评估表员工月度绩效计划与评估表 --部门负责人部门负责人
|
||||||
|
</div>
|
||||||
|
<div class="tablePint-aboult">
|
||||||
|
<div class="tablePint-aboult-item">
|
||||||
|
考核月份
|
||||||
|
</div>
|
||||||
|
<div class="tablePint-aboult-item">
|
||||||
|
2020年9月
|
||||||
|
</div>
|
||||||
|
<div class="tablePint-aboult-item">
|
||||||
|
工号
|
||||||
|
</div>
|
||||||
|
<div class="tablePint-aboult-item">
|
||||||
|
LY81
|
||||||
|
</div>
|
||||||
|
<div class="tablePint-aboult-item">
|
||||||
|
员工姓名
|
||||||
|
</div>
|
||||||
|
<div class="tablePint-aboult-item">
|
||||||
|
熊成强
|
||||||
|
</div>
|
||||||
|
<div class="tablePint-aboult-item">
|
||||||
|
一级部门
|
||||||
|
</div>
|
||||||
|
<div class="tablePint-aboult-item">
|
||||||
|
设计部
|
||||||
|
</div>
|
||||||
|
<div class="tablePint-aboult-item">
|
||||||
|
二级部门
|
||||||
|
</div>
|
||||||
|
<div class="tablePint-aboult-item">
|
||||||
|
/
|
||||||
|
</div>
|
||||||
|
<div class="tablePint-aboult-item">
|
||||||
|
三级部门
|
||||||
|
</div>
|
||||||
|
<div class="tablePint-aboult-item">
|
||||||
|
/
|
||||||
|
</div>
|
||||||
|
<div class="tablePint-aboult-item">
|
||||||
|
职位
|
||||||
|
</div>
|
||||||
|
<div class="tablePint-aboult-item">
|
||||||
|
前端工程师
|
||||||
|
</div>
|
||||||
|
<div class="tablePint-aboult-item">
|
||||||
|
直属上级
|
||||||
|
</div>
|
||||||
|
<div class="tablePint-aboult-item">
|
||||||
|
杨洋
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tablePint-top">
|
||||||
|
<div class="tablePint-top-weidu">
|
||||||
|
考核维度
|
||||||
|
</div>
|
||||||
|
<div class="tablePint-top-mubiao">
|
||||||
|
目标/指标
|
||||||
|
</div>
|
||||||
|
<div class="tablePint-top-guanjian">
|
||||||
|
关键结果
|
||||||
|
</div>
|
||||||
|
<div class="tablePint-top-quanzhong">
|
||||||
|
考核权重
|
||||||
|
</div>
|
||||||
|
<div class="tablePint-top-kaohe">
|
||||||
|
考核结果(员工填写)
|
||||||
|
</div>
|
||||||
|
<div class="tablePint-top-zhishu">
|
||||||
|
直属上级评分(100%)
|
||||||
|
</div>
|
||||||
|
<div class="tablePint-top-defen">
|
||||||
|
得分
|
||||||
|
</div>
|
||||||
|
<div class="tablePint-top-pingfen">
|
||||||
|
评分说明
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -23,5 +101,40 @@ export default {
|
|||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang='less' scoped>
|
<style lang="less" scoped>
|
||||||
|
.tablePint {
|
||||||
|
margin: 10px 10px;
|
||||||
|
font-size: 12px;
|
||||||
|
color: #5c5c5c;
|
||||||
|
border-top: 1px solid #666666;
|
||||||
|
border-left: 1px solid #666666;
|
||||||
|
&-title {
|
||||||
|
.center();
|
||||||
|
height: 50px;
|
||||||
|
border-right: 1px solid #666666;
|
||||||
|
border-bottom: 1px solid #666666;
|
||||||
|
}
|
||||||
|
&-aboult {
|
||||||
|
height: 30px;
|
||||||
|
display: flex;
|
||||||
|
&-item {
|
||||||
|
flex: 1;
|
||||||
|
.center();
|
||||||
|
border-right: 1px solid #666666;
|
||||||
|
border-bottom: 1px solid #666666;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&-top {
|
||||||
|
display: flex;
|
||||||
|
> div {
|
||||||
|
flex-shrink: 0;
|
||||||
|
.center();
|
||||||
|
border-right: 1px solid #666666;
|
||||||
|
border-bottom: 1px solid #666666;
|
||||||
|
}
|
||||||
|
&-weidu {
|
||||||
|
width: 100px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
Loading…
x
Reference in New Issue
Block a user