From e713b378b01d189f972cfb5b9eae749ee95a8b51 Mon Sep 17 00:00:00 2001
From: loulijun2021 <1694218219@qq.com>
Date: 星期六, 29 十月 2022 13:48:00 +0800
Subject: [PATCH] 1.解决两个账号登录,是否被挤掉的问题
---
src/views/xtsy/index.vue | 63 +++++++++++++++++++++++--------
1 files changed, 46 insertions(+), 17 deletions(-)
diff --git a/src/views/xtsy/index.vue b/src/views/xtsy/index.vue
index a1c8a2e..0d6325c 100644
--- a/src/views/xtsy/index.vue
+++ b/src/views/xtsy/index.vue
@@ -1,6 +1,6 @@
<template>
<!-- <div>-->
- <div class="body">
+ <div class="body" style=" padding: 30px 10px 0 20px;background-color: #eaecef;" :style="{height:mainHeight+'px'}">
<div style="">
<div class="title"><i class="el-icon-s-fold" style="margin-right: 5px" />瀹炴椂鏁版嵁</div>
<div class="top">
@@ -81,19 +81,23 @@
<div class="center">
<div class="title" style="margin-top: 20px"><i class="el-icon-s-fold" style="margin-right: 5px" />鐢ㄦ埛姒傚喌</div>
<div class="center_content">
- <div class="content">
+ <div class="content" :style="{height: isIpad?'300px':'400px'}">
<div class="content_title">娲昏穬鏃舵</div>
<div>
- <div style="width: 100%;height: 300px;margin: 20px 0 0 10px">
- <div id="line01" style="width: 100%;height:100%" />
- </div>
+ <div
+ id="line01"
+ style="width: 100%;"
+ :style="{height:isIpad?'200px':'300px'}"
+ />
</div>
</div>
- <div class="content">
+ <div class="content" :style="{height: isIpad?'300px':'400px'}">
<div class="content_title">Top鐢ㄦ埛</div>
- <div style="width: 100%;height: 300px;margin: 20px 0 0 10px">
- <div id="bar01" style="width: 100%;height:100%" />
- </div>
+ <div
+ id="bar01"
+ style="width: 100%;"
+ :style="{height:isIpad?'200px':'300px'}"
+ />
</div>
</div>
</div>
@@ -108,19 +112,37 @@
name: 'Index',
data() {
return {
+ isIpad: false,
+ mainHeight: 0,
+ tableHeight: 0,
barTopColor01: ['42,197,137', '187,236,218'],
barTopColor02: ['248,216,76', '255,250,238'],
barTopColor03: ['42,197,137', '187,236,218'],
barTopColor04: ['232,103,103', '253,240,240']
-
}
},
created() {
+
},
mounted() {
- this.handleEcharts()
+ window.addEventListener('resize', this.getHeight)
+ this.getHeight()
+ setTimeout(() => {
+ this.handleEcharts()
+ }, 10)
},
methods: {
+ // 鑾峰彇椤甸潰楂樺害
+ getHeight() {
+ this.$nextTick(() => {
+ this.mainHeight = window.innerHeight - 120
+ // this.mainHeight = window.innerHeight - 200
+ // this.tableHeight = this.mainHeight - 100
+
+ // this.isIpad = this.mainHeight <= 768
+ this.isIpad = window.innerHeight < 769
+ })
+ },
handleEcharts() {
this.getTopData()
this.getBar01()
@@ -154,6 +176,12 @@
loadEcharts('bar01', bar01(data))
},
async getLine01() {
+ // if (this.isIpad) {
+ // document.getElementById('line01').style.height = '200px'
+ // } else {
+ // document.getElementById('line01').style.height = '300px'
+ // }
+ // console.log(document.getElementById('line01'))
const data2 = [
{ key: '2', value: 0 },
{ key: '4', value: 0.2 },
@@ -203,23 +231,23 @@
.images {
width: 69px;
height: 69px;
- margin: 30px;
+ margin: 30px calc((10% - 20px));
}
.images1 {
- background: url("../../assets/images/dlyy.png") no-repeat;
+ background: url("../../assets/images/msg_app.png") no-repeat;
}
.images2 {
- background: url("../../assets/images/hyyyy.png") no-repeat;
+ background: url("../../assets/images/msg_huoyue.png") no-repeat;
}
.images3 {
- background: url("../../assets/images/webhy.png") no-repeat;
+ background: url("../../assets/images/msg_web.png") no-repeat;
}
.images4 {
- background: url("../../assets/images/apphy.png") no-repeat;
+ background: url("../../assets/images/msg_zhuceyonghu.png") no-repeat;
}
.content {
@@ -244,7 +272,8 @@
.content {
width: 49%;
- height: 400px;
+ //height: 400px;
+
background-color: #fff;
border-radius: 5px;
--
Gitblit v1.9.3