AIzhushou-screen/src/views/index/index.vue

153 lines
3.8 KiB
Vue
Raw Normal View History

2024-05-22 08:44:08 +08:00
<script setup lang="ts">
2024-05-23 15:47:12 +08:00
import zkItem from "@/components/zk-item";
2024-05-22 08:44:08 +08:00
import LeftTop from "./left-top.vue";
import LeftCenter from "./left-center.vue";
import LeftBottom from "./left-bottom.vue";
import CenterMap from "./center-map.vue";
2024-05-24 17:42:14 +08:00
import CenterTop from "./center-top.vue";
2024-05-22 08:44:08 +08:00
import RightTop from "./right-top.vue";
import RightCenter from "./right-center.vue";
import RightBottom from "./right-bottom.vue";
2024-05-24 17:42:14 +08:00
import RightTopTwo from "./right-top-two.vue";
import RightBottomTwo from "./right-bottom-two.vue";
2024-05-27 11:43:19 +08:00
import { useTimeStore } from "@/stores/index";
import { storeToRefs } from "pinia";
const timeStore = useTimeStore();
2024-05-24 17:42:14 +08:00
const showRight = ref(true)
const changeRight = () => {
showRight.value = !showRight.value
};
2024-05-27 11:43:19 +08:00
const { nowTitle } = storeToRefs(timeStore);
2024-05-22 08:44:08 +08:00
</script>
<template>
<div class="index-box">
<div class="contetn_left">
2024-05-24 17:42:14 +08:00
<zkItem class="contetn_left-top contetn_lt-item" title="迎新进度">
2024-05-22 08:44:08 +08:00
<LeftTop />
2024-05-23 15:47:12 +08:00
</zkItem>
<zkItem class="contetn_left-center contetn_lr-item" title="">
2024-05-22 08:44:08 +08:00
<LeftCenter />
2024-05-23 15:47:12 +08:00
</zkItem>
2024-05-27 11:43:19 +08:00
<zkItem class="contetn_left-bottom contetn_lb-item" title="">
2024-05-22 08:44:08 +08:00
<LeftBottom />
2024-05-23 15:47:12 +08:00
</zkItem>
2024-05-22 08:44:08 +08:00
</div>
<div class="contetn_center">
2024-05-24 17:42:14 +08:00
<CenterTop class="contetn_center_top" />
<CenterMap class="contetn_center_map" title="全国地图" />
2024-05-22 08:44:08 +08:00
</div>
2024-05-24 17:42:14 +08:00
<div class="contetn_right" v-if="showRight">
<div class="change-btn" @click="changeRight"></div>
<zkItem class="contetn_left-bottom contetn_rt-one" title="缴费人数">
2024-05-22 08:44:08 +08:00
<RightTop />
2024-05-23 15:47:12 +08:00
</zkItem>
2024-05-27 11:43:19 +08:00
<zkItem class="contetn_left-bottom contetn_rc-item" :title="nowTitle + '缴费人数'" style="padding: 0 10px 16px 10px">
2024-05-22 08:44:08 +08:00
<RightCenter />
2024-05-23 15:47:12 +08:00
</zkItem>
2024-05-24 17:42:14 +08:00
<zkItem class="contetn_left-bottom contetn_rb-item" title="报道人数区域排名 ">
2024-05-22 08:44:08 +08:00
<RightBottom />
2024-05-23 15:47:12 +08:00
</zkItem>
2024-05-22 08:44:08 +08:00
</div>
2024-05-24 17:42:14 +08:00
<div class="contetn_right" v-else>
<div class="change-btn" @click="changeRight"></div>
<zkItem class="contetn_left-bottom contetn_rt_two" title="学院报到人数">
<RightTopTwo />
</zkItem>
<zkItem class="contetn_left-bottom contetn_rb-item" title="专业报到人数 ">
<RightBottomTwo />
</zkItem>
</div>
2024-05-22 08:44:08 +08:00
</div>
</template>
<style scoped lang="scss">
.index-box {
width: 100%;
display: flex;
min-height: calc(100% - 64px);
justify-content: space-between;
}
2024-05-24 17:42:14 +08:00
2024-05-22 08:44:08 +08:00
//左边 右边 结构一样
.contetn_left,
.contetn_right {
display: flex;
flex-direction: column;
2024-05-24 17:42:14 +08:00
// justify-content: space-around;
2024-05-22 08:44:08 +08:00
position: relative;
2024-05-24 17:42:14 +08:00
width: 470px;
2024-05-22 08:44:08 +08:00
box-sizing: border-box;
flex-shrink: 0;
2024-05-24 17:42:14 +08:00
border: 2px solid rgba(107, 163, 247, 0.2);
border-radius: 16px;
2024-05-23 15:47:12 +08:00
background-clip: padding-box, border-box;
background-origin: padding-box, border-box;
2024-05-27 11:43:19 +08:00
background-image: linear-gradient(to bottom, rgba(0, 0, 51, 0.1), rgba(0, 0, 0, 0.1)), linear-gradient(0deg, rgba(43, 74, 158, 0.1), rgba(89, 153, 252, 0.1));
.change-btn {
2024-05-24 17:42:14 +08:00
position: absolute;
left: -60px;
top: calc(50% - 200px);
width: 55px;
height: 400px;
background: url('@/assets/img/zheke/right_change.png');
cursor: pointer;
}
2024-05-22 08:44:08 +08:00
}
2024-05-24 17:42:14 +08:00
2024-05-22 08:44:08 +08:00
.contetn_center {
flex: 1;
2024-05-23 15:47:12 +08:00
// margin: 0 54px;
2024-05-22 08:44:08 +08:00
display: flex;
flex-direction: column;
2024-05-24 17:42:14 +08:00
padding-top: 50px;
// justify-content: space-around;
align-items: center;
2024-05-27 11:43:19 +08:00
2024-05-24 17:42:14 +08:00
.contetn_center_top {
width: 100%;
padding: 0 36px;
margin-bottom: 30px;
}
2024-05-27 11:43:19 +08:00
2024-05-24 17:42:14 +08:00
.contetn_center_map {
width: 100%;
height: 700px;
display: flex;
justify-content: center;
2024-05-23 15:47:12 +08:00
2024-05-24 17:42:14 +08:00
}
2024-05-22 08:44:08 +08:00
2024-05-24 17:42:14 +08:00
}
2024-05-27 11:43:19 +08:00
.contetn_lt-item {
2024-05-24 17:42:14 +08:00
height: 300px;
}
2024-05-27 11:43:19 +08:00
2024-05-22 08:44:08 +08:00
.contetn_lr-item {
height: 310px;
}
2024-05-27 11:43:19 +08:00
.contetn_lb-item {
2024-05-24 17:42:14 +08:00
height: 310px;
margin-top: 130px;
}
2024-05-27 11:43:19 +08:00
.contetn_rt-one {
2024-05-24 17:42:14 +08:00
height: 240px;
}
2024-05-27 11:43:19 +08:00
.contetn_rt_two {
2024-05-24 17:42:14 +08:00
height: 640px;
}
2024-05-27 11:43:19 +08:00
.contetn_rc-item {
2024-05-24 17:42:14 +08:00
height: 380px;
}
2024-05-27 11:43:19 +08:00
.contetn_rb-item {
2024-05-24 17:42:14 +08:00
height: 310px;
}
2024-05-22 08:44:08 +08:00
</style>