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

1

parent 516cfe58
This diff is collapsed.
This diff is collapsed.
......@@ -290,7 +290,7 @@ ul li {
</style>
<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">
<el-col :span="7">
<el-row class="left-top">
......@@ -416,9 +416,12 @@ export default {
dataList: null,
//标点
dataArea:[],
num:1
num:1,
zoom: 1,
}
},mounted() {
let Height = window.innerHeight
this.zoom = Math.round((Height/1080) * 100) / 100
this.init();
setTimeout(() => {
this.connec();
......
......@@ -239,7 +239,7 @@
}
</style>
<template>
<div class="viittoData2">
<div class="viittoData2" :style="{zoom: zoom}">
<el-row class="viittoRow">
<el-col :span="5">
<div class="clearfix" style="visibility:hidden">
......@@ -356,10 +356,13 @@ export default {
//传递子组件活跃用户
ActiveArr:[],
//传递不活跃用户
InActiveArr:[]
InActiveArr:[],
zoom: 1
};
},
mounted() {
let Height = window.innerHeight
this.zoom = Math.round((Height/1080) * 100) / 100
this.getB2BAddress();
this.getdata();
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