修改
This commit is contained in:
parent
5e59f9721a
commit
23ecb7e9ab
@ -35,25 +35,31 @@
|
|||||||
v-for="(item, index) in taskSituationlist"
|
v-for="(item, index) in taskSituationlist"
|
||||||
:key="index"
|
:key="index"
|
||||||
>
|
>
|
||||||
<div class="person" @click="goback">
|
|
||||||
<el-tooltip
|
<el-tooltip
|
||||||
class=""
|
class=""
|
||||||
effect="dark"
|
effect="dark"
|
||||||
:content="item.name == '人工审核' ? '已审核数' : '已随访数'"
|
:content="item.name == '人工审核' ? '已审核数' : '已随访数'"
|
||||||
placement="top"
|
placement="top"
|
||||||
>
|
>
|
||||||
|
<div>
|
||||||
|
<div class="person" @click="goback">
|
||||||
<span class="">{{ item.name }}</span>
|
<span class="">{{ item.name }}</span>
|
||||||
</el-tooltip>
|
<el-badge
|
||||||
<el-badge :value="item.allCount-item.count" class="item"></el-badge>
|
:value="item.allCount - item.count"
|
||||||
|
class="item"
|
||||||
|
></el-badge>
|
||||||
<i class="el-icon-arrow-right"></i>
|
<i class="el-icon-arrow-right"></i>
|
||||||
</div>
|
</div>
|
||||||
<div style="display: flex" @click="goback">
|
<div style="display: flex" @click="goback">
|
||||||
<el-progress :percentage="item.content"></el-progress>
|
<el-progress :percentage="item.content"></el-progress>
|
||||||
|
|
||||||
<span style="float: right; margin: 12px 19px 0 10px"
|
<span style="float: right; margin: 12px 19px 0 10px"
|
||||||
>{{ item.count }}/{{ item.allCount }}</span
|
>{{ item.count }}/{{ item.allCount }}</span
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</el-tooltip>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="appbottom">
|
<div class="appbottom">
|
||||||
@ -90,9 +96,9 @@ export default {
|
|||||||
};
|
};
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
this.getlist();
|
||||||
this.infolist();
|
this.infolist();
|
||||||
this.info();
|
this.info();
|
||||||
this.getlist();
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
goback() {
|
goback() {
|
||||||
@ -132,7 +138,7 @@ export default {
|
|||||||
});
|
});
|
||||||
var proportionlist = [];
|
var proportionlist = [];
|
||||||
res.data.forEach((e) => {
|
res.data.forEach((e) => {
|
||||||
e.proportion= e.proportion*100
|
e.proportion = e.proportion * 100;
|
||||||
proportionlist.push(e.proportion);
|
proportionlist.push(e.proportion);
|
||||||
});
|
});
|
||||||
// return
|
// return
|
||||||
@ -212,6 +218,7 @@ export default {
|
|||||||
yAxisIndex: 1,
|
yAxisIndex: 1,
|
||||||
tooltip: {
|
tooltip: {
|
||||||
valueFormatter: function (value) {
|
valueFormatter: function (value) {
|
||||||
|
console.log(value, "value");
|
||||||
return value + " %";
|
return value + " %";
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user