This commit is contained in:
parent
6b4538aab6
commit
060202c4d1
|
@ -612,12 +612,9 @@ const getData = async () => {
|
||||||
// 吹哨人
|
// 吹哨人
|
||||||
data.whistleblower = res.data.whistleblower;
|
data.whistleblower = res.data.whistleblower;
|
||||||
// 预警线索
|
// 预警线索
|
||||||
const dataArray = res.data.whistleblower.culeTotal.data;
|
data.culeTotal = res.data.whistleblower.culeTotal.data.slice(-1)[0];
|
||||||
const dataArray1 = res.data.whistleblower.gaCules.data;
|
data.gaCules = res.data.whistleblower.gaCules.data.slice(-1)[0];
|
||||||
const dataArray2 = res.data.whistleblower.jcgCules.data;
|
data.jcgCules = res.data.whistleblower.jcgCules.data.slice(-1)[0];
|
||||||
data.culeTotal = dataArray[dataArray.length - 1];
|
|
||||||
data.gaCules = dataArray1[dataArray1.length - 1];
|
|
||||||
data.jcgCules = dataArray2[dataArray2.length - 1];
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue