This commit is contained in:
duanxiaohai 2024-05-27 14:56:38 +08:00
parent 0057f481e4
commit 9bad6aa13e
1 changed files with 25 additions and 11 deletions

View File

@ -72,12 +72,12 @@
</div> </div>
<div class="rolling"> <div class="rolling">
<div <div
v-for="(item, index) in 20" v-for="(item, index) in data.lifeAssistance.subsidyInformation"
:key="index" :key="index"
class="fundingContent" class="fundingContent"
> >
<span class="spot">城乡居民最低生活保障金</span> <span class="spot">{{ item.btsx }}</span>
<span class="spot">99,126,474</span> <span class="spot">{{ item.btje }}</span>
<!-- <span class="spot">70.88</span> --> <!-- <span class="spot">70.88</span> -->
</div> </div>
</div> </div>
@ -144,12 +144,12 @@
捐赠人次: {{ item.jzrc }} 捐赠人次: {{ item.jzrc }}
</div> </div>
</div> </div>
</div>
<div class="czrBox"> <div class="czrBox">
<div class="situation situation3"></div> <div class="situation situation3"></div>
</div> </div>
</div> </div>
</div> </div>
</div>
<!-- <eBubble></eBubble> --> <!-- <eBubble></eBubble> -->
</div> </div>
</div> </div>
@ -226,22 +226,35 @@ const data = reactive({
], ],
}, // }, //
}); });
//
const addThousandSeparator = (numberString) => {
return parseInt(numberString.trim(), 10).toLocaleString("en-US");
};
const getData = async () => { const getData = async () => {
await http.get("/api/ggfwyth/succour").then((res) => { await http.get("/api/ggfwyth/succour").then((res) => {
if (res.code == 200) { if (res.code == 200) {
console.log(res.data); console.log(res.data);
// //
// data.education.data[0] = res.data.specialAssistance.education.data[0];
// && // &&
data.education.data = res.data.specialAssistance.education.data;
data.education.year = res.data.specialAssistance.education.year;
// && // &&
data.housing.data = res.data.specialAssistance.housing.data;
data.housing.year = res.data.specialAssistance.housing.year;
// //
// //
// //
data.lifeAssistance.subsidyInformation =
res.data.lifeAssistance.subsidyInformation;
res.data.lifeAssistance.subsidyInformation.forEach((item, index) => {
data.lifeAssistance.subsidyInformation[index].btje =
addThousandSeparator(item.btje);
});
// //
// && // &&
// //
data.diversification.hszhxms = res.data.diversification.hszhxms data.diversification.housing = res.data.diversification.housing;
} }
}); });
}; };
@ -769,7 +782,7 @@ onBeforeMount(() => {
.czr-bj { .czr-bj {
width: 529px; width: 529px;
height: 350px; // height: 350px;
// height: calc(100% - 26px); // height: calc(100% - 26px);
background: rgba(0, 103, 165, 0.18); background: rgba(0, 103, 165, 0.18);
box-shadow: inset 0px 0px 58px 0px rgba(37, 175, 252, 0.47); box-shadow: inset 0px 0px 58px 0px rgba(37, 175, 252, 0.47);
@ -780,14 +793,14 @@ onBeforeMount(() => {
.czrBox { .czrBox {
height: 118px; height: 118px;
.column { .column {
height: calc(100% - 26px); // height: calc(100% - 26px);
overflow-y: auto; overflow-y: auto;
font-size: 14px; font-size: 14px;
color: #ffffff; color: #ffffff;
padding-left: 18px; padding-left: 18px;
padding-right: 18px; padding-right: 18px;
} }
}
.situation { .situation {
width: 495px; width: 495px;
@ -808,6 +821,7 @@ onBeforeMount(() => {
background-image: url(@/assets/images/work/dyh1.png); background-image: url(@/assets/images/work/dyh1.png);
} }
} }
}
.school { .school {
display: flex; display: flex;
flex-direction: column; flex-direction: column;