ggfwjsc/src/view/education.vue

1924 lines
45 KiB
Vue
Raw Normal View History

2024-04-12 09:26:48 +08:00
<template>
<div class="module">
2024-04-17 10:02:10 +08:00
<div class="displayFlex left_bg">
<div class="flex1">
2024-06-04 09:24:23 +08:00
<div class="yd_title left_1">
<div class="animate-border">
<i></i>
<i></i>
</div>
</div>
2024-07-17 16:45:47 +08:00
<eP1 :list="data.xsql" v-if="showEchart"></eP1>
2024-04-19 09:56:38 +08:00
<div class="t_1"></div>
<div class="t_2">
2024-06-05 13:10:44 +08:00
<div class="t_2_1" v-for="(item, index) in data.zdgz" :key="index">
2024-05-13 13:29:26 +08:00
<div class="top">{{ item.value }}</div>
2024-04-22 09:32:41 +08:00
<div class="t_3">
<div :class="item.cls"></div>
<div class="right">{{ item.name }}</div>
</div>
2024-04-19 09:56:38 +08:00
</div>
2024-04-17 13:08:03 +08:00
</div>
2024-04-17 10:02:10 +08:00
</div>
2024-06-05 13:10:44 +08:00
<div class="flex1" style="margin-top: 30px">
2024-06-04 09:24:23 +08:00
<div class="yd_title left_2">
<div class="animate-border">
<i></i>
<i></i>
</div>
</div>
2024-04-17 13:08:03 +08:00
<div class="selectLint">
<div class="selectBox">
2024-05-14 10:00:40 +08:00
<el-select
v-model="selectData.value1"
placeholder="请选择"
size="large"
@change="selectChange1"
>
<el-option
v-for="item in selectData.options1"
:key="item.value"
:label="item.label"
:value="item.value"
/>
2024-04-17 13:08:03 +08:00
</el-select>
</div>
<div class="selectBox">
2024-05-14 10:00:40 +08:00
<el-select
v-model="selectData.value2"
placeholder="请选择"
size="large"
2024-07-17 16:45:47 +08:00
@change="selectChange2"
2024-05-14 10:00:40 +08:00
>
<el-option
v-for="item in selectData.options2"
:key="item.value"
:label="item.label"
:value="item.value"
/>
2024-04-17 13:08:03 +08:00
</el-select>
</div>
</div>
2024-07-17 16:45:47 +08:00
<ePieRose :list="selectData.list" v-if="showEchart && showR"></ePieRose>
2024-04-12 09:26:48 +08:00
</div>
2024-04-17 10:02:10 +08:00
</div>
2024-04-17 13:19:11 +08:00
<div class="displayFlex center_bg">
2024-04-17 10:02:10 +08:00
<div class="flex1">
2024-06-04 09:24:23 +08:00
<div class="yd_title center_1">
<div class="animate-border">
<i></i>
<i></i>
</div>
</div>
2024-04-17 15:25:43 +08:00
<div class="school">
<div class="schoolaBox">
<div class="schoola">
2024-05-13 13:35:17 +08:00
<span>{{ data.xxgk.xxzs }}</span>
2024-04-17 16:53:36 +08:00
<span class="schoola1">学校总数</span>
2024-04-17 15:25:43 +08:00
</div>
2024-04-17 17:30:39 +08:00
<div class="schoola">
2024-05-14 10:00:40 +08:00
<span>{{ data.xxgk.xszs }}</span>
<span class="schoola1">学生总数</span>
2024-04-17 17:30:39 +08:00
</div>
<div class="schoola">
2024-05-14 10:00:40 +08:00
<span>{{ data.xxgk.bjzs }}</span>
<span class="schoola1">班级总数</span>
2024-04-17 17:30:39 +08:00
</div>
2024-04-17 15:25:43 +08:00
<div class="schoola">
2024-05-14 10:00:40 +08:00
<span>{{ data.xxgk.jzgzs }}</span>
<span class="schoola1">教职工总数</span>
2024-04-17 15:25:43 +08:00
</div>
</div>
<div class="schoolb">
2024-06-06 11:23:27 +08:00
<img src="../assets/eduImg/xxgkTop.png" class="gkTop" alt="" />
2024-04-17 15:25:43 +08:00
<div class="grade">
2024-06-25 08:59:09 +08:00
<div
class="schoolbs"
2024-07-17 16:45:47 +08:00
@click="showDialog('学校', '/api/ggfwyth/schoolList', '初中')"
2024-06-25 08:59:09 +08:00
>
2024-07-17 16:45:47 +08:00
<span class="spot font">初中</span>
2024-07-13 13:37:35 +08:00
<span class="font">{{ data.xxgk.czxxsl }}</span>
2024-04-17 15:25:43 +08:00
</div>
2024-06-25 08:59:09 +08:00
<div
class="schoolbs"
2024-07-17 16:45:47 +08:00
@click="showDialog('学校', '/api/ggfwyth/schoolList', '高中')"
2024-06-25 08:59:09 +08:00
>
2024-07-13 13:37:35 +08:00
<span class="spot font">高中</span>
<span class="font">{{ data.xxgk.gzxxsl }}</span>
2024-04-17 15:25:43 +08:00
</div>
</div>
<div class="grade">
2024-06-25 08:59:09 +08:00
<div
class="schoolbs"
2024-07-17 16:45:47 +08:00
@click="showDialog('学校', '/api/ggfwyth/schoolList', '小学')"
2024-06-25 08:59:09 +08:00
>
2024-07-13 13:37:35 +08:00
<span class="spot font">小学</span>
<span class="font">{{ data.xxgk.xxxxsl }}</span>
2024-04-17 15:25:43 +08:00
</div>
2024-06-25 08:59:09 +08:00
<div
class="schoolbs"
2024-07-17 16:45:47 +08:00
@click="showDialog('学校', '/api/ggfwyth/schoolList', '中职')"
2024-06-25 08:59:09 +08:00
>
2024-07-13 13:37:35 +08:00
<span class="spot font">中职</span>
<span class="font">{{ data.xxgk.zzxxsl }}</span>
2024-04-17 15:25:43 +08:00
</div>
</div>
<div class="grade grade1">
2024-06-25 08:59:09 +08:00
<div
class="schoolbs"
2024-07-17 16:45:47 +08:00
@click="showDialog('学校', '/api/ggfwyth/schoolList', '幼儿园')"
2024-06-25 08:59:09 +08:00
>
2024-07-13 13:37:35 +08:00
<span class="spot font">幼儿园</span>
<span class="font">{{ data.xxgk.yeyxxsl }}</span>
2024-04-17 15:25:43 +08:00
</div>
<div class="schoolbs">
2024-06-25 08:59:09 +08:00
<span
2024-07-13 13:37:35 +08:00
class="spot font"
2024-07-17 16:45:47 +08:00
@click="showDialog('学校', '/api/ggfwyth/schoolList', '特教')"
2024-06-11 13:38:43 +08:00
>特殊教育</span
>
2024-07-13 13:37:35 +08:00
<span class="font">{{ data.xxgk.tsjyxxsl }}</span>
2024-04-17 15:25:43 +08:00
</div>
</div>
</div>
</div>
</div>
<div class="flex1">
2024-04-19 09:56:38 +08:00
<div style="width: 100%; display: flex; flex-wrap: wrap">
2024-07-02 10:44:54 +08:00
<edie :list="data.xzncxxsl" v-if="showEchart"></edie>
<edie5 :list="data.xzncjszcsl" v-if="showEchart"></edie5>
2024-06-05 13:10:44 +08:00
<!-- <div class="rating">
2024-06-04 14:34:59 +08:00
<edXX
:list="data.schoolData"
:active="selectData.active"
></edXX>
2024-04-17 17:30:39 +08:00
<div class="ratingBtn">
2024-05-14 10:00:40 +08:00
<div
class="onImg"
:class="{ ratingImg: selectData.active === '县镇' }"
>
2024-04-18 10:47:38 +08:00
<span @click="ratingBtn('县镇')">县镇</span>
2024-04-17 17:30:39 +08:00
</div>
2024-05-14 10:00:40 +08:00
<div
class="onImg"
:class="{ ratingImg: selectData.active === '农村' }"
>
2024-04-18 10:47:38 +08:00
<span @click="ratingBtn('农村')">农村</span>
2024-04-17 17:30:39 +08:00
</div>
</div>
2024-06-05 13:10:44 +08:00
</div> -->
2024-04-17 15:25:43 +08:00
</div>
2024-04-17 10:02:10 +08:00
</div>
2024-04-17 16:03:39 +08:00
<div class="flex1">
2024-04-17 16:20:53 +08:00
<div class="fundingBox">
<div class="funding">
<span>资助项目</span>
<span>资助数量</span>
<span>资助金额</span>
</div>
2024-05-23 11:47:43 +08:00
<div
class="rolling"
ref="mainRef"
@mouseenter="stopAutoScroll"
@mouseleave="startAutoScroll"
>
2024-05-14 10:00:40 +08:00
<div
v-for="(item, index) in data.zzxm"
:key="index"
class="fundingContent"
>
2024-06-04 09:24:23 +08:00
<span class="spot">{{ item.zzxm }}</span>
2024-05-23 11:47:43 +08:00
<span class="spot">{{ item.zzsl }}</span>
<span class="spot">{{ item.zzje }}</span>
2024-04-17 16:20:53 +08:00
</div>
2024-04-17 16:03:39 +08:00
</div>
</div>
</div>
2024-04-17 10:02:10 +08:00
</div>
2024-04-17 10:12:38 +08:00
<div class="displayFlex right_bg">
2024-04-17 10:02:10 +08:00
<div class="flex1">
2024-06-04 09:24:23 +08:00
<div class="yd_title right_1">
<div class="animate-border">
<i></i>
<i></i>
</div>
</div>
2024-04-17 13:19:11 +08:00
<div class="czr-sl">
<div class="historyimg historyimg1">
<span>覆盖医疗机构数量</span>
2024-06-11 11:11:28 +08:00
<span>{{ data.whistleblower.yljgsl }}</span>
2024-04-17 13:19:11 +08:00
</div>
<div class="historyimg historyimg2">
<span>启用角色数量</span>
2024-06-11 11:11:28 +08:00
<span>{{ data.whistleblower.qyjssl }}</span>
2024-04-17 13:19:11 +08:00
</div>
<!-- <img src="@/assets/eduImg/jyImg14.png" alt="" />
<img src="@/assets/eduImg/jyImg15.png" alt="" /> -->
</div>
2024-06-11 11:11:28 +08:00
<!-- <edCSR></edCSR> -->
2024-04-17 13:19:11 +08:00
</div>
<div class="flex11">
<div class="earlyWarning">
<div class="earlyWarning1">
<div>
2024-06-11 11:11:28 +08:00
<span class="green">{{ data.whistleblower.green }}</span>
2024-04-17 13:19:11 +08:00
</div>
2024-06-05 13:10:44 +08:00
<img src="@/assets/eduImg/jyImg10.png" alt="" />
<img src="@/assets/eduImg/pp3.gif" alt="" class="ppImg" />
2024-04-17 13:19:11 +08:00
<div class="historyimg historyimg1">
2024-07-17 16:45:47 +08:00
<span style="font-size: 18px">绿色预警</span>
2024-04-17 13:19:11 +08:00
</div>
</div>
<div class="earlyWarning1">
<div>
2024-06-11 11:11:28 +08:00
<span class="yellow">{{ data.whistleblower.yellow }}</span>
2024-04-17 13:19:11 +08:00
</div>
2024-06-05 13:10:44 +08:00
<img src="@/assets/eduImg/jyImg9.png" alt="" />
<img src="@/assets/eduImg/pp2.gif" alt="" class="ppImg" />
2024-04-17 13:19:11 +08:00
<div class="historyimg historyimg2">
2024-07-17 16:45:47 +08:00
<span style="font-size: 18px">黄色预警</span>
2024-04-17 13:19:11 +08:00
</div>
</div>
<div class="earlyWarning1">
<div>
2024-06-11 11:11:28 +08:00
<span class="red">{{ data.whistleblower.red }}</span>
2024-04-17 13:19:11 +08:00
</div>
2024-06-05 13:10:44 +08:00
<img src="@/assets/eduImg/jyImg8.png" alt="" />
<img src="@/assets/eduImg/pp1.gif" alt="" class="ppImg" />
2024-04-17 13:19:11 +08:00
<div class="historyimg historyimg3">
2024-07-17 16:45:47 +08:00
<span style="font-size: 18px">红色预警</span>
2024-04-17 13:19:11 +08:00
</div>
</div>
2024-04-17 10:02:10 +08:00
</div>
</div>
<div class="flex1">
2024-04-17 13:19:11 +08:00
<div style="display: flex; justify-content: center">
<div class="czr-bj">
2024-06-20 16:06:15 +08:00
<!-- <div>
2024-06-11 11:11:28 +08:00
<div class="czrBox">
<div class="situation situation1"></div>
2024-06-20 09:55:26 +08:00
<edxs
:list="data.whistleblower.culeTotal.data"
:month="data.whistleblower.culeTotal.time"
></edxs>
2024-06-11 11:11:28 +08:00
</div>
<div class="czrBox">
<div class="situation situation2"></div>
2024-06-20 09:55:26 +08:00
<edxs1
:list="data.whistleblower.gaCules.data"
:month="data.whistleblower.gaCules.time"
></edxs1>
2024-04-17 15:25:43 +08:00
</div>
2024-06-20 16:06:15 +08:00
</div> -->
<!-- <div> -->
<div class="czrBox">
<div class="situation situation3"></div>
<edxs2
:list="data.whistleblower.newCules.data"
:month="data.whistleblower.newCules.time"
2024-07-02 10:44:54 +08:00
v-if="showEchart"
2024-06-20 16:06:15 +08:00
></edxs2>
2024-04-17 13:19:11 +08:00
</div>
2024-06-20 16:06:15 +08:00
<div class="clue">
<div class="clueBox">
<div class="clueTitle">预警线索总数</div>
2024-06-20 17:14:36 +08:00
<div class="clueNum">{{ data.culeTotal }}</div>
2024-06-20 16:06:15 +08:00
<div class="clueUnit"></div>
2024-06-11 11:11:28 +08:00
</div>
2024-06-20 16:06:15 +08:00
<div class="clueBox">
<div class="clueTitle">公安协同 <br />处置线索</div>
2024-06-20 17:14:36 +08:00
<div class="clueNum">{{ data.gaCules }}</div>
2024-06-20 16:06:15 +08:00
<div class="clueUnit"></div>
</div>
<div class="clueBox">
<div class="clueTitle">检察官处置线索</div>
2024-06-20 17:14:36 +08:00
<div class="clueNum">{{ data.jcgCules }}</div>
2024-06-20 16:06:15 +08:00
<div class="clueUnit"></div>
</div>
</div>
<!-- <div class="czrBox">
2024-06-11 11:11:28 +08:00
<div class="situation situation4"></div>
2024-06-20 09:55:26 +08:00
<edxs3
:list="data.whistleblower.jcgCules.data"
:month="data.whistleblower.jcgCules.time"
></edxs3>
2024-06-20 16:06:15 +08:00
</div> -->
<!-- </div> -->
2024-04-17 13:19:11 +08:00
</div>
2024-04-12 09:26:48 +08:00
</div>
2024-04-17 13:19:11 +08:00
<!-- <eBubble></eBubble> -->
2024-04-12 09:26:48 +08:00
</div>
2024-04-17 10:02:10 +08:00
</div>
2024-06-11 10:23:47 +08:00
<Dialog
:dialogShow="dialogShow"
:columns="tableType.columns"
:title="tableType.title"
:tableData="tableType.data"
:pagination="pagination"
@close="close"
@handle="handlePagination"
>
</Dialog>
2024-04-12 09:26:48 +08:00
</div>
</template>
<script setup>
2024-04-17 16:20:53 +08:00
import { ref, reactive, onMounted, onBeforeMount } from "vue";
2024-06-11 11:11:28 +08:00
import edxs from "./echarts_education/edXS.vue";
import edxs1 from "./echarts_education/edXS1.vue";
import edxs2 from "./echarts_education/edXS2.vue";
import edxs3 from "./echarts_education/edXS3.vue";
2024-06-28 11:08:54 +08:00
import edie5 from "./echarts_education/pie5.vue";
2024-06-11 11:11:28 +08:00
2024-04-17 15:25:43 +08:00
import edie from "./echarts_education/pie.vue";
2024-06-11 11:11:28 +08:00
import edCSR from "./echarts_education/edCSR.vue";
2024-06-05 13:10:44 +08:00
import edXX from "./echarts_education/edXX.vue";
2024-04-17 13:08:03 +08:00
import ePie1 from "./echarts_education/pie1.vue";
import ePie2 from "./echarts_education/pie2.vue";
import ePie3 from "./echarts_education/pie3.vue";
import ePie4 from "./echarts_education/pie4.vue";
import ePieRose from "./echarts_education/pieRose.vue";
2024-04-19 09:56:38 +08:00
import eP1 from "./echarts_education/eP1.vue";
2024-05-13 11:21:32 +08:00
import http from "@/utils/request.js";
2024-06-11 10:23:47 +08:00
import Dialog from "./dialog/dialog.vue";
2024-07-17 16:45:47 +08:00
const showR = ref(true); //下拉
2024-04-17 15:30:18 +08:00
const selectData = reactive({
2024-07-17 16:45:47 +08:00
value1: "0",
value2: "0",
2024-06-05 13:10:44 +08:00
list: [],
list1: [],
active: "县镇",
2024-07-17 16:45:47 +08:00
evaluationAnalysis: {},
2024-04-17 16:20:53 +08:00
options1: [
{
2024-07-17 16:45:47 +08:00
value: "1",
label: "2023年秋季小学生心理健康普查",
},
{
value: "2",
label: "2023年秋季初中生心理健康普查",
2024-04-17 16:20:53 +08:00
},
{
2024-07-17 16:45:47 +08:00
value: "3",
label: "2023年秋季高中生心理健康普查",
2024-04-17 16:20:53 +08:00
},
],
options2: [
{
value: "tes1",
label: "中小学心理健康诊断测验(MHT",
},
{
value: "tes2",
label: "小学心理健康诊断测验",
},
2024-07-17 16:45:47 +08:00
// {
// value: "tes3",
// label: "中学心理健康诊断",
// },
2024-04-17 16:20:53 +08:00
],
});
2024-04-17 15:30:18 +08:00
var roseData1 = ref([
{
2024-04-17 16:20:53 +08:00
name: "正常",
value: 17,
2024-04-17 13:08:03 +08:00
},
{
2024-04-17 16:20:53 +08:00
name: "关注",
value: 16,
2024-04-17 13:08:03 +08:00
},
{
2024-04-17 16:20:53 +08:00
name: "追踪",
value: 14,
2024-04-17 13:08:03 +08:00
},
{
2024-04-17 16:20:53 +08:00
name: "异常",
value: 8,
2024-04-17 13:08:03 +08:00
},
2024-04-17 15:30:18 +08:00
{
2024-04-17 16:20:53 +08:00
name: "警戒",
value: 8,
},
2024-04-17 15:30:18 +08:00
]);
var roseData2 = ref([
{
2024-04-17 16:20:53 +08:00
name: "正常",
value: 37,
2024-04-17 13:08:03 +08:00
},
{
2024-04-17 16:20:53 +08:00
name: "关注",
value: 26,
2024-04-17 13:08:03 +08:00
},
{
2024-04-17 16:20:53 +08:00
name: "追踪",
value: 24,
2024-04-17 13:08:03 +08:00
},
{
2024-04-17 16:20:53 +08:00
name: "异常",
value: 18,
2024-04-17 13:08:03 +08:00
},
2024-04-17 15:30:18 +08:00
{
2024-04-17 16:20:53 +08:00
name: "警戒",
value: 18,
},
2024-04-17 15:30:18 +08:00
]);
var roseData3 = ref([
{
2024-04-17 16:20:53 +08:00
name: "正常",
value: 227,
2024-04-17 15:30:18 +08:00
},
{
2024-04-17 16:20:53 +08:00
name: "关注",
value: 169,
2024-04-17 15:30:18 +08:00
},
{
2024-04-17 16:20:53 +08:00
name: "追踪",
value: 114,
2024-04-17 15:30:18 +08:00
},
{
2024-04-17 16:20:53 +08:00
name: "异常",
value: 98,
2024-04-17 15:30:18 +08:00
},
{
2024-04-17 16:20:53 +08:00
name: "警戒",
value: 78,
},
2024-04-17 15:30:18 +08:00
]);
2024-06-11 10:23:47 +08:00
//详情弹框
const dialogShow = ref(false);
const tableType = reactive({
url: "",
title: "",
columns: [
2024-06-25 08:59:09 +08:00
{
label: "学校名称",
property: "xxmc",
},
2024-06-25 11:29:38 +08:00
{
label: "区域",
property: "qq",
},
{
label: "学段",
property: "xd",
},
2024-06-24 16:04:31 +08:00
{
label: "班级数",
property: "bjs",
},
{
2024-06-25 08:59:09 +08:00
label: "教师数",
2024-06-24 16:04:31 +08:00
property: "jss",
},
2024-06-25 08:59:09 +08:00
{
label: "学生数",
property: "xss",
},
2024-06-24 16:04:31 +08:00
{
label: "性质",
property: "xz",
2024-06-11 10:23:47 +08:00
},
],
data: [],
});
// 表格分页
const pagination = reactive({
total: 100,
pageSize: 10,
currentPage: 1,
2024-07-17 16:45:47 +08:00
school: "",
2024-06-11 10:23:47 +08:00
});
const handlePagination = (current) => {
pagination.currentPage = current;
getTable(tableType.url, pagination.currentPage);
};
2024-07-17 16:45:47 +08:00
const showDialog = (title, url, school) => {
2024-06-11 10:23:47 +08:00
tableType.title = title;
2024-07-17 16:45:47 +08:00
pagination.school = school;
2024-06-11 10:23:47 +08:00
tableType.url = url;
pagination.currentPage = 1;
dialogShow.value = true;
2024-06-24 16:04:31 +08:00
getTable(url, pagination.currentPage);
2024-06-11 10:23:47 +08:00
};
//获取表格数据
const getTable = (url, currentPage) => {
2024-06-11 13:38:43 +08:00
dialogShow.value = true;
2024-06-24 16:04:31 +08:00
http
2024-07-17 16:45:47 +08:00
.get(
`${url}?page=${currentPage}&size=${pagination.pageSize}&xd=${pagination.school}`
)
2024-06-24 16:04:31 +08:00
.then((res) => {
if (res.code == 200) {
tableType.data = res.data;
pagination.total = res.count;
dialogShow.value = true;
}
});
2024-06-11 10:23:47 +08:00
};
const close = () => {
dialogShow.value = false;
};
2024-04-18 10:47:38 +08:00
2024-07-17 16:45:47 +08:00
//----选择
2024-04-17 15:30:18 +08:00
const selectChange1 = () => {
2024-07-17 16:45:47 +08:00
selectData.options1 = [];
selectData.options2 = [];
selectData.evaluationAnalysis.forEach((item, index) => {
const newOption = {
value: `${index}`,
label: item.planTitle,
};
selectData.options1.push(newOption);
});
if (
selectData.evaluationAnalysis[selectData.value1] &&
selectData.evaluationAnalysis[selectData.value1].child
) {
selectData.evaluationAnalysis[selectData.value1].child.forEach(
(item, index) => {
const newOption = {
value: `${index}`,
label: item.title,
};
selectData.options2.push(newOption);
}
);
2024-04-17 15:30:18 +08:00
}
2024-07-17 16:45:47 +08:00
selectData.value2 = "0";
selectChange2();
};
const selectChange2 = () => {
showR.value = false;
roseData1.value.forEach((item, index) => {
item.value =
selectData.evaluationAnalysis[selectData.value1].child[
selectData.value2
].statistics[index + 1];
});
selectData.list = roseData1.value;
2024-07-22 10:46:36 +08:00
// console.log(selectData.list);
2024-07-17 16:45:47 +08:00
setTimeout(() => {
showR.value = true;
2024-07-17 16:46:45 +08:00
}, 100);
2024-04-17 16:20:53 +08:00
};
2024-07-17 16:45:47 +08:00
2024-06-05 13:10:44 +08:00
// const ratingBtn = (item) => {
// selectData.active = item; // 设置当前选中的项目
// switch (selectData.active) {
// // case "城市":
// // selectData.list1 = schoolData.value;
// // break;
// case "县镇":
// data.schoolData[0].value = data.xzncjszcsl.xzjszcsl.xzfgj; //县镇复高级数量
// data.schoolData[1].value = data.xzncjszcsl.xzjszcsl.xzzgj; //县镇正高级数量
// data.schoolData[2].value = data.xzncjszcsl.xzjszcsl.xzwdj; //县镇未定级数量
// data.schoolData[3].value = data.xzncjszcsl.xzjszcsl.xzyj; //县镇员级数量
// data.schoolData[4].value = data.xzncjszcsl.xzjszcsl.xzzj; //县镇中级数量
// data.schoolData[5].value = data.xzncjszcsl.xzjszcsl.xzzlj; //县镇助理级数量
// break;
// case "农村":
// data.schoolData[0].value = data.xzncjszcsl.ncjszcsl.ncfgj; //县镇正高级数量
// data.schoolData[1].value = data.xzncjszcsl.ncjszcsl.nczgj; //县镇正高级数量
// data.schoolData[2].value = data.xzncjszcsl.ncjszcsl.ncwdj; //县镇中级数量
// data.schoolData[3].value = data.xzncjszcsl.ncjszcsl.nczlj; //县镇助理级数量
// data.schoolData[4].value = data.xzncjszcsl.ncjszcsl.ncyj; //县镇员级数量
// data.schoolData[5].value = data.xzncjszcsl.ncjszcsl.ncwdj; //县镇未定级数量
// break;
// default:
// break;
// }
// };
2024-07-02 10:44:54 +08:00
const showEchart = ref(false);
2024-05-13 13:29:26 +08:00
const data = reactive({
xsql: [],
zdgz: [
2024-05-13 13:35:17 +08:00
{
name: "留守儿童",
value: 16.1,
cls: "left1",
},
{
name: "独生子女",
value: 32.1,
cls: "left2",
},
{
name: "单亲家庭",
value: 65.1,
cls: "left3",
},
{
name: "享受低保",
value: 0.1,
cls: "left4",
},
],
2024-05-14 10:00:40 +08:00
xxgk: {},
2024-06-28 11:08:54 +08:00
xzncjszcsl: {},
2024-05-14 10:00:40 +08:00
xzncxxsl: [[], []],
zzxm: [],
schoolData: [
{ name: "副高级", value: "" },
{ name: "正高级", value: "" },
{ name: "未定级", value: "" },
{ name: "员级", value: "" },
{ name: "中级", value: "" },
{ name: "助理级", value: "" },
],
2024-06-11 13:38:43 +08:00
whistleblower: {
yljgsl: 10, //覆盖医疗机构数量
qyjssl: 3, //吹哨人启用角色
green: 316895, //绿色
yellow: 16676, //黄色
red: 6242, //红色
culeTotal: {
data: ["255", "165", "165", "165", "165"],
time: ["5.31", "6.1", "6.2", "6.3", "6.4"],
}, //预警线索总数量
newCules: {
data: ["255", "165", "165", "165", "165"],
time: ["5.31", "6.1", "6.2", "6.3", "6.4"],
}, //每日新增线索
gaCules: {
data: ["255", "165", "165", "165", "165"],
time: ["5.31", "6.1", "6.2", "6.3", "6.4"],
}, //公安协同处置线索
jcgCules: {
data: ["255", "165", "165", "165", "165"],
time: ["5.31", "6.1", "6.2", "6.3", "6.4"],
}, //检察官协同处置线索
},
2024-06-20 17:14:36 +08:00
culeTotal: "", //预警线索总数量最新值
gaCules: "", //公安协同处置线索最新值
jcgCules: "", //检察官协同处置线索最新值
2024-05-14 10:00:40 +08:00
});
const getData = async () => {
await http.get("/api/ggfwyth/education").then((res) => {
2024-05-13 11:21:32 +08:00
if (res.code == 200) {
2024-05-23 11:47:43 +08:00
// 学生情况
2024-05-14 10:00:40 +08:00
data.xsql.push(res.data.xssl.zz);
data.xsql.push(res.data.xssl.gz);
data.xsql.push(res.data.xssl.cz);
data.xsql.push(res.data.xssl.xx);
data.xsql.push(res.data.xssl.yey);
data.xsql.push(res.data.xssl.tsjy);
2024-07-02 10:44:54 +08:00
2024-05-23 11:47:43 +08:00
// 重点关注
2024-05-14 10:00:40 +08:00
data.zdgz[0].value = res.data.zdgz.lset;
data.zdgz[1].value = res.data.zdgz.dszn;
data.zdgz[2].value = res.data.zdgz.dqjt;
data.zdgz[3].value = res.data.zdgz.xsdb;
2024-06-06 11:23:27 +08:00
// 测评分析
2024-07-17 16:45:47 +08:00
selectData.evaluationAnalysis = res.data.cpfx;
selectChange1();
2024-05-23 11:47:43 +08:00
// 学校概况
2024-05-14 10:00:40 +08:00
data.xxgk = res.data.xxgk;
2024-05-23 11:47:43 +08:00
// 县镇农村学校数量 初始化数据
2024-05-14 10:00:40 +08:00
data.xzncxxsl[0].push(res.data.xzncxxsl.ncxx.ncxx);
data.xzncxxsl[0].push(res.data.xzncxxsl.ncxx.nccz);
data.xzncxxsl[0].push(res.data.xzncxxsl.ncxx.ncgz);
data.xzncxxsl[1].push(res.data.xzncxxsl.xzxx.xzxx);
data.xzncxxsl[1].push(res.data.xzncxxsl.xzxx.xzcz);
data.xzncxxsl[1].push(res.data.xzncxxsl.xzxx.xzgz);
2024-05-23 11:47:43 +08:00
// 县镇农村教师职称数量
data.xzncjszcsl = res.data.xzncjszcsl;
// 资助项目
2024-05-14 10:00:40 +08:00
data.zzxm = res.data.zzxm;
2024-05-23 11:47:43 +08:00
// 吹哨人
2024-06-06 11:23:27 +08:00
data.whistleblower = res.data.whistleblower;
2024-06-11 13:38:43 +08:00
// 预警线索
2024-06-20 17:15:37 +08:00
data.culeTotal = res.data.whistleblower.culeTotal.data.slice(-1)[0];
data.gaCules = res.data.whistleblower.gaCules.data.slice(-1)[0];
data.jcgCules = res.data.whistleblower.jcgCules.data.slice(-1)[0];
2024-07-02 10:44:54 +08:00
showEchart.value = true;
2024-05-13 11:21:32 +08:00
}
});
2024-05-14 10:00:40 +08:00
};
2024-05-23 11:47:43 +08:00
//自动滚动
const mainRef = ref(null);
let isAutoScrolling = true;
const stopAutoScroll = () => {
isAutoScrolling = false;
};
const startAutoScroll = () => {
isAutoScrolling = true;
autoScroll();
};
const autoScroll = () => {
if (!isAutoScrolling) return;
const mainEl = mainRef.value;
2024-06-20 09:55:26 +08:00
if (!mainEl) {
// console.error("mainRef is not defined");
return;
}
2024-05-23 11:47:43 +08:00
mainEl.scrollTop += 1; // 每次滚动的距离
if (mainEl.scrollTop + 1 >= mainEl.scrollHeight - mainEl.clientHeight) {
setTimeout(() => {
mainEl.scrollTo({ top: 0, behavior: "smooth" });
setTimeout(autoScroll, 2000); // 2秒后再次滚动到底部
}, 1000); // 暂停1秒后开始快速滚回顶部
} else {
requestAnimationFrame(autoScroll);
}
};
2024-05-14 10:00:40 +08:00
onBeforeMount(async () => {
selectData.list = roseData1.value;
getData();
2024-04-17 15:30:18 +08:00
});
2024-05-23 11:47:43 +08:00
onMounted(() => {
startAutoScroll();
});
2024-04-12 09:26:48 +08:00
</script>
<style lang="scss" scoped>
.displayFlex {
2024-04-16 13:59:49 +08:00
box-sizing: border-box;
height: 100%;
2024-04-12 09:26:48 +08:00
display: flex;
flex-direction: column;
2024-04-16 13:59:49 +08:00
// flex: 1;
2024-04-17 10:02:10 +08:00
width: 30%;
2024-04-12 09:26:48 +08:00
}
2024-04-16 13:59:49 +08:00
2024-04-12 09:26:48 +08:00
.flex1 {
box-sizing: border-box;
}
2024-04-17 10:02:10 +08:00
2024-04-12 09:26:48 +08:00
.module {
display: flex;
2024-04-16 13:59:49 +08:00
width: 100%;
2024-07-24 14:58:07 +08:00
margin-top: 112px;
2024-04-12 09:26:48 +08:00
}
2024-04-17 10:02:10 +08:00
.left_bg {
width: 642px;
// height: 100%;
box-sizing: border-box;
padding-left: 50px;
2024-04-17 13:08:03 +08:00
padding-right: 20px;
2024-04-17 10:02:10 +08:00
margin-right: 28px;
background-image: url(@/assets/images/left_bg.png);
background-repeat: no-repeat;
background-size: 100% 100%;
}
2024-04-17 15:30:18 +08:00
2024-04-17 13:19:11 +08:00
.center_bg {
width: 582px;
box-sizing: border-box;
padding-left: 10px;
2024-04-17 16:20:53 +08:00
padding-right: 10px;
2024-04-17 13:19:11 +08:00
background-image: url(@/assets/images/center_bg.png);
background-repeat: no-repeat;
background-size: 100% 100%;
}
2024-04-17 15:30:18 +08:00
2024-04-17 10:12:38 +08:00
.right_bg {
width: 642px;
box-sizing: border-box;
padding-right: 50px;
padding-left: 20px;
margin-left: 28px;
background-image: url(@/assets/images/right_bg.png);
background-repeat: no-repeat;
background-size: 100% 100%;
}
2024-04-17 13:08:03 +08:00
2024-04-17 10:12:38 +08:00
.left_1 {
2024-04-19 14:01:48 +08:00
// background-image: url(@/assets/eduImg/title1.png);
2024-05-23 14:33:54 +08:00
background-image: url(@/assets/images/education/new_xsqk.png);
2024-04-12 09:26:48 +08:00
background-repeat: no-repeat;
background-size: 100% 100%;
2024-04-17 10:12:38 +08:00
}
2024-04-17 13:08:03 +08:00
2024-04-17 10:12:38 +08:00
.left_2 {
2024-05-23 14:33:54 +08:00
background-image: url(@/assets/images/education/new_cpfx.png);
2024-04-17 10:12:38 +08:00
background-repeat: no-repeat;
background-size: 100% 100%;
}
2024-04-17 13:08:03 +08:00
2024-04-17 10:12:38 +08:00
.center_1 {
2024-05-23 14:33:54 +08:00
background-image: url(@/assets/images/education/new_xxgk.png);
2024-04-17 10:12:38 +08:00
background-repeat: no-repeat;
background-size: 100% 100%;
}
2024-04-17 13:08:03 +08:00
2024-04-17 13:19:11 +08:00
.right_1 {
2024-05-23 14:33:54 +08:00
background-image: url(@/assets/images/education/new_csr.png);
2024-04-17 10:12:38 +08:00
background-repeat: no-repeat;
background-size: 100% 100%;
}
2024-04-17 15:25:43 +08:00
// .yd_title {
// // background-image: url(@/assets/img_04.png);
// // background-repeat: no-repeat;
// // background-size: 100% 100%;
// box-sizing: border-box;
// width: 100%;
// height: 36px;
// position: relative;
// .text {
// font-size: 16px;
// font-family: SourceHanSansCN;
// font-weight: bold;
// color: #ffffff;
// position: absolute;
// left: 33px;
// top: 3px;
// }
// }
2024-04-12 09:26:48 +08:00
.basicInformation {
display: flex;
flex-direction: row;
flex-wrap: wrap;
padding-top: 22px;
2024-04-17 10:02:10 +08:00
2024-04-12 09:26:48 +08:00
.basicInformation_item {
flex: 0 0 50%;
padding: 0 2px;
margin-bottom: 10px;
margin-top: 10px;
box-sizing: border-box;
display: flex;
align-items: center;
2024-04-17 10:02:10 +08:00
2024-04-12 09:26:48 +08:00
.icon {
width: 79px;
height: 47px;
}
2024-04-17 10:02:10 +08:00
2024-04-12 09:26:48 +08:00
.right {
margin-left: 4px;
.label {
background-image: url(@/assets/img_11.png);
background-size: 100%;
background-repeat: no-repeat;
background-position: bottom;
margin-bottom: 4px;
2024-04-17 10:02:10 +08:00
2024-04-12 09:26:48 +08:00
span {
font-size: 12px;
font-weight: 400;
color: #eff0f1;
line-height: 19px;
margin-left: 2px;
}
}
2024-04-17 10:02:10 +08:00
2024-04-12 09:26:48 +08:00
p {
font-size: 16px;
font-weight: bold;
color: #6acbff;
line-height: 24px;
}
}
}
}
.visitLog {
.visitLog_item {
display: flex;
align-items: center;
background-image: url(@/assets/img_12.png);
background-size: 100% 100%;
margin-top: 16px;
padding: 15px 8px;
box-sizing: border-box;
2024-04-17 10:02:10 +08:00
2024-04-12 09:26:48 +08:00
img {
display: inline-block;
margin-right: 10px;
}
2024-04-17 10:02:10 +08:00
2024-04-12 09:26:48 +08:00
.visitLog_item_box {
flex: auto;
2024-04-17 10:02:10 +08:00
2024-04-12 09:26:48 +08:00
h4 {
font-size: 18px;
font-family: MicrosoftYaHei;
font-weight: bold;
color: #0096ff;
margin-bottom: 2px;
}
2024-04-17 10:02:10 +08:00
2024-04-12 09:26:48 +08:00
p {
font-size: 12px;
font-family: SourceHanSansCN;
font-weight: 400;
color: #ffffff;
margin-top: 6px;
}
}
2024-04-17 10:02:10 +08:00
2024-04-12 09:26:48 +08:00
.check {
font-size: 12px;
font-family: SourceHanSansCN;
font-weight: 400;
color: #0096ff;
line-height: 20px;
}
}
}
.history {
padding-top: 12px;
2024-04-17 10:02:10 +08:00
2024-04-12 09:26:48 +08:00
p {
margin-top: 12px;
font-size: 12px;
font-weight: 400;
color: #ffffff;
line-height: 28px;
border-bottom: 13px solid rgba(57, 59, 109, 1);
}
}
.concernLabel {
display: flex;
align-items: center;
justify-content: center;
margin: 12px 0 20px;
2024-04-17 10:02:10 +08:00
2024-04-12 09:26:48 +08:00
span {
text-align: center;
background: rgba(0, 89, 130, 0.73);
border-radius: 10px;
width: 118px;
height: 49px;
line-height: 49px;
font-size: 18px;
font-weight: 400;
color: #ffffff;
margin: 0 10px;
}
}
2024-04-17 10:02:10 +08:00
2024-04-12 09:26:48 +08:00
.property {
display: flex;
padding: 14px 0 10px;
2024-04-17 10:02:10 +08:00
2024-04-12 09:26:48 +08:00
.property_box {
2024-06-25 09:13:19 +08:00
//background-image: url(@/assets/img_05.png);
2024-04-12 09:26:48 +08:00
background-size: 100% 100%;
background-repeat: no-repeat;
width: 179px;
height: 91px;
margin: 0 12px;
text-align: center;
2024-04-17 10:02:10 +08:00
2024-04-12 09:26:48 +08:00
h5 {
font-size: 14px;
font-weight: 400;
color: #ffffff;
margin: 9px 0 16px;
}
2024-04-17 10:02:10 +08:00
2024-04-12 09:26:48 +08:00
p {
font-size: 21px;
font-weight: bold;
color: #48ece7;
}
}
}
2024-04-17 10:02:10 +08:00
2024-04-12 09:26:48 +08:00
.activity {
h5 {
font-size: 14px;
font-weight: bold;
color: rgba(0, 164, 250, 0.8);
line-height: 47px;
border-bottom: 2px solid rgba(0, 164, 250, 1);
margin-bottom: 17px;
}
2024-04-17 10:02:10 +08:00
2024-04-12 09:26:48 +08:00
.activity_content {
margin: 0 -6px 12px;
display: flex;
2024-04-17 10:02:10 +08:00
2024-04-12 09:26:48 +08:00
.activity_box {
width: 50%;
display: inline-block;
margin: 0 6px;
box-sizing: border-box;
background-color: rgba(15, 28, 54, 1);
padding: 12px 12px 19px;
2024-04-17 10:02:10 +08:00
2024-04-12 09:26:48 +08:00
p {
font-size: 14px;
font-weight: 400;
color: #ffffff;
line-height: 27px;
height: 100%;
}
}
}
}
2024-04-17 10:02:10 +08:00
2024-04-12 09:26:48 +08:00
.monitor {
.monitor_box {
display: flex;
padding: 8px 0;
border-bottom: 2px solid rgba(255, 255, 255, 0.67);
2024-04-17 10:02:10 +08:00
2024-04-12 09:26:48 +08:00
img {
width: 115px;
height: 84px;
margin-right: 21px;
}
2024-04-17 10:02:10 +08:00
2024-04-12 09:26:48 +08:00
.monitor_box_text {
display: flex;
flex-direction: column;
justify-content: space-between;
2024-04-17 10:02:10 +08:00
2024-04-12 09:26:48 +08:00
h4 {
font-size: 14px;
font-weight: 400;
color: #ffffff;
line-height: 20px;
}
2024-04-17 10:02:10 +08:00
2024-04-12 09:26:48 +08:00
p {
font-size: 14px;
font-weight: 400;
color: #818181;
line-height: 23px;
}
}
}
}
2024-04-17 13:19:11 +08:00
.yd_title {
// background-image: url(@/assets/img_04.png);
// background-repeat: no-repeat;
// background-size: 100% 100%;
box-sizing: border-box;
2024-04-17 15:25:43 +08:00
width: 98%;
2024-04-18 11:51:31 +08:00
height: 42px;
2024-04-17 13:19:11 +08:00
position: relative;
2024-06-04 09:24:23 +08:00
overflow: hidden;
2024-04-17 13:19:11 +08:00
.text {
display: flex;
position: absolute;
font-size: 16px;
font-family: SourceHanSansCN;
font-weight: bold;
color: #ffffff;
position: absolute;
right: 5px;
top: 3px;
}
2024-06-04 09:24:23 +08:00
/* 利用伪元素和两个i元素产生4条线 */
.animate-border {
position: absolute;
top: 0px;
width: 100%;
height: 100%;
&::before,
&::after {
content: "";
position: absolute;
width: 100%;
2024-06-04 09:47:11 +08:00
height: 2px;
2024-06-04 09:24:23 +08:00
}
i {
position: absolute;
display: inline-block;
height: 100%;
2024-06-04 09:47:11 +08:00
width: 2px;
2024-06-04 09:24:23 +08:00
}
&::before {
top: 0;
left: -100%;
background-image: linear-gradient(
90deg,
transparent,
#03e9f4,
transparent
);
animation: one 4s linear infinite;
}
i:nth-child(1) {
top: -100%;
right: 0;
background-image: linear-gradient(
180deg,
transparent,
#03e9f4,
transparent
);
/* 动画名称 动画持续时间 动画渲染函数 动画延迟时间 动画执行次数 */
animation: two 4s linear 1s infinite;
}
&::after {
bottom: 0;
right: -100%;
background-image: linear-gradient(
-90deg,
transparent,
#03e9f4,
transparent
);
animation: three 4s linear 2s infinite;
}
i:nth-child(2) {
bottom: -100%;
left: 0;
background-image: linear-gradient(
360deg,
transparent,
#03e9f4,
transparent
);
animation: four 4s linear 3s infinite;
}
}
}
@keyframes one {
0% {
left: -100%;
}
50%,
100% {
left: 100%;
}
}
@keyframes two {
0% {
top: -100%;
}
50%,
100% {
top: 100%;
}
}
@keyframes three {
0% {
right: -100%;
}
50%,
100% {
right: 100%;
}
}
@keyframes four {
0% {
bottom: -100%;
}
50%,
100% {
bottom: 100%;
}
2024-04-17 13:19:11 +08:00
}
.mechanism {
background-image: url(@/assets/YLTitle/titleImg10.png);
background-repeat: no-repeat;
background-size: 100% 100%;
}
2024-04-17 15:25:43 +08:00
.flex11 {
2024-07-11 10:46:45 +08:00
padding: 50px 0;
// margin-top: 54px;
2024-04-17 15:25:43 +08:00
}
2024-05-13 13:29:26 +08:00
2024-04-17 13:19:11 +08:00
.czr-sl {
display: flex;
2024-04-17 15:30:18 +08:00
2024-04-17 13:19:11 +08:00
.historyimg {
width: 255px;
height: 56px;
background-repeat: no-repeat;
background-size: 100% 100%;
margin-top: 20px;
display: flex;
align-items: center;
justify-content: space-between;
padding-left: 70px;
2024-04-17 15:30:18 +08:00
2024-04-17 13:19:11 +08:00
span {
2024-07-11 10:46:45 +08:00
font-weight: 600;
font-size: 17px;
2024-04-17 13:19:11 +08:00
color: #ffffff;
line-height: 22px;
letter-spacing: 2px;
text-align: left;
font-style: normal;
font-family: PingFangSC, PingFang SC;
padding-right: 10px;
}
}
2024-04-17 15:30:18 +08:00
2024-04-17 13:19:11 +08:00
.historyimg1 {
background-image: url(@/assets/eduImg/jyImg14.png);
margin-right: 10px;
}
2024-04-17 15:30:18 +08:00
2024-04-17 13:19:11 +08:00
.historyimg2 {
background-image: url(@/assets/eduImg/jyImg15.png);
}
}
2024-04-17 15:30:18 +08:00
2024-04-17 13:19:11 +08:00
.earlyWarning {
height: calc(100% - 10px);
display: flex;
align-items: center;
justify-content: space-around;
2024-04-17 15:30:18 +08:00
2024-04-17 13:19:11 +08:00
.earlyWarning1 {
font-size: 26px;
color: #ffffff;
line-height: 30px;
letter-spacing: 1px;
text-align: center;
font-style: normal;
font-family: PangMenZhengDao;
display: flex;
flex-direction: column;
align-items: center;
2024-06-04 15:25:57 +08:00
position: relative;
2024-06-05 13:10:44 +08:00
.ppImg {
2024-06-04 15:25:57 +08:00
position: absolute;
2024-06-05 10:08:39 +08:00
width: 160px;
height: 120px;
top: 20px;
2024-06-04 15:25:57 +08:00
}
2024-04-17 15:30:18 +08:00
2024-04-17 13:19:11 +08:00
img {
width: 136px;
height: 100px;
}
2024-04-17 15:30:18 +08:00
2024-04-17 13:19:11 +08:00
.green {
font-size: 26px;
font-weight: bold;
letter-spacing: 2px;
text-align: center;
font-style: normal;
2024-05-21 16:12:54 +08:00
font-family: TCloudNumber, TCloudNumber;
2024-04-17 13:19:11 +08:00
background-image: linear-gradient(180deg, #7be546 0%, #38ffb1 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
2024-04-17 15:30:18 +08:00
2024-04-17 13:19:11 +08:00
.yellow {
font-size: 26px;
font-weight: bold;
letter-spacing: 2px;
text-align: center;
font-style: normal;
2024-05-21 16:12:54 +08:00
font-family: TCloudNumber, TCloudNumber;
2024-04-17 13:19:11 +08:00
background-image: linear-gradient(180deg, #ee8404 0%, #efd404 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
2024-04-17 15:30:18 +08:00
2024-04-17 13:19:11 +08:00
.red {
font-size: 26px;
font-weight: bold;
letter-spacing: 2px;
text-align: center;
font-style: normal;
2024-05-21 16:12:54 +08:00
font-family: TCloudNumber, TCloudNumber;
2024-04-17 13:19:11 +08:00
background-image: linear-gradient(180deg, #ff3e00 0%, #ed5a2d 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.historyimg {
2024-07-13 14:36:34 +08:00
width: 140px;
2024-04-17 13:19:11 +08:00
height: 19px;
background-repeat: no-repeat;
background-size: 100% 100%;
margin-top: 20px;
display: flex;
align-items: center;
justify-content: center;
2024-04-17 15:30:18 +08:00
2024-04-17 13:19:11 +08:00
span {
font-weight: 500;
font-size: 14px;
color: #ffffff;
letter-spacing: 4px;
font-style: normal;
font-family: PingFangSC, PingFang SC;
}
}
2024-04-17 15:30:18 +08:00
2024-04-17 13:19:11 +08:00
.historyimg1 {
background-image: url(@/assets/eduImg/jyImg4.png);
}
2024-04-17 15:30:18 +08:00
2024-04-17 13:19:11 +08:00
.historyimg2 {
background-image: url(@/assets/eduImg/jyImg6.png);
}
2024-04-17 15:30:18 +08:00
2024-04-17 13:19:11 +08:00
.historyimg3 {
background-image: url(@/assets/eduImg/jyImg5.png);
}
}
}
2024-04-17 15:30:18 +08:00
2024-04-17 13:19:11 +08:00
.czr-bj {
width: 529px;
border-radius: 2px;
2024-07-11 10:46:45 +08:00
// padding-top: 20px;
2024-06-11 11:11:28 +08:00
display: flex;
justify-content: space-around;
2024-06-20 16:06:15 +08:00
flex-direction: column;
2024-06-11 11:11:28 +08:00
// height: calc(100% - 26px);
// height: 200px;
// background: rgba(0, 103, 165, 0.18);
// box-shadow: inset 0px 0px 58px 0px rgba(37, 175, 252, 0.47);
2024-04-17 13:19:11 +08:00
// box-sizing: border-box;
.czrBox {
2024-06-11 11:11:28 +08:00
// height: 104px;
2024-06-20 16:06:15 +08:00
// width: 280px;
width: 100%;
2024-06-11 11:12:22 +08:00
min-height: 310px;
2024-06-11 11:11:28 +08:00
display: flex;
flex-direction: column;
align-items: center;
2024-04-17 15:25:43 +08:00
.column {
height: calc(100% - 26px);
overflow-y: auto;
2024-04-17 16:03:39 +08:00
font-size: 14px;
color: #ffffff;
padding-left: 18px;
2024-04-17 16:53:36 +08:00
padding-right: 18px;
2024-04-17 15:25:43 +08:00
}
2024-04-17 13:19:11 +08:00
}
2024-06-20 16:06:15 +08:00
.clue {
display: flex;
align-items: center;
margin-top: 37px;
.clueBox {
width: 171px;
height: 173px;
display: flex;
flex-direction: column;
align-items: center;
background-image: url(@/assets/eduImg/xxBJ.png);
background-repeat: no-repeat;
background-size: 100% 100%;
.clueTitle {
margin-top: 22px;
font-family: PangMenZhengDao, PangMenZhengDao;
font-weight: normal;
font-size: 20px;
color: #ffffff;
letter-spacing: 1px;
text-shadow: 0px 2px 4px #3575f9;
text-align: center;
font-style: normal;
}
.clueNum {
margin-top: 42px;
font-family: DINAlternate, DINAlternate;
font-weight: bold;
font-size: 32px;
color: #ffffff;
letter-spacing: 1px;
text-align: center;
font-style: normal;
}
.clueUnit {
margin-top: 4px;
font-weight: 500;
font-size: 16px;
color: #9cdeff;
text-align: center;
font-style: normal;
font-family: PingFangSC, PingFang SC;
}
}
.clueBox:nth-child(2) {
margin: 0 20px;
.clueTitle {
margin-top: 10px;
}
.clueNum {
margin-top: 28px;
}
}
}
2024-04-17 15:30:18 +08:00
2024-04-17 13:19:11 +08:00
.situation {
2024-06-11 11:11:28 +08:00
width: 196px;
height: 45px;
2024-04-17 13:19:11 +08:00
background-repeat: no-repeat;
background-size: 100% 100%;
2024-06-11 11:11:28 +08:00
margin-bottom: 16px;
2024-04-17 13:19:11 +08:00
}
2024-04-17 15:30:18 +08:00
2024-04-17 13:19:11 +08:00
.situation1 {
2024-06-11 11:11:28 +08:00
background-image: url(@/assets/images/education/xs.png);
2024-04-17 13:19:11 +08:00
}
2024-04-17 15:30:18 +08:00
2024-04-17 13:19:11 +08:00
.situation2 {
2024-06-11 11:11:28 +08:00
background-image: url(@/assets/images/education/xs2.png);
2024-04-17 13:19:11 +08:00
}
2024-04-17 15:30:18 +08:00
2024-04-17 13:19:11 +08:00
.situation3 {
2024-06-11 11:11:28 +08:00
background-image: url(@/assets/images/education/xs1.png);
}
.situation4 {
background-image: url(@/assets/images/education/xs3.png);
2024-04-17 13:19:11 +08:00
}
2024-04-17 15:25:43 +08:00
}
2024-05-13 13:29:26 +08:00
2024-04-17 15:25:43 +08:00
.school {
display: flex;
flex-direction: column;
justify-content: space-around;
2024-05-13 13:29:26 +08:00
2024-04-17 15:25:43 +08:00
.schoolaBox {
display: flex;
justify-content: space-between;
}
2024-05-13 13:29:26 +08:00
2024-04-17 15:25:43 +08:00
.schoola {
width: 124px;
height: 79px;
margin-top: 20px;
2024-04-17 17:30:39 +08:00
padding: 2px 0 14px 0;
2024-04-17 15:25:43 +08:00
box-sizing: border-box;
background-image: url(@/assets/eduImg/jyImg3.png);
background-repeat: no-repeat;
background-size: 100% 100%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
justify-content: space-between;
2024-05-13 13:29:26 +08:00
2024-04-17 15:25:43 +08:00
span {
2024-04-17 16:53:36 +08:00
// font-weight: 500;
// font-size: 14px;
// color: #ffffff;
// letter-spacing: 4px;
// font-style: normal;
// font-family: PingFangSC, PingFang SC;
2024-05-21 16:12:54 +08:00
font-family: TCloudNumber, TCloudNumber;
2024-04-17 17:30:39 +08:00
// font-weight: bold;
font-size: 23px;
2024-04-17 15:25:43 +08:00
color: #ffffff;
2024-04-17 16:53:36 +08:00
line-height: 30px;
letter-spacing: 1px;
text-shadow: 0px 0px 23px rgba(0, 52, 52, 0.5);
text-align: center;
2024-04-17 15:25:43 +08:00
font-style: normal;
2024-04-17 16:53:36 +08:00
}
2024-05-13 13:29:26 +08:00
2024-04-17 16:53:36 +08:00
.schoola1 {
2024-04-17 15:25:43 +08:00
font-family: PingFangSC, PingFang SC;
2024-04-17 16:53:36 +08:00
font-weight: 500;
font-size: 16px;
color: #ffffff;
line-height: 22px;
letter-spacing: 3px;
text-shadow: 0px 0px 4px rgba(60, 145, 249, 0.65);
text-align: center;
font-style: normal;
2024-04-17 15:25:43 +08:00
}
}
2024-05-13 13:29:26 +08:00
2024-04-17 15:25:43 +08:00
.schoolb {
width: 550px;
height: 241px;
// height: calc(100% - 0px);
background-image: url(@/assets/eduImg/jyImg2.png);
background-repeat: no-repeat;
background-size: 100% 100%;
margin-top: 20px;
display: flex;
flex-direction: column;
padding: 10px 0;
box-sizing: border-box;
2024-06-04 14:34:59 +08:00
position: relative;
2024-05-13 13:29:26 +08:00
2024-06-04 14:34:59 +08:00
.gkTop {
position: absolute;
top: 4px;
left: 170px;
animation: example 3s infinite linear;
}
@keyframes example {
0% {
transform: translateY(0);
}
25% {
transform: translateY(-3px);
}
50% {
transform: translateY(0);
}
75% {
transform: translateY(3px);
}
100% {
transform: translateY(0);
}
}
.gkMove {
position: absolute;
top: 4px;
left: -2px;
width: 98%;
height: 96%;
}
2024-04-17 15:25:43 +08:00
span {
font-weight: 500;
font-size: 14px;
color: #ffffff;
letter-spacing: 4px;
font-style: normal;
font-family: PingFangSC, PingFang SC;
}
2024-05-13 13:29:26 +08:00
2024-04-17 15:25:43 +08:00
.grade {
display: flex;
justify-content: space-between;
padding: 36px 0 0px 18px;
2024-05-13 13:29:26 +08:00
2024-04-17 15:25:43 +08:00
.schoolbs {
2024-04-17 16:53:36 +08:00
// width: 128px;
2024-07-17 14:29:42 +08:00
cursor: pointer;
2024-04-17 15:25:43 +08:00
height: 41px;
2024-04-17 16:53:36 +08:00
padding: 0px 20px 0 30px;
2024-04-17 15:25:43 +08:00
background-image: url(@/assets/eduImg/jyImg1.png);
background-repeat: no-repeat;
background-size: 100% 100%;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
2024-05-13 13:29:26 +08:00
2024-04-17 15:25:43 +08:00
.spot {
position: relative;
margin-right: 7px;
}
2024-05-13 13:29:26 +08:00
2024-04-17 15:25:43 +08:00
/* 添加伪元素圆点 */
.spot::before {
content: "";
position: absolute;
top: 50%;
2024-05-13 13:29:26 +08:00
left: -16px;
/* 调整圆点的位置 */
2024-04-17 15:25:43 +08:00
transform: translateY(-50%);
2024-04-17 16:53:36 +08:00
width: 6px;
height: 6px;
2024-04-17 15:25:43 +08:00
background-color: rgba(0, 230, 255, 1);
border-radius: 50%;
2024-04-17 16:53:36 +08:00
box-shadow: 0px 0px 7px 0px #00ffd3;
filter: blur(0px);
2024-04-17 15:25:43 +08:00
}
}
2024-05-13 13:29:26 +08:00
2024-04-17 15:25:43 +08:00
.grade1 {
2024-07-17 16:45:47 +08:00
padding: 12px 110px 0 116px;
2024-04-17 15:25:43 +08:00
box-sizing: border-box;
}
}
}
2024-05-13 13:29:26 +08:00
2024-04-17 16:20:53 +08:00
.fundingBox {
2024-04-17 16:03:39 +08:00
display: flex;
2024-04-17 16:20:53 +08:00
flex-direction: column;
2024-04-17 16:03:39 +08:00
align-items: center;
2024-05-13 13:29:26 +08:00
2024-04-17 16:20:53 +08:00
.funding {
width: 520px;
height: 34px;
margin-top: 20px;
// padding: 10px 0 14px 0;
box-sizing: border-box;
background-image: url(@/assets/eduImg/jyImg17.png);
background-repeat: no-repeat;
background-size: 100% 100%;
2024-04-17 16:03:39 +08:00
display: flex;
align-items: center;
justify-content: space-around;
2024-05-13 13:29:26 +08:00
2024-04-17 16:20:53 +08:00
// align-items: center;
// justify-content: center;
// flex-direction: column;
// justify-content: space-between;
2024-04-17 16:03:39 +08:00
span {
font-family: PingFangSC, PingFang SC;
2024-07-11 10:46:45 +08:00
font-weight: 600;
font-size: 17px;
2024-04-17 16:03:39 +08:00
color: #ffffff;
2024-04-17 16:20:53 +08:00
line-height: 20px;
2024-04-17 16:03:39 +08:00
letter-spacing: 3px;
}
}
2024-05-13 13:29:26 +08:00
2024-04-17 16:20:53 +08:00
.rolling {
width: 100%;
2024-04-18 11:52:01 +08:00
height: 200px;
2024-04-17 16:20:53 +08:00
// height: calc(100% - 26px);
overflow-y: auto;
display: flex;
2024-04-17 16:53:36 +08:00
flex-direction: column;
align-items: center;
2024-04-18 14:52:27 +08:00
padding-left: 6px;
2024-05-13 13:29:26 +08:00
2024-04-17 16:20:53 +08:00
.fundingContent {
display: flex;
align-items: center;
justify-content: space-around;
margin-top: 10px;
2024-04-18 14:52:27 +08:00
width: 93.2%;
2024-05-23 11:47:43 +08:00
// min-height: 34px;
padding: 4px 0;
2024-04-17 16:20:53 +08:00
box-sizing: border-box;
background-image: url(@/assets/eduImg/jyImg16.png);
span {
font-family: PingFangSC, PingFang SC;
2024-07-15 10:59:10 +08:00
font-weight: 500;
font-size: 16px;
2024-04-17 16:20:53 +08:00
color: #ffffff;
letter-spacing: 3px;
text-align: left;
font-style: normal;
2024-05-14 10:00:40 +08:00
width: 33%;
padding-left: 50px;
2024-04-17 16:20:53 +08:00
}
}
}
}
2024-05-13 13:29:26 +08:00
2024-04-17 17:30:39 +08:00
.rating {
width: 50%;
display: flex;
flex-direction: column;
align-items: center;
2024-05-13 13:29:26 +08:00
2024-04-17 17:30:39 +08:00
.ratingBtn {
display: flex;
// align-items: center;
2024-04-18 10:47:38 +08:00
.onImg {
2024-04-17 17:30:39 +08:00
width: 62px;
height: 29px;
2024-04-18 10:47:38 +08:00
background-image: url(@/assets/eduImg/jyImg19.png);
2024-04-17 17:30:39 +08:00
background-repeat: no-repeat;
background-size: 100% 100%;
2024-05-13 13:29:26 +08:00
cursor: pointer;
/* 添加指针样式以指示可点击 */
2024-04-17 17:30:39 +08:00
}
2024-04-18 10:47:38 +08:00
.ratingImg {
2024-04-17 17:30:39 +08:00
width: 62px;
height: 29px;
2024-04-18 10:47:38 +08:00
background-image: url(@/assets/eduImg/jyImg18.png);
2024-04-17 17:30:39 +08:00
background-repeat: no-repeat;
background-size: 100% 100%;
}
2024-05-13 13:29:26 +08:00
2024-04-17 17:30:39 +08:00
.onImg.active {
width: 62px;
height: 29px;
background-image: url(@/assets/eduImg/jyImg18.png);
background-repeat: no-repeat;
background-size: 100% 100%;
}
2024-05-13 13:29:26 +08:00
2024-04-17 17:30:39 +08:00
span {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 400;
font-size: 14px;
color: #ffffff;
letter-spacing: 1px;
font-family: PingFangSC, PingFang SC;
}
}
}
2024-04-17 15:25:43 +08:00
2024-04-17 13:08:03 +08:00
.selectLint {
2024-04-17 13:51:18 +08:00
width: 94%;
2024-04-17 13:08:03 +08:00
display: flex;
margin: 30px 0 10px;
justify-content: space-between;
.selectBox {
width: 48%;
2024-04-17 16:20:53 +08:00
background-image: url(@/assets/eduImg/jyImg7.png);
2024-04-17 15:25:43 +08:00
background-repeat: no-repeat;
background-size: 100% 100%;
2024-04-17 13:08:03 +08:00
}
}
2024-04-17 16:53:36 +08:00
.column::-webkit-scrollbar {
2024-05-13 13:29:26 +08:00
display: none;
/* Chrome Safari */
2024-04-17 16:53:36 +08:00
}
2024-05-13 13:29:26 +08:00
2024-04-17 16:53:36 +08:00
/* 滚动条整体部分 */
.rolling::-webkit-scrollbar {
width: 5px;
// height: 10px;
}
2024-05-13 13:29:26 +08:00
2024-04-17 16:53:36 +08:00
/* 滚动槽 */
.rolling::-webkit-scrollbar-track {
border-radius: 1px;
background: rgba(0, 128, 231, 0.56);
-webkit-box-shadow: inset 0 0 6px rgba(139, 139, 139, 0.3);
}
2024-05-13 13:29:26 +08:00
2024-04-17 16:53:36 +08:00
/* 滚动条滑块样式 */
.rolling::-webkit-scrollbar-thumb {
background-clip: content-box;
border-radius: 6px;
background: rgba(0, 162, 231, 1);
-webkit-box-shadow: inset 0 0 6px rgba(20, 20, 20, 0.3);
}
2024-05-13 13:29:26 +08:00
2024-04-19 09:56:38 +08:00
.t_1 {
margin: 10px auto;
width: 100%;
height: 52px;
background-image: url(@/assets/images/education/title.png);
background-repeat: no-repeat;
background-size: 100% 100%;
}
2024-05-13 13:29:26 +08:00
2024-04-19 09:56:38 +08:00
.t_2 {
2024-04-22 09:32:41 +08:00
margin-top: 5px;
2024-04-19 09:56:38 +08:00
padding: 0 10px;
display: flex;
justify-content: space-around;
2024-05-13 13:29:26 +08:00
2024-04-22 09:32:41 +08:00
.t_2_1 {
display: flex;
flex-direction: column;
align-items: center;
2024-05-13 13:29:26 +08:00
2024-04-19 09:56:38 +08:00
.top {
font-size: 26px;
color: #ffffff;
line-height: 30px;
}
2024-05-13 13:29:26 +08:00
2024-04-22 09:32:41 +08:00
.t_3 {
width: 135px;
height: 90px;
background-image: url(@/assets/images/education/fk.png);
2024-04-19 09:56:38 +08:00
background-repeat: no-repeat;
background-size: 100% 100%;
2024-04-22 09:32:41 +08:00
position: relative;
.left1 {
position: absolute;
left: 15px;
top: 35px;
width: 40px;
height: 40px;
background-image: url(@/assets/images/education/lset.png);
background-repeat: no-repeat;
background-size: 100% 100%;
}
2024-05-13 13:29:26 +08:00
2024-04-22 09:32:41 +08:00
.left2 {
position: absolute;
left: 15px;
top: 35px;
width: 40px;
height: 40px;
background-image: url(@/assets/images/education/dszn.png);
background-repeat: no-repeat;
background-size: 100% 100%;
}
2024-05-13 13:29:26 +08:00
2024-04-22 09:32:41 +08:00
.left3 {
position: absolute;
left: 15px;
top: 35px;
width: 40px;
height: 40px;
background-image: url(@/assets/images/education/dqjt.png);
background-repeat: no-repeat;
background-size: 100% 100%;
}
2024-05-13 13:29:26 +08:00
2024-04-22 09:32:41 +08:00
.left4 {
position: absolute;
left: 15px;
top: 35px;
width: 40px;
height: 40px;
background-image: url(@/assets/images/education/xsdb.png);
background-repeat: no-repeat;
background-size: 100% 100%;
}
2024-05-13 13:29:26 +08:00
2024-04-22 09:32:41 +08:00
.right {
position: absolute;
left: 65px;
top: 35px;
width: 38px;
height: 40px;
font-family: PingFangSC, PingFang SC;
font-weight: 500;
font-size: 15px;
color: #ffffff;
line-height: 20px;
letter-spacing: 4px;
text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.65);
text-align: center;
font-style: normal;
}
2024-04-19 09:56:38 +08:00
}
}
}
2024-07-17 16:45:47 +08:00
.font {
2024-07-13 13:37:35 +08:00
font-size: 16px !important;
}
2024-06-24 16:04:31 +08:00
:deep(.el-table) {
background: rgba(32, 64, 115, 1);
--el-table-border-color: none;
border: 1px solid #7aceff;
}
.table {
:deep(.el-table td.el-table__cell, .el-table th.el-table__cell.is-leaf) {
border: none !important;
padding-left: 10px !important;
}
:deep(.el-table td.el-table__cell) {
padding-left: 10px;
}
}
:deep(.el-table--enable-row-hover .el-table__body tr:hover > td) {
background-color: #2f4b74;
}
:deep(.el-table__empty-block) {
background-color: #122560;
}
:deep(.el-table .el-table__row) {
border-bottom: none;
}
2024-04-17 13:08:03 +08:00
</style>
<style lang="scss">
.selectBox {
.el-select--large .el-select__wrapper {
2024-07-15 10:20:39 +08:00
// font-size: 18px !important;
2024-07-17 16:45:47 +08:00
span,
p,
a {
font-size: 16px;
}
2024-04-17 13:08:03 +08:00
}
2024-04-17 13:45:32 +08:00
2024-04-17 13:08:03 +08:00
.el-select__wrapper {
2024-04-17 15:25:43 +08:00
background-color: rgba(255, 255, 255, 0) !important;
2024-04-17 13:08:03 +08:00
}
2024-04-17 13:45:32 +08:00
2024-04-17 15:25:43 +08:00
.el-select__placeholder {
2024-04-17 13:08:03 +08:00
color: #fff !important;
}
2024-04-17 13:45:32 +08:00
2024-04-17 15:25:43 +08:00
.el-select__caret {
2024-04-17 13:08:03 +08:00
color: #fff !important;
font-size: 18px !important;
}
2024-04-17 13:19:11 +08:00
}
2024-04-12 09:26:48 +08:00
</style>