mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
feat(overlay): add root-portal prop support (#5255)
* feat(overlay): add root-portal prop support * feat(overlay): opt doc style --------- Co-authored-by: liuhaihonggia <liuhaihong@youzan.com>
This commit is contained in:
parent
cf36c8ebbd
commit
9352b33673
@ -94,7 +94,8 @@ Page({
|
|||||||
| duration | 动画时长,单位秒 | _string \| number_ | `0.3` |
|
| duration | 动画时长,单位秒 | _string \| number_ | `0.3` |
|
||||||
| class-name | 自定义类名 | _string_ | - |
|
| class-name | 自定义类名 | _string_ | - |
|
||||||
| custom-style | 自定义样式 | _string_ | - |
|
| custom-style | 自定义样式 | _string_ | - |
|
||||||
| lock-scroll `v1.7.3` | 是否锁定背景滚动,锁定时蒙层里的内容也将无法滚动 | _boolean_ | true |
|
| lock-scroll `v1.7.3` | 是否锁定背景滚动,锁定时蒙层里的内容也将无法滚动 | _boolean_ | `true` |
|
||||||
|
| root-portal `v1.10.14` | 是否从页面中脱离出来,用于解决各种 fixed 失效问题,微信基础库 >= `2.25.2 ` | _boolean_ | `false` |
|
||||||
|
|
||||||
### Events
|
### Events
|
||||||
|
|
||||||
|
@ -16,6 +16,10 @@ VantComponent({
|
|||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: true,
|
value: true,
|
||||||
},
|
},
|
||||||
|
rootPortal: {
|
||||||
|
type: Boolean,
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
@ -1,21 +1,7 @@
|
|||||||
<van-transition
|
<import src="./overlay.wxml" />
|
||||||
wx:if="{{ lockScroll }}"
|
|
||||||
show="{{ show }}"
|
<root-portal wx:if="{{ rootPortal }}">
|
||||||
custom-class="van-overlay custom-class"
|
<include src="./overlay.wxml" />
|
||||||
custom-style="z-index: {{ zIndex }}; {{ customStyle }}"
|
</root-portal>
|
||||||
duration="{{ duration }}"
|
|
||||||
bind:tap="onClick"
|
<include wx:else src="./overlay.wxml" />
|
||||||
catch:touchmove="noop"
|
|
||||||
>
|
|
||||||
<slot></slot>
|
|
||||||
</van-transition>
|
|
||||||
<van-transition
|
|
||||||
wx:else
|
|
||||||
show="{{ show }}"
|
|
||||||
custom-class="van-overlay custom-class"
|
|
||||||
custom-style="z-index: {{ zIndex }}; {{ customStyle }}"
|
|
||||||
duration="{{ duration }}"
|
|
||||||
bind:tap="onClick"
|
|
||||||
>
|
|
||||||
<slot></slot>
|
|
||||||
</van-transition>
|
|
||||||
|
10
packages/overlay/overlay.wxml
Normal file
10
packages/overlay/overlay.wxml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
<van-transition
|
||||||
|
show="{{ show }}"
|
||||||
|
custom-class="van-overlay custom-class"
|
||||||
|
custom-style="z-index: {{ zIndex }}; {{ customStyle }}"
|
||||||
|
duration="{{ duration }}"
|
||||||
|
bind:tap="onClick"
|
||||||
|
catch:touchmove="{{ lockScroll ? 'noop' : ''}}"
|
||||||
|
>
|
||||||
|
<slot></slot>
|
||||||
|
</van-transition>
|
Loading…
x
Reference in New Issue
Block a user