mooho-base-admin-plus 2.8.24 → 2.8.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/history.md +1 -0
- package/package.json +1 -1
- package/src/components/view/view-table.vue +4 -4
package/history.md
CHANGED
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div :class="{ 'full-screen':
|
|
2
|
+
<div :class="{ 'full-screen': isFullscreen }">
|
|
3
3
|
<Divider :plain="true" v-if="title != null" dashed orientation="left" size="small">
|
|
4
4
|
<span class="title">{{ title }}</span>
|
|
5
5
|
</Divider>
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
v-if="settingEnable && allow('permission/tableView')"
|
|
74
74
|
@click="filterSettingOpen"
|
|
75
75
|
/>
|
|
76
|
-
<Button v-if="tableView.fullEnable" type="info" title="全屏" custom-icon="fa fa-expand-arrows-alt" size="small" @click="
|
|
76
|
+
<Button v-if="tableView.fullEnable" type="info" title="全屏" custom-icon="fa fa-expand-arrows-alt" size="small" @click="isFullscreen = !isFullscreen" />
|
|
77
77
|
</FormItem>
|
|
78
78
|
</Col>
|
|
79
79
|
</slot>
|
|
@@ -738,7 +738,7 @@
|
|
|
738
738
|
commandButtons: [],
|
|
739
739
|
preview: false,
|
|
740
740
|
imageUrl: null,
|
|
741
|
-
|
|
741
|
+
isFullscreen: false,
|
|
742
742
|
isMaxHight: false,
|
|
743
743
|
commandButtonParams: null
|
|
744
744
|
};
|
|
@@ -1001,7 +1001,7 @@
|
|
|
1001
1001
|
zoom = 1 / window.devicePixelRatio;
|
|
1002
1002
|
}
|
|
1003
1003
|
|
|
1004
|
-
if (this.
|
|
1004
|
+
if (this.isFullscreen) {
|
|
1005
1005
|
return document.body.offsetHeight / zoom - 100 - this.$refs.filterCommand.offsetHeight / zoom;
|
|
1006
1006
|
}
|
|
1007
1007
|
if (this.isMaxHight) {
|