This commit is contained in:
闫晓茹 2024-08-16 11:43:04 +08:00
parent bf8e787bf6
commit a47895cff1

View File

@ -144,15 +144,17 @@ export default {
res.data.forEach((e) => { res.data.forEach((e) => {
countydata.push(e.time); countydata.push(e.time);
}); });
//
var countydatay = []; var countydatay = [];
res.data.forEach((e) => { res.data.forEach((e) => {
countydatay.push(e.signPatientCount); countydatay.push(e.patientCount);
}); });
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);
}); });
//
var signPatientCountlist = []; var signPatientCountlist = [];
res.data.forEach((e) => { res.data.forEach((e) => {
signPatientCountlist.push(e.signPatientCount); signPatientCountlist.push(e.signPatientCount);