mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
feat(Overlay): add lock-scroll prop (#4383)
* build(workflows): add lint & build * build(workflows): build:lib * feat(Overlay): add lock-scroll prop * style(Overlay): adjust order
This commit is contained in:
parent
3238dfed1e
commit
74e6db7ac4
@ -87,13 +87,14 @@ Page({
|
||||
|
||||
### Props
|
||||
|
||||
| 参数 | 说明 | 类型 | 默认值 | 版本 |
|
||||
| ------------ | ---------------- | ------------------ | ------- | ---- |
|
||||
| show | 是否展示遮罩层 | _boolean_ | `false` | - |
|
||||
| z-index | z-index 层级 | _string \| number_ | `1` | - |
|
||||
| duration | 动画时长,单位秒 | _string \| number_ | `0.3` | - |
|
||||
| class-name | 自定义类名 | _string_ | - | - |
|
||||
| custom-style | 自定义样式 | _string_ | - | - |
|
||||
| 参数 | 说明 | 类型 | 默认值 |
|
||||
| ------------ | ------------------------------------------------ | ------------------ | ------- |
|
||||
| show | 是否展示遮罩层 | _boolean_ | `false` |
|
||||
| z-index | z-index 层级 | _string \| number_ | `1` |
|
||||
| duration | 动画时长,单位秒 | _string \| number_ | `0.3` |
|
||||
| class-name | 自定义类名 | _string_ | - |
|
||||
| custom-style | 自定义样式 | _string_ | - |
|
||||
| lock-scroll `1.7.3` | 是否锁定背景滚动,锁定时蒙层里的内容也将无法滚动 | _boolean_ | true |
|
||||
|
||||
### Events
|
||||
|
||||
|
@ -12,6 +12,10 @@ VantComponent({
|
||||
type: Number,
|
||||
value: 1,
|
||||
},
|
||||
lockScroll: {
|
||||
type: Boolean,
|
||||
value: true,
|
||||
},
|
||||
},
|
||||
|
||||
methods: {
|
||||
|
@ -1,4 +1,5 @@
|
||||
<van-transition
|
||||
wx:if="{{ lockScroll }}"
|
||||
show="{{ show }}"
|
||||
custom-class="van-overlay"
|
||||
custom-style="z-index: {{ zIndex }}; {{ customStyle }}"
|
||||
@ -8,3 +9,13 @@
|
||||
>
|
||||
<slot></slot>
|
||||
</van-transition>
|
||||
<van-transition
|
||||
wx:else
|
||||
show="{{ show }}"
|
||||
custom-class="van-overlay"
|
||||
custom-style="z-index: {{ zIndex }}; {{ customStyle }}"
|
||||
duration="{{ duration }}"
|
||||
bind:tap="onClick"
|
||||
>
|
||||
<slot></slot>
|
||||
</van-transition>
|
||||
|
Loading…
x
Reference in New Issue
Block a user