mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
fix(overlay): add custom-class support (#5083)
* fix(overlay): add custom-class support * fix(overlay): fix overlay bad test case Co-authored-by: liuhaihonggia <liuhaihong@youzan.com>
This commit is contained in:
parent
5e87650fe2
commit
abeddfd09d
@ -58,7 +58,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:click="onClickOverlay"
|
||||
>
|
||||
<van-transition
|
||||
customClass="van-overlay"
|
||||
customClass="van-overlay custom-class"
|
||||
bind:tap="onClick"
|
||||
catch:touchmove="noop"
|
||||
/>
|
||||
@ -123,7 +123,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:click="onClickOverlay"
|
||||
>
|
||||
<van-transition
|
||||
customClass="van-overlay"
|
||||
customClass="van-overlay custom-class"
|
||||
bind:tap="onClick"
|
||||
catch:touchmove="noop"
|
||||
/>
|
||||
@ -188,7 +188,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:click="onClickOverlay"
|
||||
>
|
||||
<van-transition
|
||||
customClass="van-overlay"
|
||||
customClass="van-overlay custom-class"
|
||||
bind:tap="onClick"
|
||||
catch:touchmove="noop"
|
||||
/>
|
||||
@ -253,7 +253,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:click="onClickOverlay"
|
||||
>
|
||||
<van-transition
|
||||
customClass="van-overlay"
|
||||
customClass="van-overlay custom-class"
|
||||
bind:tap="onClick"
|
||||
catch:touchmove="noop"
|
||||
/>
|
||||
@ -318,7 +318,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:click="onClickOverlay"
|
||||
>
|
||||
<van-transition
|
||||
customClass="van-overlay"
|
||||
customClass="van-overlay custom-class"
|
||||
bind:tap="onClick"
|
||||
catch:touchmove="noop"
|
||||
/>
|
||||
@ -384,7 +384,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:click="onClickOverlay"
|
||||
>
|
||||
<van-transition
|
||||
customClass="van-overlay"
|
||||
customClass="van-overlay custom-class"
|
||||
bind:tap="onClick"
|
||||
catch:touchmove="noop"
|
||||
/>
|
||||
|
@ -1712,7 +1712,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:click="onClickOverlay"
|
||||
>
|
||||
<van-transition
|
||||
customClass="van-overlay"
|
||||
customClass="van-overlay custom-class"
|
||||
bind:tap="onClick"
|
||||
catch:touchmove="noop"
|
||||
/>
|
||||
|
@ -271,7 +271,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:click="onClickOverlay"
|
||||
>
|
||||
<van-transition
|
||||
customClass="van-overlay"
|
||||
customClass="van-overlay custom-class"
|
||||
bind:tap="onClick"
|
||||
catch:touchmove="noop"
|
||||
/>
|
||||
@ -287,7 +287,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:click="onClickOverlay"
|
||||
>
|
||||
<van-transition
|
||||
customClass="van-overlay"
|
||||
customClass="van-overlay custom-class"
|
||||
bind:tap="onClick"
|
||||
catch:touchmove="noop"
|
||||
/>
|
||||
|
@ -107,3 +107,10 @@ Page({
|
||||
| 名称 | 说明 |
|
||||
| ---- | ---------------------------------- |
|
||||
| - | 默认插槽,用于在遮罩层上方嵌入内容 |
|
||||
|
||||
|
||||
### 外部样式类
|
||||
|
||||
| 类名 | 说明 |
|
||||
| ------------ | ------------ |
|
||||
| custom-class | 根节点样式类 |
|
||||
|
@ -1,7 +1,7 @@
|
||||
<van-transition
|
||||
wx:if="{{ lockScroll }}"
|
||||
show="{{ show }}"
|
||||
custom-class="van-overlay"
|
||||
custom-class="van-overlay custom-class"
|
||||
custom-style="z-index: {{ zIndex }}; {{ customStyle }}"
|
||||
duration="{{ duration }}"
|
||||
bind:tap="onClick"
|
||||
@ -12,7 +12,7 @@
|
||||
<van-transition
|
||||
wx:else
|
||||
show="{{ show }}"
|
||||
custom-class="van-overlay"
|
||||
custom-class="van-overlay custom-class"
|
||||
custom-style="z-index: {{ zIndex }}; {{ customStyle }}"
|
||||
duration="{{ duration }}"
|
||||
bind:tap="onClick"
|
||||
|
@ -53,7 +53,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:click="onClickHide"
|
||||
>
|
||||
<van-transition
|
||||
customClass="van-overlay"
|
||||
customClass="van-overlay custom-class"
|
||||
bind:tap="onClick"
|
||||
catch:touchmove="noop"
|
||||
/>
|
||||
@ -111,7 +111,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:click="onClickHideEmbedded"
|
||||
>
|
||||
<van-transition
|
||||
customClass="van-overlay"
|
||||
customClass="van-overlay custom-class"
|
||||
bind:tap="onClick"
|
||||
catch:touchmove="noop"
|
||||
/>
|
||||
|
@ -49,7 +49,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:click="onClickOverlay"
|
||||
>
|
||||
<van-transition
|
||||
customClass="van-overlay"
|
||||
customClass="van-overlay custom-class"
|
||||
bind:tap="onClick"
|
||||
catch:touchmove="noop"
|
||||
/>
|
||||
@ -197,7 +197,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:click="onClickOverlay"
|
||||
>
|
||||
<van-transition
|
||||
customClass="van-overlay"
|
||||
customClass="van-overlay custom-class"
|
||||
bind:tap="onClick"
|
||||
catch:touchmove="noop"
|
||||
/>
|
||||
@ -210,7 +210,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:click="onClickOverlay"
|
||||
>
|
||||
<van-transition
|
||||
customClass="van-overlay"
|
||||
customClass="van-overlay custom-class"
|
||||
bind:tap="onClick"
|
||||
catch:touchmove="noop"
|
||||
/>
|
||||
@ -223,7 +223,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:click="onClickOverlay"
|
||||
>
|
||||
<van-transition
|
||||
customClass="van-overlay"
|
||||
customClass="van-overlay custom-class"
|
||||
bind:tap="onClick"
|
||||
catch:touchmove="noop"
|
||||
/>
|
||||
@ -236,7 +236,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:click="onClickOverlay"
|
||||
>
|
||||
<van-transition
|
||||
customClass="van-overlay"
|
||||
customClass="van-overlay custom-class"
|
||||
bind:tap="onClick"
|
||||
catch:touchmove="noop"
|
||||
/>
|
||||
@ -353,7 +353,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:click="onClickOverlay"
|
||||
>
|
||||
<van-transition
|
||||
customClass="van-overlay"
|
||||
customClass="van-overlay custom-class"
|
||||
bind:tap="onClick"
|
||||
catch:touchmove="noop"
|
||||
/>
|
||||
@ -366,7 +366,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:click="onClickOverlay"
|
||||
>
|
||||
<van-transition
|
||||
customClass="van-overlay"
|
||||
customClass="van-overlay custom-class"
|
||||
bind:tap="onClick"
|
||||
catch:touchmove="noop"
|
||||
/>
|
||||
@ -379,7 +379,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:click="onClickOverlay"
|
||||
>
|
||||
<van-transition
|
||||
customClass="van-overlay"
|
||||
customClass="van-overlay custom-class"
|
||||
bind:tap="onClick"
|
||||
catch:touchmove="noop"
|
||||
/>
|
||||
@ -434,7 +434,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:click="onClickOverlay"
|
||||
>
|
||||
<van-transition
|
||||
customClass="van-overlay"
|
||||
customClass="van-overlay custom-class"
|
||||
bind:tap="onClick"
|
||||
catch:touchmove="noop"
|
||||
/>
|
||||
|
@ -59,7 +59,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:click="onClickOverlay"
|
||||
>
|
||||
<van-transition
|
||||
customClass="van-overlay"
|
||||
customClass="van-overlay custom-class"
|
||||
bind:tap="onClick"
|
||||
catch:touchmove="noop"
|
||||
/>
|
||||
@ -126,7 +126,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:click="onClickOverlay"
|
||||
>
|
||||
<van-transition
|
||||
customClass="van-overlay"
|
||||
customClass="van-overlay custom-class"
|
||||
bind:tap="onClick"
|
||||
catch:touchmove="noop"
|
||||
/>
|
||||
@ -193,7 +193,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:click="onClickOverlay"
|
||||
>
|
||||
<van-transition
|
||||
customClass="van-overlay"
|
||||
customClass="van-overlay custom-class"
|
||||
bind:tap="onClick"
|
||||
catch:touchmove="noop"
|
||||
/>
|
||||
@ -260,7 +260,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:click="onClickOverlay"
|
||||
>
|
||||
<van-transition
|
||||
customClass="van-overlay"
|
||||
customClass="van-overlay custom-class"
|
||||
bind:tap="onClick"
|
||||
catch:touchmove="noop"
|
||||
/>
|
||||
|
@ -251,7 +251,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:click="onClickOverlay"
|
||||
>
|
||||
<van-transition
|
||||
customClass="van-overlay"
|
||||
customClass="van-overlay custom-class"
|
||||
bind:tap="onClick"
|
||||
catch:touchmove="noop"
|
||||
/>
|
||||
|
@ -172,7 +172,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
bind:click="onClickOverlay"
|
||||
>
|
||||
<van-transition
|
||||
customClass="van-overlay"
|
||||
customClass="van-overlay custom-class"
|
||||
bind:tap="onClick"
|
||||
catch:touchmove="noop"
|
||||
/>
|
||||
|
Loading…
x
Reference in New Issue
Block a user