diff --git a/src/view/yl.vue b/src/view/yl.vue index c57c3e6..1768c59 100644 --- a/src/view/yl.vue +++ b/src/view/yl.vue @@ -36,7 +36,7 @@ {{ data.oldAgeTotal }}
{{ data.oldAgePercent }}%
- +
@@ -167,6 +167,7 @@
- +
@@ -240,6 +241,7 @@ />
{ +onBeforeMount(() => { getData(); }); -const getData = async () => { - await http.get("/api/ggfwyth/yl").then((res) => { +const getData = () => { + http.get("/api/ggfwyth/yl").then((res) => { if (res.code == 200) { console.log(res.data, "养老"); // 养老保险 @@ -471,6 +474,7 @@ const getData = async () => { data.zccs2.push(element.zccs); // 次数 }); } + showR.value = true; }); };