zydx-plus 1.35.531 → 1.35.532
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/package.json
CHANGED
|
Binary file
|
|
@@ -4,7 +4,9 @@
|
|
|
4
4
|
<div v-if="isShowsLeft" class="left" ref="leftRef">
|
|
5
5
|
<slot name="left"></slot>
|
|
6
6
|
</div>
|
|
7
|
-
<div v-if="isShowsRight && isShowsLeft" class="resize"
|
|
7
|
+
<div v-if="isShowsRight && isShowsLeft" class="resize">
|
|
8
|
+
<img src="./drag.png" ref="resizeRef" style="width: 30px;height: 30px;position: absolute;top: 280px;left: 50%;transform: translateX(-15px)" alt="">
|
|
9
|
+
</div>
|
|
8
10
|
<div v-if="isShowsRight" class="right" ref="rightRef">
|
|
9
11
|
<!-- 右侧内容,默认展示30%,默认最小宽度310px-->
|
|
10
12
|
<slot name="right"></slot>
|
|
@@ -134,7 +136,7 @@ export default {
|
|
|
134
136
|
}
|
|
135
137
|
.resize {
|
|
136
138
|
position: relative;
|
|
137
|
-
width:
|
|
139
|
+
width: 10px;
|
|
138
140
|
cursor: col-resize;
|
|
139
141
|
background-size: cover;
|
|
140
142
|
background-position: center;
|