This commit is contained in:
parent
0b9cba6a6f
commit
67da4720db
|
@ -157,7 +157,7 @@ const getOption = () => {
|
||||||
type: "value",
|
type: "value",
|
||||||
scale: true,
|
scale: true,
|
||||||
min: 0,
|
min: 0,
|
||||||
name: "计划生育补贴金额/元",
|
name: "计划生育补贴金额/万元",
|
||||||
splitLine: {
|
splitLine: {
|
||||||
show: false,
|
show: false,
|
||||||
lineStyle: {
|
lineStyle: {
|
||||||
|
|
|
@ -459,7 +459,8 @@ const getData = () => {
|
||||||
// 计划生育
|
// 计划生育
|
||||||
res.data.familyPlanning.familyPlanningData.forEach((element) => {
|
res.data.familyPlanning.familyPlanningData.forEach((element) => {
|
||||||
data.centerBottom1.push(element.jhsyrs); // 人次
|
data.centerBottom1.push(element.jhsyrs); // 人次
|
||||||
data.centerBottom2.push(element.jhsybtje); // 金额
|
data.centerBottom2.push((element.jhsybtje / 10000).toFixed(0)); // 金额
|
||||||
|
// data.centerBottom2.push(element.jhsybtje); // 金额
|
||||||
});
|
});
|
||||||
// 年份
|
// 年份
|
||||||
data.centerBottomYear = res.data.familyPlanning.year;
|
data.centerBottomYear = res.data.familyPlanning.year;
|
||||||
|
|
Loading…
Reference in New Issue