Commit 62fa2cbe authored by 赵啸非's avatar 赵啸非

Merge remote-tracking branch 'origin/master'

parents 2ddfb8e1 07ded1ae
...@@ -192,7 +192,7 @@ export default { ...@@ -192,7 +192,7 @@ export default {
return new Date(year, month, day); return new Date(year, month, day);
}, },
formatteSec(row, column, val) { formatteSec(row, column, val) {
return val ? (val / 60 / 60 / 24).toFixed(3) + "" : "--"; return val ? (val / 60 / 60 / 24).toFixed(2) + "" : "--";
}, },
// 格式化单元格数据 // 格式化单元格数据
formatter(row, column, val) { formatter(row, column, val) {
......
...@@ -96,27 +96,25 @@ export default { ...@@ -96,27 +96,25 @@ export default {
}, },
}, },
{ label: "考勤绩效指标分数", prop: "attendScore", formatter: this.formatter }, { label: "考勤绩效指标分数", prop: "attendScore", },
{ label: "评价绩效指标分数", prop: "reviewScore", formatter: this.formatter }, { label: "评价绩效指标分数", prop: "reviewScore", },
{ label: "投诉绩效指标分数", prop: "reviewScore", formatter: this.formatter }, { label: "投诉绩效指标分数", prop: "complainScore", },
{ label: "办件绩效分数", prop: "workScore", formatter: this.formatter }, { label: "办件绩效分数", prop: "goworkScore", },
{ label: "效能绩效分数", prop: "effectScore", formatter: this.formatter }, { label: "效能绩效分数", prop: "effectScore", },
{ label: "其它绩效分数", prop: "otherScore", formatter: this.formatter }, { label: "其它绩效分数", prop: "otherScore", },
{ {
label: "累计异常分数", label: "累计异常分数",
prop: "errorScore", prop: "errorScore",
formatter: this.formatter,
}, },
{ {
label: "本月得分数", label: "本月得分数",
prop: "totalScore", prop: "totalScore",
formatter: this.formatter,
}, },
{ label: "", prop: "year", formatter: this.formatter }, { label: "", prop: "year", formatter: this.formatter },
{ label: "", prop: "month", formatter: this.formatter }, { label: "", prop: "month", formatter: this.formatter },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment