|
@@ -127,7 +127,7 @@ export default {
|
|
this.maxColumnWidth =
|
|
this.maxColumnWidth =
|
|
document.getElementById("column-0-0").offsetWidth;
|
|
document.getElementById("column-0-0").offsetWidth;
|
|
this.maxColumnHeight =
|
|
this.maxColumnHeight =
|
|
- document.getElementById("column-0-0").offsetHeight;
|
|
|
|
|
|
+ document.getElementById("column-0-0").offsetHeight - 10;
|
|
this.parseRenderStructList();
|
|
this.parseRenderStructList();
|
|
this.buildPrePages();
|
|
this.buildPrePages();
|
|
} catch (error) {
|
|
} catch (error) {
|
|
@@ -264,7 +264,8 @@ export default {
|
|
},
|
|
},
|
|
async buildData() {
|
|
async buildData() {
|
|
this.maxColumnWidth = document.getElementById("column-0-0").offsetWidth;
|
|
this.maxColumnWidth = document.getElementById("column-0-0").offsetWidth;
|
|
- this.maxColumnHeight = document.getElementById("column-0-0").offsetHeight;
|
|
|
|
|
|
+ this.maxColumnHeight =
|
|
|
|
+ document.getElementById("column-0-0").offsetHeight - 10;
|
|
this.parseRenderStructList();
|
|
this.parseRenderStructList();
|
|
this.buildPrePages();
|
|
this.buildPrePages();
|
|
|
|
|