|
|
@@ -1306,12 +1306,13 @@ export default {
|
|
|
}
|
|
|
setTimeout(() => {
|
|
|
let tableTop = that.$refs.commonTable.offsetTop;
|
|
|
- let bottomTop = that.$refs.bottomFixed.offsetTop;
|
|
|
- that.tableHeight = bottomTop - tableTop - 120 + "px";
|
|
|
+ let height = window.innerHeight;
|
|
|
+ that.tableHeight = height - tableTop - 160 + "px";
|
|
|
}, 10);
|
|
|
// window.onresize = function () {
|
|
|
// let tableTop = that.$refs.commonTable.offsetTop;
|
|
|
// let bottomTop = that.$refs.bottomFixed.offsetTop;
|
|
|
+
|
|
|
// that.tableHeight = bottomTop - tableTop - 120 + "px";
|
|
|
// };
|
|
|
},
|