|
@@ -1,13 +1,231 @@
|
|
|
<template>
|
|
|
<div class="app-container home">
|
|
|
- 广州医科大学首页
|
|
|
+ <div class="showImg">
|
|
|
+ <img
|
|
|
+ @mouseover="changeInterval(true)"
|
|
|
+ @mouseleave="changeInterval(false)"
|
|
|
+ v-for="item in imgArr"
|
|
|
+ :key="item.id"
|
|
|
+ :src="require(item.url)"
|
|
|
+ v-show="item.id === currentIndex"
|
|
|
+ />
|
|
|
+ <!-- <div @click="clickIcon('up')" class="iconDiv icon-left">
|
|
|
+ <i class="el-icon-caret-left"></i>
|
|
|
+ </div>
|
|
|
+ <div @click="clickIcon('down')" class="iconDiv icon-right">
|
|
|
+ <i class="el-icon-caret-right"></i>
|
|
|
+ </div> -->
|
|
|
+ <div class="banner-circle">
|
|
|
+ <ul>
|
|
|
+ <li
|
|
|
+ @click="changeImg(item.id)"
|
|
|
+ v-for="item in imgArr"
|
|
|
+ :key="item.id"
|
|
|
+ :class="item.id === currentIndex ? 'active' : ''"
|
|
|
+ ></li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div ref="chartp" style="width: 50%; height: 400px"></div>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-
|
|
|
+import { countNumber } from "@/api/asset/borrow";
|
|
|
+export default {
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ currentIndex: 0, //当前所在图片下标
|
|
|
+ timer: null, //定时轮询
|
|
|
+ imgArr: [
|
|
|
+ { id: 0, url: "@/assets/images/1.jpg" }
|
|
|
+ ],
|
|
|
+ countData: [
|
|
|
+ {countNum: '', typeName: ''}
|
|
|
+ ],
|
|
|
+ };
|
|
|
+ },
|
|
|
+ mounted() {
|
|
|
+ this.startInterval();
|
|
|
+ this.getEchartPicture();
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ //开启定时器
|
|
|
+ startInterval() {
|
|
|
+ // 事件里定时器应该先清除在设置,防止多次点击直接生成多个定时器
|
|
|
+ clearInterval(this.timer);
|
|
|
+ this.timer = setInterval(() => {
|
|
|
+ this.currentIndex++;
|
|
|
+ if (this.currentIndex > this.imgArr.length - 1) {
|
|
|
+ this.currentIndex = 0;
|
|
|
+ }
|
|
|
+ }, 3000);
|
|
|
+ },
|
|
|
+ // 点击左右箭头
|
|
|
+ clickIcon(val) {
|
|
|
+ if (val === "down") {
|
|
|
+ this.currentIndex++;
|
|
|
+ if (this.currentIndex === this.imgArr.length) {
|
|
|
+ this.currentIndex = 0;
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ /* 第一种写法
|
|
|
+ this.currentIndex--;
|
|
|
+ if(this.currentIndex < 0){
|
|
|
+ this.currentIndex = this.imgArr.length-1;
|
|
|
+ } */
|
|
|
+ // 第二种写法
|
|
|
+ if (this.currentIndex === 0) {
|
|
|
+ this.currentIndex = this.imgArr.length;
|
|
|
+ }
|
|
|
+ this.currentIndex--;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 点击控制圆点
|
|
|
+ changeImg(index) {
|
|
|
+ this.currentIndex = index;
|
|
|
+ },
|
|
|
+ //鼠标移入移出控制
|
|
|
+ changeInterval(val) {
|
|
|
+ if (val) {
|
|
|
+ clearInterval(this.timer);
|
|
|
+ } else {
|
|
|
+ this.startInterval();
|
|
|
+ }
|
|
|
+ },
|
|
|
+ async getEchartPicture() {
|
|
|
+ const chartp = this.$refs.chartp;
|
|
|
+ if (chartp) {
|
|
|
+ const myChart = this.$echarts.init(chartp);
|
|
|
+ await countNumber().then(response => {
|
|
|
+ this.countData = response.data;
|
|
|
+ })
|
|
|
+ let arr = []
|
|
|
+ this.countData.forEach(item=>{
|
|
|
+ arr.push({name:item.typeName,value:item.countNum})
|
|
|
+ })
|
|
|
+ let option = {
|
|
|
+ title: {
|
|
|
+ text: "常用设备数据分析图",
|
|
|
+ left: "center",
|
|
|
+ padding: [0, 0, "5px", 0],
|
|
|
+ },
|
|
|
+ tooltip: {
|
|
|
+ trigger: "item",
|
|
|
+ },
|
|
|
+ legend: {
|
|
|
+ top: "5%",
|
|
|
+ left: "center",
|
|
|
+ },
|
|
|
+ series: [
|
|
|
+ {
|
|
|
+ name: "Access From",
|
|
|
+ type: "pie",
|
|
|
+ radius: ["40%", "70%"],
|
|
|
+ avoidLabelOverlap: false,
|
|
|
+ itemStyle: {
|
|
|
+ borderRadius: 10,
|
|
|
+ borderColor: "#fff",
|
|
|
+ borderWidth: 2,
|
|
|
+ },
|
|
|
+ label: {
|
|
|
+ show: false,
|
|
|
+ position: "center",
|
|
|
+ },
|
|
|
+ emphasis: {
|
|
|
+ label: {
|
|
|
+ show: true,
|
|
|
+ fontSize: 20,
|
|
|
+ fontWeight: "bold",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ labelLine: {
|
|
|
+ show: false,
|
|
|
+ },
|
|
|
+ data: arr,
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ };
|
|
|
+ myChart.setOption(option);
|
|
|
+ window.addEventListener("resize", function () {
|
|
|
+ myChart.resize();
|
|
|
+ });
|
|
|
+ }
|
|
|
+ },
|
|
|
+ },
|
|
|
+};
|
|
|
</script>
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
+* {
|
|
|
+ padding: 0;
|
|
|
+ margin: 0;
|
|
|
+}
|
|
|
+/* 清除li前面的圆点 */
|
|
|
+li {
|
|
|
+ list-style-type: none;
|
|
|
+}
|
|
|
+.showImg {
|
|
|
+ position: relative;
|
|
|
+ width: 80%;
|
|
|
+ height: 250px;
|
|
|
+ margin: 30px auto;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+/* 轮播图片 */
|
|
|
+.showImg img {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+/* 箭头图标 */
|
|
|
+.iconDiv {
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ transform: translateY(-50%);
|
|
|
+ width: 30px;
|
|
|
+ height: 30px;
|
|
|
+ border: 1px solid #666;
|
|
|
+ border-radius: 15px;
|
|
|
+ background-color: rgba(125, 125, 125, 0.2);
|
|
|
+ line-height: 30px;
|
|
|
+ text-align: center;
|
|
|
+ font-size: 25px;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+.iconDiv:hover {
|
|
|
+ background-color: white;
|
|
|
+}
|
|
|
+.icon-left {
|
|
|
+ left: 10px;
|
|
|
+}
|
|
|
+.icon-right {
|
|
|
+ right: 10px;
|
|
|
+}
|
|
|
+
|
|
|
+/* 控制圆点 */
|
|
|
+.banner-circle {
|
|
|
+ position: absolute;
|
|
|
+ bottom: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 20px;
|
|
|
+}
|
|
|
+.banner-circle ul {
|
|
|
+ margin: 0 50px;
|
|
|
+ height: 100%;
|
|
|
+ text-align: right;
|
|
|
+}
|
|
|
+.banner-circle ul li {
|
|
|
+ display: inline-block;
|
|
|
+ width: 14px;
|
|
|
+ height: 14px;
|
|
|
+ margin: 0 5px;
|
|
|
+ border-radius: 7px;
|
|
|
+ background-color: rgba(125, 125, 125, 0.8);
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+.active {
|
|
|
+ background-color: black !important;
|
|
|
+}
|
|
|
</style>
|
|
|
|