Commit 126f40e0 authored by 华国豪's avatar 华国豪 🙄

1

parent 516cfe58
This diff is collapsed.
This diff is collapsed.
...@@ -290,7 +290,7 @@ ul li { ...@@ -290,7 +290,7 @@ ul li {
</style> </style>
<template> <template>
<div class="viittoData" v-if="dataList"> <div class="viittoData" v-if="dataList" :style="{zoom: zoom}">
<div class="content-box" style="width:96%;margin:0 auto"> <div class="content-box" style="width:96%;margin:0 auto">
<el-col :span="7"> <el-col :span="7">
<el-row class="left-top"> <el-row class="left-top">
...@@ -416,9 +416,12 @@ export default { ...@@ -416,9 +416,12 @@ export default {
dataList: null, dataList: null,
//标点 //标点
dataArea:[], dataArea:[],
num:1 num:1,
zoom: 1,
} }
},mounted() { },mounted() {
let Height = window.innerHeight
this.zoom = Math.round((Height/1080) * 100) / 100
this.init(); this.init();
setTimeout(() => { setTimeout(() => {
this.connec(); this.connec();
......
...@@ -239,7 +239,7 @@ ...@@ -239,7 +239,7 @@
} }
</style> </style>
<template> <template>
<div class="viittoData2"> <div class="viittoData2" :style="{zoom: zoom}">
<el-row class="viittoRow"> <el-row class="viittoRow">
<el-col :span="5"> <el-col :span="5">
<div class="clearfix" style="visibility:hidden"> <div class="clearfix" style="visibility:hidden">
...@@ -356,10 +356,13 @@ export default { ...@@ -356,10 +356,13 @@ export default {
//传递子组件活跃用户 //传递子组件活跃用户
ActiveArr:[], ActiveArr:[],
//传递不活跃用户 //传递不活跃用户
InActiveArr:[] InActiveArr:[],
zoom: 1
}; };
}, },
mounted() { mounted() {
let Height = window.innerHeight
this.zoom = Math.round((Height/1080) * 100) / 100
this.getB2BAddress(); this.getB2BAddress();
this.getdata(); this.getdata();
setTimeout(() => { setTimeout(() => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment