This commit is contained in:
duanxiaohai 2024-05-21 09:29:18 +08:00
parent 8cdbd3c39a
commit 99d97bc1ca
2 changed files with 35 additions and 19 deletions

BIN
dist.zip

Binary file not shown.

View File

@ -292,12 +292,16 @@
>
<td>{{ item.name }}</td>
<td>
<div class="s1" style="font-size: 16px;">{{ item.key1 }}</div>
:<span class="s2" style="font-size: 15px;">{{ item.key1_value }}</span>
<div class="s1" style="font-size: 16px">{{ item.key1 }}</div>
:<span class="s2" style="font-size: 15px">{{
item.key1_value
}}</span>
</td>
<td>
<span class="s1" style="font-size: 16px;" >{{ item.key2 }}</span
>:<span class="s2" style="font-size: 15px;">{{ item.key2_value }}</span>
<span class="s1" style="font-size: 16px">{{ item.key2 }}</span
>:<span class="s2" style="font-size: 15px">{{
item.key2_value
}}</span>
</td>
</tr>
</tbody>
@ -320,9 +324,9 @@ import http from "@/utils/request.js";
const data = reactive({
PopulationData: {
rkzs: "",
man: "",
woman: "",
rkzs: "0",
man: "0",
woman: "0",
}, //
ageGroup: {
nl17: "0", // 17
@ -343,9 +347,9 @@ const data = reactive({
},
ageRatio: [],
salvageServices: {
jzrc: "", //
jzje: "", //
nf: "", //
jzrc: "0", //
jzje: "0", //
nf: "0", //
}, //
LivelihoodWelfare: {
zgylbxzsr: "0", //
@ -417,31 +421,31 @@ const data = reactive({
ylwsList: [
{
name: "医院卫生院",
value: 50,
value: 0,
},
{
name: "注册护士",
value: 38.871,
value: 0,
},
{
name: "职业医生",
value: 28.871,
value: 0,
},
{
name: "家庭签约医生",
value: 6.871,
value: 0,
},
{
name: "医院卫生院床位数",
value: 18.261,
value: 0,
},
{
name: "健康档案建档",
value: 129.371,
value: 0,
},
{
name: "村社卫生服务站",
value: 98,
value: 0,
},
],
whsyList: [
@ -903,7 +907,20 @@ const getData = async () => {
});
// &&
//
//
const ylwsKeys = [
"yywsysl",
"zchssl",
"zyyssl",
"jtqyyssl",
"yywsycws",
"jkdajdfs",
"cswsfwzs",
];
ylwsKeys.forEach((key, index) => {
data.ylwsList[index].value = addThousandSeparator(res.data.ylws[key]);
});
//
// data.whsyList[0].value = addThousandSeparator(res.data.whtysy.ggtsg);
// data.whsyList[1].value = addThousandSeparator(res.data.whtysy.zcs);
// data.whsyList[2].value = addThousandSeparator(res.data.whtysy.sxxxcs);
@ -1804,7 +1821,6 @@ table {
padding-left: 30px;
box-sizing: border-box;
letter-spacing: 2px;
}
}
}