|
@@ -1,13 +1,442 @@
|
|
|
<template>
|
|
|
+ <div class="app-container">
|
|
|
+ <div class="top-header">
|
|
|
+ </div>
|
|
|
+ <div class="main-content">
|
|
|
+ <div class="main-content-item">
|
|
|
+ <div class="text-item orange bor-8">
|
|
|
+ <div class="top-line-text">测评总次数</div>
|
|
|
+ <div class="middle-line-text">{{ allTestNum }}</div>
|
|
|
+ </div>
|
|
|
|
|
|
+ <div class="bor-8 text-bg">
|
|
|
+ <IndexSmallTitle title="筛查进度"/>
|
|
|
+ <template v-if="userType === '4'">
|
|
|
+ <IndexProgressBar
|
|
|
+ v-for="(item, index) in screeningProgress"
|
|
|
+ :key="index"
|
|
|
+ :text="item.name"
|
|
|
+ :percentage="item.value"
|
|
|
+ />
|
|
|
+ </template>
|
|
|
+ <IndexSmallTitle title="年龄占比"/>
|
|
|
+ <IndexSmallPie :legend-data="groupEvaluationRatioData" />
|
|
|
+ </div>
|
|
|
+ <div class="bor-8 text-bg end">
|
|
|
+ <IndexSmallTitle title="近段时间主要使用的:"/>
|
|
|
+ <el-tabs>
|
|
|
+ <el-tab-pane label="量表">
|
|
|
+ <el-table :data="scaleList" border size="small" style="width: 100%" :height="tableHeight">
|
|
|
+ <el-table-column prop="name" label="名称"></el-table-column>
|
|
|
+ <el-table-column prop="count" label="次数"></el-table-column>
|
|
|
+ </el-table>
|
|
|
+ </el-tab-pane>
|
|
|
+ <el-tab-pane label="认知任务">
|
|
|
+ <el-table :data="cognitiveTaskList" border size="small" style="width: 100%" :height="tableHeight">
|
|
|
+ <el-table-column prop="name" label="名称"></el-table-column>
|
|
|
+ <el-table-column prop="count" label="次数"></el-table-column>
|
|
|
+ </el-table>
|
|
|
+ </el-tab-pane>
|
|
|
+ </el-tabs>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="main-content-item">
|
|
|
+ <div class="text-item blue bor-8">
|
|
|
+ <div class="top-line-text">参与测评总人数</div>
|
|
|
+ <div class="middle-line-text">{{ allUserNum }}</div>
|
|
|
+ </div>
|
|
|
+ <div class="bor-8 text-bg">
|
|
|
+ <IndexSmallTitle title="动态数据"/>
|
|
|
+ <IndexSmoothLine id="1" />
|
|
|
+ </div>
|
|
|
+ <div class="bor-8 text-bg end">
|
|
|
+ <IndexSmallTitle title="实时预警"/>
|
|
|
+ <el-tabs>
|
|
|
+ <el-tab-pane label="学生个体">
|
|
|
+ <el-table :data="attentionUserList" border size="small" style="width: 100%" :height="tableHeight">
|
|
|
+<!-- <el-table-column prop="name" label="名称"></el-table-column>-->
|
|
|
+<!-- <el-table-column prop="count" label="次数"></el-table-column>-->
|
|
|
+ </el-table>
|
|
|
+ </el-tab-pane>
|
|
|
+ <el-tab-pane label="群体">
|
|
|
+ <el-table :data="attentionGroupList" border size="small" style="width: 100%" :height="tableHeight">
|
|
|
+<!-- <el-table-column prop="name" label="名称"></el-table-column>-->
|
|
|
+<!-- <el-table-column prop="count" label="次数"></el-table-column>-->
|
|
|
+ </el-table>
|
|
|
+ </el-tab-pane>
|
|
|
+ </el-tabs>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="main-content-item">
|
|
|
+ <div class="map-item">
|
|
|
+ <div v-for="(item, index) in mapData" :key="index" class="map-item-unit">
|
|
|
+ <div class="point"></div>
|
|
|
+ <div class="text">
|
|
|
+ {{ item.institution_name }}:
|
|
|
+ {{ item.warnNum }}个
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="bor-8 text-bg">
|
|
|
+ <IndexSmallTitle title="测评结果风险等级"/>
|
|
|
+ <IndexBar :x-data="riskLevelData.xData" :y-data="riskLevelData.yData" />
|
|
|
+ </div>
|
|
|
+ <div class="bor-8 text-bg">
|
|
|
+ <IndexSmallTitle title="风险变化趋势"/>
|
|
|
+ <IndexSmoothLine id="2" color="#2AE3FF" transparent-color="rgba(42, 227, 255, 0)" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+import IndexSmallTitle from "../IndexSmallTitle/index.vue"
|
|
|
+import IndexProgressBar from "../IndexProgressBar/index.vue"
|
|
|
+import IndexSmallPie from "../../echarts/IndexSmallPie.vue"
|
|
|
+import IndexSmoothLine from "../../echarts/IndexSmoothLine.vue"
|
|
|
+import IndexBar from "../../echarts/IndexBar.vue"
|
|
|
+import { roundToFixed } from "../../../utils/utils"
|
|
|
+
|
|
|
export default {
|
|
|
- name: "AdminHome"
|
|
|
+ name: "AdminHome",
|
|
|
+ components: {
|
|
|
+ IndexSmallTitle,
|
|
|
+ IndexProgressBar,
|
|
|
+ IndexSmallPie,
|
|
|
+ IndexSmoothLine,
|
|
|
+ IndexBar
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ userType: '',
|
|
|
+
|
|
|
+ allTestNum: 0,
|
|
|
+ allUserNum: 0,
|
|
|
+ screeningProgress: [
|
|
|
+ { name: '学生', value: 0 }
|
|
|
+ ],
|
|
|
+
|
|
|
+ groupEvaluationRatioData: [],
|
|
|
+
|
|
|
+ dynamicData: {
|
|
|
+ xData: [],
|
|
|
+ yData: []
|
|
|
+ },
|
|
|
+
|
|
|
+ riskLevelData: {
|
|
|
+ xData: ['高风险', '无风险'],
|
|
|
+ yData: [0, 0]
|
|
|
+ },
|
|
|
+
|
|
|
+ tableHeight: 254, // table高度
|
|
|
+ scaleList: [],
|
|
|
+ cognitiveTaskList: [],
|
|
|
+ attentionUserList: [],
|
|
|
+ attentionGroupList: [],
|
|
|
+
|
|
|
+ mapData: []
|
|
|
+ }
|
|
|
+ },
|
|
|
+ created() {
|
|
|
+ this.userType = sessionStorage.getItem("f7a42fe7211f98ac7a60a285ac3a9528")
|
|
|
+ },
|
|
|
+ async mounted() {
|
|
|
+ this.allTestNum = await this.getAllTestNum()
|
|
|
+ this.allUserNum = await this.getAllUserNum()
|
|
|
+
|
|
|
+ this.screeningProgress[0].value = await this.finishUserNum()
|
|
|
+ if (this.userType === '4') {
|
|
|
+ let tempProgressArr = await this.finishInstitutionNum()
|
|
|
+ this.screeningProgress = [...this.screeningProgress, ...tempProgressArr]
|
|
|
+ }
|
|
|
+
|
|
|
+ this.groupEvaluationRatioData = await this.groupEvaluationRatio()
|
|
|
+ this.groupEvaluationRatioData = [
|
|
|
+ { name: '一年级', value: 10 },
|
|
|
+ { name: '二年级', value: 10 },
|
|
|
+ { name: '三年级', value: 10 },
|
|
|
+ { name: '四年级', value: 10 },
|
|
|
+ { name: '五年级', value: 10 },
|
|
|
+ { name: '六年级', value: 10 }
|
|
|
+ ]
|
|
|
+
|
|
|
+ await this.recentDetail()
|
|
|
+ this.scaleList = await this.recentSubjectDetail()
|
|
|
+
|
|
|
+ this.cognitiveTaskList = await this.recentTaskDetail()
|
|
|
+ this.riskLevelData.yData = await this.resultRiskLevel()
|
|
|
+
|
|
|
+ this.attentionUserList = await this.urgentAttentionUser()
|
|
|
+ this.attentionGroupList = await this.urgentAttentionGroup()
|
|
|
+
|
|
|
+ await this.riskChangeChart()
|
|
|
+ this.mapData = await this.psychologicalRiskMap()
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ // 查询测评总次数
|
|
|
+ getAllTestNum() {
|
|
|
+ return new Promise((resolve, reject) => {
|
|
|
+ this.$http.get(`/index/allTestNum`, {}, (res) => {
|
|
|
+ resolve(res.data.allTestNum)
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
+ // 查询测评总人数
|
|
|
+ getAllUserNum() {
|
|
|
+ return new Promise((resolve, reject) => {
|
|
|
+ this.$http.get(`/index/allUserNum`, {}, (res) => {
|
|
|
+ resolve(res.data.allUserNum)
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
+ // 查询学生完成进度
|
|
|
+ finishUserNum() {
|
|
|
+ return new Promise((resolve, reject) => {
|
|
|
+ this.$http.get(`/index/finishUserNum`, {}, (res) => {
|
|
|
+ resolve(roundToFixed(res.data.finishNum / res.data.allNum, 2))
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
+ // 查询学校完成进度
|
|
|
+ finishInstitutionNum() {
|
|
|
+ return new Promise((resolve, reject) => {
|
|
|
+ this.$http.get(`/index/finishInstitutionNum`, {}, (res) => {
|
|
|
+ resolve(res.data.map((item) => {
|
|
|
+ return {
|
|
|
+ name: item.institution_name,
|
|
|
+ value: roundToFixed(item.finishNum / item.allNum, 2)
|
|
|
+ }
|
|
|
+ }))
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
+ // 各个年龄段(年级)学生参与测评的比例
|
|
|
+ groupEvaluationRatio() {
|
|
|
+ return new Promise((resolve, reject) => {
|
|
|
+ this.$http.get(`/index/groupEvaluationRatio`, {}, (res) => {
|
|
|
+ resolve(res.data)
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
+ // 动态数据图表(近段时间测评活动情况)
|
|
|
+ recentDetail() {
|
|
|
+ return new Promise((resolve, reject) => {
|
|
|
+ this.$http.get(`/index/recentDetail`, {}, (res) => {
|
|
|
+ resolve()
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
+ // 近段时间主要使用量表:index/recentSubjectDetail
|
|
|
+ recentSubjectDetail() {
|
|
|
+ return new Promise((resolve, reject) => {
|
|
|
+ this.$http.get(`/index/recentSubjectDetail`, {}, (res) => {
|
|
|
+ resolve(res.data)
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
+ // 近段时间主要使用认知任务:index/recentTaskDetail
|
|
|
+ recentTaskDetail() {
|
|
|
+ return new Promise((resolve, reject) => {
|
|
|
+ this.$http.get(`/index/recentTaskDetail`, {}, (res) => {
|
|
|
+ resolve(res.data)
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
+ // 紧急关注的学生个体:index/urgentAttentionUser
|
|
|
+ urgentAttentionUser() {
|
|
|
+ return new Promise((resolve, reject) => {
|
|
|
+ this.$http.get(`/index/urgentAttentionUser`, {}, (res) => {
|
|
|
+ resolve(res.data)
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
+ // 紧急关注的群体信息:index/urgentAttentionGroup
|
|
|
+ urgentAttentionGroup() {
|
|
|
+ return new Promise((resolve, reject) => {
|
|
|
+ this.$http.get(`/index/urgentAttentionGroup`, {}, (res) => {
|
|
|
+ resolve(res.data)
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
+ // 测评结果风险等级柱状图:index/resultRiskLevel
|
|
|
+ resultRiskLevel() {
|
|
|
+ return new Promise((resolve, reject) => {
|
|
|
+ this.$http.get(`/index/resultRiskLevel`, {}, (res) => {
|
|
|
+ resolve([res.data.warnNum, res.data.unWarnNum])
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
+
|
|
|
+ // 风险变化趋势折线图:index/riskChangeChart
|
|
|
+ riskChangeChart() {
|
|
|
+ return new Promise((resolve, reject) => {
|
|
|
+ this.$http.get(`/index/riskChangeChart`, {}, (res) => {
|
|
|
+ resolve()
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
+ // 心理风险地图:index/psychologicalRiskMap
|
|
|
+ psychologicalRiskMap() {
|
|
|
+ return new Promise((resolve, reject) => {
|
|
|
+ this.$http.get(`/index/psychologicalRiskMap`, {}, (res) => {
|
|
|
+ resolve(res.data)
|
|
|
+ })
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
+.app-container {
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ top: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ overflow: hidden;
|
|
|
+ background-image: url('/static/assets/index/bg-pic.png');
|
|
|
+ background-size: 100% 100%;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-position: center; /* 可选,让图片居中对齐 */
|
|
|
+
|
|
|
+ .top-header {
|
|
|
+ width: 100%;
|
|
|
+ height: 65px;
|
|
|
+ background-image: url('/static/assets/index/bg-header.png');
|
|
|
+ background-size: 100% 100%;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-position: center; /* 可选,让图片居中对齐 */
|
|
|
+ }
|
|
|
+
|
|
|
+ .main-content {
|
|
|
+ width: 100%;
|
|
|
+ height: calc(100% - 65px);
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ justify-content: space-around;
|
|
|
+
|
|
|
+ .main-content-item {
|
|
|
+ flex: 1;
|
|
|
+ height: calc(100% - 18px);
|
|
|
+ margin: 6px 12px 12px 0;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+
|
|
|
+ &:first-child {
|
|
|
+ margin-left: 12px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .bor-8 {
|
|
|
+ border-radius: 8px;
|
|
|
+ overflow: hidden;
|
|
|
+ }
|
|
|
+
|
|
|
+ .text-bg {
|
|
|
+ width: calc(100% - 24px);
|
|
|
+ background-color: white;
|
|
|
+ padding: 12px;
|
|
|
+ margin-top: 16px;
|
|
|
+
|
|
|
+ &.end {
|
|
|
+ flex: 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ ::v-deep .el-tabs {
|
|
|
+ height: calc(100% - 26px);
|
|
|
+
|
|
|
+ .el-tabs__header {
|
|
|
+ padding-top: 3px !important;
|
|
|
+ margin-bottom: 6px;
|
|
|
+ }
|
|
|
|
|
|
+ .el-tabs__content {
|
|
|
+ height: calc(100% - 52px);
|
|
|
+
|
|
|
+ .el-tab-pane {
|
|
|
+ height: 100%;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .text-item {
|
|
|
+ background-size: 100% 100%;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-position: center; /* 可选,让图片居中对齐 */
|
|
|
+ color: white;
|
|
|
+ height: 130px;
|
|
|
+
|
|
|
+ &.blue {
|
|
|
+ background-image: url('/static/assets/index/bg-item-blue.png');
|
|
|
+ }
|
|
|
+
|
|
|
+ &.orange {
|
|
|
+ background-image: url('/static/assets/index/bg-item-orange.png');
|
|
|
+ }
|
|
|
+
|
|
|
+ .top-line-text {
|
|
|
+ margin: 12px 35px 8px;
|
|
|
+ line-height: 24px;
|
|
|
+ font-size: 22px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .middle-line-text {
|
|
|
+ width: 100%;
|
|
|
+ text-align: center;
|
|
|
+ font-size: 56px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .map-item {
|
|
|
+ width: calc(100% - 16px);
|
|
|
+ height: 284px;
|
|
|
+ margin: 0 8px 20px;
|
|
|
+ background-image: url('/static/assets/index/bg-map.png');
|
|
|
+ background-size: 100% 100%;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-position: center; /* 可选,让图片居中对齐 */
|
|
|
+ position: relative;
|
|
|
+
|
|
|
+ .map-item-unit {
|
|
|
+ width: 180px;
|
|
|
+ height: 100px;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ left: 60%;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+ font-size: 15px;
|
|
|
+ z-index: 29;
|
|
|
+
|
|
|
+ .point {
|
|
|
+ width: 12px;
|
|
|
+ height: 12px;
|
|
|
+ border-radius: 50%;
|
|
|
+ background-color: #f68181;
|
|
|
+ }
|
|
|
+
|
|
|
+ .text {
|
|
|
+ margin: 4px 0 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
</style>
|