|
@@ -49,7 +49,7 @@
|
|
|
<div style="color:rgb(255 106 0);">{{ scope.row.score }}</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="事由" align="center" prop="question" />
|
|
|
+ <el-table-column label="事由" show-overflow-tooltip align="center" prop="question" />
|
|
|
<el-table-column label="整改时间" align="center" prop="rectificationTime" width="180">
|
|
|
<template slot-scope="scope">
|
|
|
<span>
|
|
@@ -104,7 +104,7 @@ export default {
|
|
|
return {
|
|
|
peopleList: [],
|
|
|
peopleList2: [],
|
|
|
- peopleList3: [],
|
|
|
+ peopleList3: []
|
|
|
};
|
|
|
},
|
|
|
created() {
|
|
@@ -159,7 +159,7 @@ export default {
|
|
|
},
|
|
|
series: [
|
|
|
{
|
|
|
- name: "整体完成比例",
|
|
|
+ name: "",
|
|
|
type: "pie",
|
|
|
radius: "80%",
|
|
|
label: {
|
|
@@ -182,11 +182,6 @@ export default {
|
|
|
: res.data[0].daiyanshou,
|
|
|
name: "待验收"
|
|
|
},
|
|
|
- {
|
|
|
- value:
|
|
|
- res.data[0].yitongguo == 0 ? null : res.data[0].yitongguo,
|
|
|
- name: "已通过"
|
|
|
- },
|
|
|
{
|
|
|
value:
|
|
|
res.data[0].daichuli == 0 ? null : res.data[0].daichuli,
|
|
@@ -198,6 +193,11 @@ export default {
|
|
|
? null
|
|
|
: res.data[0].weitongguo,
|
|
|
name: "未通过"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value:
|
|
|
+ res.data[0].yitongguo == 0 ? null : res.data[0].yitongguo,
|
|
|
+ name: "已通过"
|
|
|
}
|
|
|
],
|
|
|
emphasis: {
|
|
@@ -254,7 +254,7 @@ export default {
|
|
|
// },
|
|
|
series: [
|
|
|
{
|
|
|
- name: this.peopleList3[i].name,
|
|
|
+ name: "",
|
|
|
type: "pie",
|
|
|
radius: "60%",
|
|
|
center: ["50%", "50%"],
|
|
@@ -273,17 +273,17 @@ export default {
|
|
|
data: [
|
|
|
{
|
|
|
value:
|
|
|
- this.peopleList3[i].daichuli == 0
|
|
|
+ this.peopleList3[i].daiyanshou == 0
|
|
|
? null
|
|
|
- : this.peopleList3[i].daichuli,
|
|
|
- name: "待处理"
|
|
|
+ : this.peopleList3[i].daiyanshou,
|
|
|
+ name: "待验收"
|
|
|
},
|
|
|
{
|
|
|
value:
|
|
|
- this.peopleList3[i].daiyanshou == 0
|
|
|
+ this.peopleList3[i].daichuli == 0
|
|
|
? null
|
|
|
- : this.peopleList3[i].daiyanshou,
|
|
|
- name: "待验收"
|
|
|
+ : this.peopleList3[i].daichuli,
|
|
|
+ name: "待处理"
|
|
|
},
|
|
|
{
|
|
|
value:
|
|
@@ -318,10 +318,12 @@ export default {
|
|
|
rowclick(row) {
|
|
|
console.log(row.inspectedUnitId);
|
|
|
this.$router
|
|
|
- .push({ path: "/bdglregular/regularinfo", query: { id:row.inspectedUnitId } })
|
|
|
+ .push({
|
|
|
+ path: "/bdglregular/regularinfo",
|
|
|
+ query: { id: row.inspectedUnitId }
|
|
|
+ })
|
|
|
.catch(() => {});
|
|
|
-
|
|
|
- },
|
|
|
+ }
|
|
|
}
|
|
|
};
|
|
|
</script>
|
|
@@ -370,15 +372,16 @@ export default {
|
|
|
height: 30px;
|
|
|
font-size: 18px;
|
|
|
color: #fff;
|
|
|
- background-image: url("../../../assets/images/dtitle.png");
|
|
|
+ background-image: url("../../../assets/images/组 21.png");
|
|
|
background-repeat: no-repeat;
|
|
|
margin-top: 9px;
|
|
|
line-height: 30px;
|
|
|
position: relative;
|
|
|
+ margin-left:1%;
|
|
|
}
|
|
|
.head-left-title span {
|
|
|
position: absolute;
|
|
|
- left: 80px;
|
|
|
+ left: 36px;
|
|
|
}
|
|
|
|
|
|
::v-deep .el-table__empty-block {
|
|
@@ -423,5 +426,4 @@ export default {
|
|
|
width: 90%;
|
|
|
height: 380px;
|
|
|
}
|
|
|
-
|
|
|
</style>
|