|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
<div v-loading="isloading">
|
|
|
- <div style="width: 95%; height: calc(100% - 40px); margin: 20px auto;">
|
|
|
+ <div style="width: 95%; height: calc(100% - 40px); margin: 20px auto;" ref="innder">
|
|
|
<!-- <img src="../../assets/dataimage/1.png" style="width:90%" /> -->
|
|
|
<!-- <div
|
|
|
id="charts_canvas"
|
|
@@ -267,8 +267,9 @@ export default {
|
|
|
return b.ratez - a.ratez;
|
|
|
},
|
|
|
setTableHeight() {
|
|
|
- this.tableHeight =
|
|
|
- window.innerHeight - this.$refs.table.offsetHeight - 600;
|
|
|
+ console.log(this.$refs.innder.offsetHeight);
|
|
|
+ this.tableHeight = this.$refs.innder.offsetHeight
|
|
|
+ // window.innerHeight - this.$refs.table.offsetHeight - 600;
|
|
|
// 监听窗口大小变化
|
|
|
},
|
|
|
},
|