This commit is contained in:
闫晓茹 2024-08-21 15:06:15 +08:00
parent 934043feb4
commit 5d2e7f4b56

View File

@ -40,14 +40,14 @@
v-for="(item, index) in taskSituationlist"
:key="index"
>
<div>
<div @click="goback(item)">
<el-tooltip
class=""
effect="dark"
:content="item.name == '人工审核' ? '待审核数' : '待随访数'"
placement="top"
>
<div class="person" @click="goback">
<div class="person">
<span class="">{{ item.name }}</span>
<el-badge :value="item.count" class="item"></el-badge>
<i class="el-icon-arrow-right"></i>
@ -63,7 +63,7 @@
"
placement="top"
>
<div style="display: flex" @click="gofollowup">
<div style="display: flex">
<el-progress :percentage="item.content"></el-progress>
<span style="float: right; margin: 12px 19px 0 10px"
>{{ item.allCount - item.count }}/{{ item.allCount }}</span
@ -79,7 +79,6 @@
<div class="word">本月签约患者情况</div>
<div id="main1" style="height: 80%" v-if="countydata"></div>
<el-empty description="暂无" style="width: 100%" v-else></el-empty>
</div>
<div class="appbottomtwo">
<div class="word">服务方式</div>
@ -118,20 +117,21 @@ export default {
this.info();
},
methods: {
goback() {
goback(item) {
console.log(item, "item");
if (item.name == "人工审核") {
this.$router.push({
path: "/task/manualReview",
});
},
gofollowup() {
} else {
this.$router.push({
path: "/task/followup",
});
}
},
//
infolist() {
topStatistics().then((res) => {
// console.log(res, "res");
this.list = res.data;
});
taskSituation().then((res) => {