修改
This commit is contained in:
parent
934043feb4
commit
5d2e7f4b56
@ -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>
|
||||
@ -108,8 +107,8 @@ export default {
|
||||
list: {},
|
||||
namelist: [],
|
||||
taskSituationlist: [],
|
||||
countydata:[],
|
||||
arrlist:[],
|
||||
countydata: [],
|
||||
arrlist: [],
|
||||
};
|
||||
},
|
||||
mounted() {
|
||||
@ -118,20 +117,21 @@ export default {
|
||||
this.info();
|
||||
},
|
||||
methods: {
|
||||
goback() {
|
||||
this.$router.push({
|
||||
path: "/task/manualReview",
|
||||
});
|
||||
},
|
||||
gofollowup() {
|
||||
this.$router.push({
|
||||
path: "/task/followup",
|
||||
});
|
||||
goback(item) {
|
||||
console.log(item, "item");
|
||||
if (item.name == "人工审核") {
|
||||
this.$router.push({
|
||||
path: "/task/manualReview",
|
||||
});
|
||||
} else {
|
||||
this.$router.push({
|
||||
path: "/task/followup",
|
||||
});
|
||||
}
|
||||
},
|
||||
// 上部分
|
||||
infolist() {
|
||||
topStatistics().then((res) => {
|
||||
// console.log(res, "res");
|
||||
this.list = res.data;
|
||||
});
|
||||
taskSituation().then((res) => {
|
||||
@ -146,7 +146,7 @@ export default {
|
||||
signPatientCount().then((res) => {
|
||||
// x轴
|
||||
res.data.forEach((e) => {
|
||||
this. countydata.push(e.time);
|
||||
this.countydata.push(e.time);
|
||||
});
|
||||
// 当月新增患者数量
|
||||
var countydatay = [];
|
||||
@ -259,7 +259,7 @@ export default {
|
||||
},
|
||||
info() {
|
||||
serviceModeStatistics().then((res) => {
|
||||
this. arrlist = [];
|
||||
this.arrlist = [];
|
||||
res.data.forEach((element) => {
|
||||
this.arrlist.push({
|
||||
value: element.count, //将数组的conut值赋给value
|
||||
|
||||
Loading…
Reference in New Issue
Block a user