mooho-base-admin-plus 2.8.25 → 2.8.26
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
CHANGED
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
ref="modal"
|
|
4
4
|
v-model="opened"
|
|
5
5
|
scrollable
|
|
6
|
-
:fullscreen="
|
|
6
|
+
:fullscreen="isFullscreen"
|
|
7
7
|
:mask-closable="maskClosable == null ? layout.maskClosable : maskClosable"
|
|
8
8
|
:draggable="draggable == null ? layout.draggable : draggable"
|
|
9
9
|
:sticky="true"
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
</template>
|
|
27
27
|
<template #close>
|
|
28
28
|
<div @click.stop>
|
|
29
|
-
<Icon v-if="!
|
|
30
|
-
<Icon v-if="
|
|
29
|
+
<Icon v-if="!isFullscreen" style="font-size: 20px; color: #999; position: relative; top: -3px" type="ios-expand" @click="setFullscreen(true)" />
|
|
30
|
+
<Icon v-if="isFullscreen" style="font-size: 20px; color: #999; position: relative; top: -3px" type="ios-contract" @click="setFullscreen(false)" />
|
|
31
31
|
<Icon type="ios-close" @click="clickClose()" />
|
|
32
32
|
</div>
|
|
33
33
|
</template>
|
|
@@ -157,7 +157,7 @@
|
|
|
157
157
|
data() {
|
|
158
158
|
return {
|
|
159
159
|
opened: false,
|
|
160
|
-
|
|
160
|
+
isFullscreen: false,
|
|
161
161
|
tableView: {},
|
|
162
162
|
param: {}
|
|
163
163
|
};
|
|
@@ -617,11 +617,10 @@
|
|
|
617
617
|
*/
|
|
618
618
|
this.$emit('on-cell-click', row, column, data, event);
|
|
619
619
|
},
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
this.$refs.table.isMaxHight = isFullScreen;
|
|
620
|
+
setFullscreen(isFullscreen) {
|
|
621
|
+
this.$refs.table.isMaxHight = isFullscreen;
|
|
623
622
|
|
|
624
|
-
this.
|
|
623
|
+
this.isFullscreen = isFullscreen;
|
|
625
624
|
}
|
|
626
625
|
}
|
|
627
626
|
};
|