Merge branch 'main' of git.zdool.com:xs/ggfwjsc
This commit is contained in:
commit
472c64bedb
|
@ -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>
|
||||||
|
@ -131,23 +131,23 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="czrBox">
|
<div class="czrBox">
|
||||||
<div class="situation situation2"></div>
|
<div class="situation situation2"></div>
|
||||||
</div>
|
|
||||||
<div class="czrBox">
|
|
||||||
<div class="situation situation3"></div>
|
|
||||||
<div class="column">
|
<div class="column">
|
||||||
<div v-for="item in data.diversification.hszhxms">
|
<div v-for="item in data.diversification.hszhxms">
|
||||||
发起单位: {{ item.fqdw }}
|
发起单位: {{ item.fqdw }}
|
||||||
<br>
|
<br />
|
||||||
项目名称: {{ item.xmmc }}
|
项目名称: {{ item.xmmc }}
|
||||||
<br>
|
<br />
|
||||||
公众筹款金额(元): {{ item.gzzcje }}
|
公众筹款金额(元): {{ item.gzzcje }}
|
||||||
<br>
|
<br />
|
||||||
捐赠支出金额: {{ item.jzzcje }}
|
捐赠支出金额: {{ item.jzzcje }}
|
||||||
<br>
|
<br />
|
||||||
捐赠人次: {{ item.jzrc }}
|
捐赠人次: {{ item.jzrc }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="czrBox">
|
||||||
|
<div class="situation situation3"></div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- <eBubble></eBubble> -->
|
<!-- <eBubble></eBubble> -->
|
||||||
|
@ -226,21 +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;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
@ -768,8 +782,8 @@ onBeforeMount(() => {
|
||||||
|
|
||||||
.czr-bj {
|
.czr-bj {
|
||||||
width: 529px;
|
width: 529px;
|
||||||
|
// height: 350px;
|
||||||
// height: calc(100% - 26px);
|
// height: calc(100% - 26px);
|
||||||
// height: 200px;
|
|
||||||
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);
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
|
@ -800,12 +814,13 @@ onBeforeMount(() => {
|
||||||
}
|
}
|
||||||
|
|
||||||
.situation2 {
|
.situation2 {
|
||||||
background-image: url(@/assets/images/work/dyh1.png);
|
background-image: url(@/assets/images/work/dyh2.png);
|
||||||
}
|
}
|
||||||
|
|
||||||
.situation3 {
|
.situation3 {
|
||||||
background-image: url(@/assets/images/work/dyh2.png);
|
background-image: url(@/assets/images/work/dyh1.png);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
.school {
|
.school {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
Loading…
Reference in New Issue