mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
perf(notify): use wxs (#3893)
This commit is contained in:
parent
7378398da6
commit
5daa5cddfe
@ -1,15 +1,16 @@
|
||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||
<wxs src="./index.wxs" module="computed" />
|
||||
|
||||
<van-transition
|
||||
name="slide-down"
|
||||
show="{{ show }}"
|
||||
custom-class="van-notify__container"
|
||||
custom-style="z-index: {{ zIndex }}; top: {{ utils.addUnit(top) }}"
|
||||
custom-style="{{ computed.rootStyle({ zIndex, top }) }}"
|
||||
bind:tap="onTap"
|
||||
>
|
||||
<view
|
||||
class="van-notify van-notify--{{ type }}"
|
||||
style="background:{{ background }};color:{{ color }};"
|
||||
style="{{ computed.notifyStyle({ background, color }) }}"
|
||||
>
|
||||
<view
|
||||
wx:if="{{ safeAreaInsetTop }}"
|
||||
|
21
packages/notify/index.wxs
Normal file
21
packages/notify/index.wxs
Normal file
@ -0,0 +1,21 @@
|
||||
/* eslint-disable */
|
||||
var style = require('../wxs/style.wxs');
|
||||
|
||||
function rootStyle(data) {
|
||||
return style({
|
||||
'z-index': data.zIndex,
|
||||
top: addUnit(data.top),
|
||||
});
|
||||
}
|
||||
|
||||
function notifyStyle(data) {
|
||||
return style({
|
||||
background: data.background,
|
||||
color: data.color,
|
||||
});
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
rootStyle: rootStyle,
|
||||
notifyStyle: notifyStyle,
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user