|
@@ -282,7 +282,7 @@
|
|
/**配置参数 */
|
|
/**配置参数 */
|
|
const treeHeight = ref(window.innerHeight - 0 + "px"); //tree高度
|
|
const treeHeight = ref(window.innerHeight - 0 + "px"); //tree高度
|
|
const excelHeight = ref(window.innerHeight - 0 + "px"); //excel高度
|
|
const excelHeight = ref(window.innerHeight - 0 + "px"); //excel高度
|
|
- const tableHeight = ref(window.innerHeight - 40 + "px");
|
|
|
|
|
|
+ const tableHeight = ref(window.innerHeight - 60 + "px");
|
|
/**excel 开始 */
|
|
/**excel 开始 */
|
|
const excelCheckboxShow = ref(false);
|
|
const excelCheckboxShow = ref(false);
|
|
const excelCheckIds = ref([]);
|
|
const excelCheckIds = ref([]);
|
|
@@ -1787,11 +1787,11 @@
|
|
|
|
|
|
theme.value = store.state.theme;
|
|
theme.value = store.state.theme;
|
|
echartsTheme.value = !theme.value ? "dark" : "";
|
|
echartsTheme.value = !theme.value ? "dark" : "";
|
|
- tableHeight.value = window.innerHeight - 40 + "px";
|
|
|
|
|
|
+ tableHeight.value = window.innerHeight - 60 + "px";
|
|
excelHeight.value = window.innerHeight - 0 + "px";
|
|
excelHeight.value = window.innerHeight - 0 + "px";
|
|
treeHeight.value = window.innerHeight - 0 + "px";
|
|
treeHeight.value = window.innerHeight - 0 + "px";
|
|
window.addEventListener("resize", () => {
|
|
window.addEventListener("resize", () => {
|
|
- tableHeight.value = window.innerHeight - 40 + "px";
|
|
|
|
|
|
+ tableHeight.value = window.innerHeight - 60 + "px";
|
|
excelHeight.value = window.innerHeight - 0 + "px";
|
|
excelHeight.value = window.innerHeight - 0 + "px";
|
|
treeHeight.value = window.innerHeight - 0 + "px";
|
|
treeHeight.value = window.innerHeight - 0 + "px";
|
|
});
|
|
});
|