mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
refactor(popup): rename wxs function (#3896)
This commit is contained in:
parent
84678ee06c
commit
7c8f4b2113
@ -12,7 +12,7 @@
|
|||||||
<view
|
<view
|
||||||
wx:if="{{ inited }}"
|
wx:if="{{ inited }}"
|
||||||
class="custom-class {{ classes }} {{ utils.bem('popup', [position, { round, safe: safeAreaInsetBottom, safeTop: safeAreaInsetTop }]) }}"
|
class="custom-class {{ classes }} {{ utils.bem('popup', [position, { round, safe: safeAreaInsetBottom, safeTop: safeAreaInsetTop }]) }}"
|
||||||
style="{{ computed.popupClass({ zIndex, currentDuration, display, customStyle }) }}"
|
style="{{ computed.popupStyle({ zIndex, currentDuration, display, customStyle }) }}"
|
||||||
bind:transitionend="onTransitionEnd"
|
bind:transitionend="onTransitionEnd"
|
||||||
>
|
>
|
||||||
<slot />
|
<slot />
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
var style = require('../wxs/style.wxs');
|
var style = require('../wxs/style.wxs');
|
||||||
|
|
||||||
function popupClass(data) {
|
function popupStyle(data) {
|
||||||
return style([
|
return style([
|
||||||
{
|
{
|
||||||
'z-index': data.zIndex,
|
'z-index': data.zIndex,
|
||||||
@ -14,5 +14,5 @@ function popupClass(data) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
popupClass: popupClass,
|
popupStyle: popupStyle,
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user