|
|
|
@ -5,26 +5,37 @@
|
|
|
|
|
<div class="visual_conTop_box visual_conTop2">
|
|
|
|
|
<div>
|
|
|
|
|
<h3>入网总企业数</h3>
|
|
|
|
|
<p style="color: #F3DB5C;padding-left: 15px"> 8</p>
|
|
|
|
|
<p style="color: #F3DB5C;padding-left: 15px"> {{statNmapCount.sumCount}}</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="visual_conTop_box visual_conTop2"
|
|
|
|
|
>
|
|
|
|
|
<div>
|
|
|
|
|
<h3>本期已填报数</h3>
|
|
|
|
|
<p style="color: #4ADEFE;padding-left: 15px"> 1</p>
|
|
|
|
|
<p style="color: #4ADEFE;padding-left: 15px"> {{statNmapCount.reportedCount}}</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="visual_conTop_box visual_conTop2">
|
|
|
|
|
<div>
|
|
|
|
|
<h3>本期未填报数</h3>
|
|
|
|
|
<p style="color: #d56e6e;padding-left: 15px"> 7</p>
|
|
|
|
|
<p style="color: #d56e6e;padding-left: 15px"> {{statNmapCount.notReportedCount}}</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="clear"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<Echart
|
|
|
|
|
:options="corpOptions1"
|
|
|
|
|
style="width: 33%;display: inline-block;height: 200px;margin-top: 5px;"
|
|
|
|
|
></Echart>
|
|
|
|
|
<Echart
|
|
|
|
|
:options="corpOptions2"
|
|
|
|
|
style="width: 33%;display: inline-block;height: 200px;margin-top: 5px;"
|
|
|
|
|
></Echart>
|
|
|
|
|
<Echart
|
|
|
|
|
:options="corpOptions3"
|
|
|
|
|
style="width: 33%;display: inline-block;height: 200px;margin-top: 5px;"
|
|
|
|
|
></Echart>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
@ -35,11 +46,21 @@ export default {
|
|
|
|
|
name: "center-stat",
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
corpOptions1: {},
|
|
|
|
|
corpOptions2: {},
|
|
|
|
|
corpOptions3: {},
|
|
|
|
|
pageflag: false,
|
|
|
|
|
data: {
|
|
|
|
|
productCount: 0,
|
|
|
|
|
fjProductCount: 0,
|
|
|
|
|
fjCorpCount: 0,
|
|
|
|
|
statNmapCount: {
|
|
|
|
|
sumCount:0,
|
|
|
|
|
reportedCount:0,
|
|
|
|
|
notReportedCount:0,
|
|
|
|
|
oneReportedCount:0,
|
|
|
|
|
oneNotReportedCount:0,
|
|
|
|
|
twoReportedCount:0,
|
|
|
|
|
twoNotReportedCount:0,
|
|
|
|
|
threeReportedCount:0,
|
|
|
|
|
threeNotReportedCount:0,
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
@ -50,17 +71,203 @@ export default {
|
|
|
|
|
methods: {
|
|
|
|
|
getData() {
|
|
|
|
|
this.pageflag = true;
|
|
|
|
|
currentGET("nmapCount").then((res) => {
|
|
|
|
|
currentGET("getNetworkFirmCount").then((res) => {
|
|
|
|
|
// 复制过来的返回有两个层级 用三元智能判断转换
|
|
|
|
|
res = typeof res.data === "undefined" ? res : res.data
|
|
|
|
|
if (res.code == 20000) {
|
|
|
|
|
this.data = res.data;
|
|
|
|
|
this.statNmapCount = res.data;
|
|
|
|
|
} else {
|
|
|
|
|
this.pageflag = false;
|
|
|
|
|
this.$Message.warning(res.msg);
|
|
|
|
|
}
|
|
|
|
|
this.init()
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
init() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.corpOptions1 = {
|
|
|
|
|
title: {
|
|
|
|
|
subtext: '生产企业',
|
|
|
|
|
color: "#fff",
|
|
|
|
|
left: 'center',
|
|
|
|
|
textStyle: {},
|
|
|
|
|
subtextStyle: {
|
|
|
|
|
color: "#fff"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
tooltip: {
|
|
|
|
|
trigger: 'item'
|
|
|
|
|
},
|
|
|
|
|
series: [
|
|
|
|
|
{
|
|
|
|
|
name: '生产企业',
|
|
|
|
|
type: 'pie',
|
|
|
|
|
radius: '50%',
|
|
|
|
|
data: [
|
|
|
|
|
{value: this.statNmapCount.oneReportedCount, name: '已上报'},
|
|
|
|
|
{value: this.statNmapCount.oneNotReportedCount, name: '未上报'},
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rich: {
|
|
|
|
|
b: {
|
|
|
|
|
color: "#fff",
|
|
|
|
|
fontSize: 12,
|
|
|
|
|
lineHeight: 26,
|
|
|
|
|
},
|
|
|
|
|
c: {
|
|
|
|
|
color: "#31ABE3",
|
|
|
|
|
fontSize: 14,
|
|
|
|
|
},
|
|
|
|
|
per: {
|
|
|
|
|
color: "#31ABE3",
|
|
|
|
|
fontSize: 14,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
label: {
|
|
|
|
|
|
|
|
|
|
normal: {
|
|
|
|
|
show: true,
|
|
|
|
|
position: 'inner',
|
|
|
|
|
formatter: "{b}/{c} ",
|
|
|
|
|
color: "#fff",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
emphasis: {
|
|
|
|
|
itemStyle: {
|
|
|
|
|
shadowBlur: 10,
|
|
|
|
|
shadowOffsetX: 0,
|
|
|
|
|
shadowColor: 'rgba(0, 0, 0, 0.5)'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
};
|
|
|
|
|
this.corpOptions2 = {
|
|
|
|
|
title: {
|
|
|
|
|
subtext: '经营企业',
|
|
|
|
|
color: "#fff",
|
|
|
|
|
left: 'center',
|
|
|
|
|
textStyle: {},
|
|
|
|
|
subtextStyle: {
|
|
|
|
|
color: "#fff"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
tooltip: {
|
|
|
|
|
trigger: 'item'
|
|
|
|
|
},
|
|
|
|
|
series: [
|
|
|
|
|
{
|
|
|
|
|
name: '经营企业',
|
|
|
|
|
type: 'pie',
|
|
|
|
|
radius: '50%',
|
|
|
|
|
data: [
|
|
|
|
|
{value: this.statNmapCount.twoReportedCount, name: '已上报'},
|
|
|
|
|
{value: this.statNmapCount.twoNotReportedCount, name: '未上报'},
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rich: {
|
|
|
|
|
b: {
|
|
|
|
|
color: "#fff",
|
|
|
|
|
fontSize: 12,
|
|
|
|
|
lineHeight: 26,
|
|
|
|
|
},
|
|
|
|
|
c: {
|
|
|
|
|
color: "#31ABE3",
|
|
|
|
|
fontSize: 14,
|
|
|
|
|
},
|
|
|
|
|
per: {
|
|
|
|
|
color: "#31ABE3",
|
|
|
|
|
fontSize: 14,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
label: {
|
|
|
|
|
|
|
|
|
|
normal: {
|
|
|
|
|
show: true,
|
|
|
|
|
position: 'inner',
|
|
|
|
|
formatter: "{b}/{c} ",
|
|
|
|
|
color: "#fff",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
emphasis: {
|
|
|
|
|
itemStyle: {
|
|
|
|
|
shadowBlur: 10,
|
|
|
|
|
shadowOffsetX: 0,
|
|
|
|
|
shadowColor: 'rgba(0, 0, 0, 0.5)'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
};
|
|
|
|
|
this.corpOptions3 = {
|
|
|
|
|
title: {
|
|
|
|
|
subtext: '医疗机构',
|
|
|
|
|
color: "#fff",
|
|
|
|
|
left: 'center',
|
|
|
|
|
textStyle: {},
|
|
|
|
|
subtextStyle: {
|
|
|
|
|
color: "#fff"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
tooltip: {
|
|
|
|
|
trigger: 'item'
|
|
|
|
|
},
|
|
|
|
|
series: [
|
|
|
|
|
{
|
|
|
|
|
name: '医疗机构',
|
|
|
|
|
type: 'pie',
|
|
|
|
|
radius: '50%',
|
|
|
|
|
data: [
|
|
|
|
|
{value: this.statNmapCount.threeReportedCount, name: '已上报'},
|
|
|
|
|
{value: this.statNmapCount.threeNotReportedCount, name: '未上报'},
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rich: {
|
|
|
|
|
b: {
|
|
|
|
|
color: "#fff",
|
|
|
|
|
fontSize: 12,
|
|
|
|
|
lineHeight: 26,
|
|
|
|
|
},
|
|
|
|
|
c: {
|
|
|
|
|
color: "#31ABE3",
|
|
|
|
|
fontSize: 14,
|
|
|
|
|
},
|
|
|
|
|
per: {
|
|
|
|
|
color: "#31ABE3",
|
|
|
|
|
fontSize: 14,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
label: {
|
|
|
|
|
|
|
|
|
|
normal: {
|
|
|
|
|
show: true,
|
|
|
|
|
position: 'inner',
|
|
|
|
|
formatter: "{b}/{c} ",
|
|
|
|
|
color: "#fff",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
emphasis: {
|
|
|
|
|
itemStyle: {
|
|
|
|
|
shadowBlur: 10,
|
|
|
|
|
shadowOffsetX: 0,
|
|
|
|
|
shadowColor: 'rgba(0, 0, 0, 0.5)'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|