@@ -281,8 +308,7 @@ export default {
name: '日'
}
],
- stompClientMarket: null,
- stompClient: null,
+ overview: {},
goodsSell: [],
cryptoList: [],
courses: [],
@@ -318,6 +344,11 @@ export default {
},
// 获取文本表格数据
getList() {
+ // 本院数据概览
+ this.$post(this.api.overviewOfOurSchoolData).then(({ data }) => {
+ this.overview = data
+ }).catch(res => {})
+
// 本月综合学习积极性最高的实验课程
this.$post(this.api.getTheMostUsedCoursesInOurSchool).then(({ data }) => {
this.courses = data
@@ -612,8 +643,8 @@ export default {
data: courseData[i]
})
++index
+ if (index > 3) index = 0
}
- console.log(33, courseData)
const option = {
tooltip: {
trigger: 'axis',
@@ -633,7 +664,7 @@ export default {
},
grid: {
left: '30',
- top: '25%',
+ top: '27%',
right: '10',
bottom: '5%',
containLabel: true
diff --git a/src/styles/page/screen.scss b/src/styles/page/screen.scss
index 9e79c4e..fd44018 100644
--- a/src/styles/page/screen.scss
+++ b/src/styles/page/screen.scss
@@ -7,7 +7,7 @@
top: 0;
left: 0;
width: 100%;
- height: 100%;
+ height: 720px;
}
.wrap {
width: 100%;
@@ -169,6 +169,7 @@
font-family: 'yjsz';
color: #00f3ff;
text-shadow: 0 0 25px #00d8ff;
+ text-align: center;
}
.name {
font-size: 16px;
@@ -187,7 +188,37 @@
.stat-wrap {
position: relative;
height: 100%;
- background: url(../../assets/img/screen/stat.png) 0 -10px/100% auto no-repeat;
+ background: url(../../assets/img/screen/stat.png) 0 0/100% auto no-repeat;
+ .num {
+ position: absolute;
+ width: 100px;
+ text-align: center;
+ font-size: 32px;
+ font-weight: bold;
+ color: #00d8ff;
+ }
+ .num1 {
+ top: 220px;
+ left: 10px;
+ }
+ .num2 {
+ top: 25px;
+ right: 160px;
+ }
+ .num3 {
+ top: 280px;
+ left: 185px;
+ }
+ .num4 {
+ top: 205px;
+ right: 270px;
+ }
+ .num5 {
+ bottom: 250px;
+ right: 40px;
+ width: 140px;
+ font-size: 20px;
+ }
}
.main_table {
width: 100%;
@@ -226,13 +257,6 @@
}
}
}
-.charts {
- display: flex;
- .chart {
- width: 50%;
- height: 220px;
- }
-}
.header{
z-index: 2;
position: relative;
@@ -254,6 +278,7 @@
line-height: 80px;
color: #fff;
}
+$height: 250px;
.content{
display: flex;
padding: 20px;
@@ -266,13 +291,16 @@
}
.item {
position: relative;
- height: 280px;
+ height: $height;
margin-bottom: 30px;
border: 1px solid #2C58A6;
box-shadow: 0 0 10px #2C58A6;
// background-color: #073a7d;
}
}
+.chart {
+ height: $height;
+}
.list {
padding: 0 15px;
margin-top: 25px;