This commit is contained in:
parent
ec382403c9
commit
b9724bafb8
|
@ -8,6 +8,7 @@
|
||||||
<i></i>
|
<i></i>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<ePie3d :list="data.gxy"></ePie3d>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="displayFlex center_bg">
|
<div class="displayFlex center_bg">
|
||||||
|
@ -18,7 +19,6 @@
|
||||||
<i></i>
|
<i></i>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="flex1">
|
<div class="flex1">
|
||||||
<div class="yd_title center_1">
|
<div class="yd_title center_1">
|
||||||
|
@ -61,14 +61,18 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref, reactive, onMounted, onBeforeMount, computed } from "vue";
|
import { ref, reactive, onMounted, onBeforeMount, computed } from "vue";
|
||||||
import http from "@/utils/request.js";
|
import http from "@/utils/request.js";
|
||||||
|
import ePie3d from "./echarts_yl/pie3d.vue";
|
||||||
|
|
||||||
onMounted(() => {
|
const showR = ref(false); //loading
|
||||||
|
const data = reactive({
|
||||||
|
leftTop1: [],
|
||||||
|
gxy: [
|
||||||
|
|
||||||
|
], //高血压
|
||||||
});
|
});
|
||||||
|
onMounted(() => {});
|
||||||
|
|
||||||
onBeforeMount(() => {
|
onBeforeMount(() => {});
|
||||||
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
@ -131,9 +135,6 @@ onBeforeMount(() => {
|
||||||
background-size: 100% 100%;
|
background-size: 100% 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.center_0 {
|
.center_0 {
|
||||||
background-image: url(@/assets/images/sjfx/bft.png);
|
background-image: url(@/assets/images/sjfx/bft.png);
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
@ -163,10 +164,6 @@ onBeforeMount(() => {
|
||||||
background-size: 100% 100%;
|
background-size: 100% 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.yd_title {
|
.yd_title {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
width: 98%;
|
width: 98%;
|
||||||
|
@ -290,7 +287,6 @@ onBeforeMount(() => {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.mechanism {
|
.mechanism {
|
||||||
background-image: url(@/assets/YLTitle/titleImg10.png);
|
background-image: url(@/assets/YLTitle/titleImg10.png);
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
@ -301,12 +297,6 @@ onBeforeMount(() => {
|
||||||
padding: 12px 0;
|
padding: 12px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* 滚动条整体部分 */
|
/* 滚动条整体部分 */
|
||||||
.rolling::-webkit-scrollbar {
|
.rolling::-webkit-scrollbar {
|
||||||
width: 5px;
|
width: 5px;
|
||||||
|
|
Loading…
Reference in New Issue