mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
refactor(popup): rename wxs function (#3896)
This commit is contained in:
parent
84678ee06c
commit
7c8f4b2113
@ -12,7 +12,7 @@
|
||||
<view
|
||||
wx:if="{{ inited }}"
|
||||
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"
|
||||
>
|
||||
<slot />
|
||||
|
@ -1,7 +1,7 @@
|
||||
/* eslint-disable */
|
||||
var style = require('../wxs/style.wxs');
|
||||
|
||||
function popupClass(data) {
|
||||
function popupStyle(data) {
|
||||
return style([
|
||||
{
|
||||
'z-index': data.zIndex,
|
||||
@ -14,5 +14,5 @@ function popupClass(data) {
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
popupClass: popupClass,
|
||||
popupStyle: popupStyle,
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user