mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
21 lines
509 B
Plaintext
21 lines
509 B
Plaintext
<wxs src="../wxs/utils.wxs" module="utils" />
|
|
|
|
<van-transition
|
|
name="slide-down"
|
|
show="{{ show }}"
|
|
custom-class="van-notify__container"
|
|
custom-style="z-index: {{ zIndex }}; top: {{ utils.addUnit(top) }}"
|
|
bind:tap="onTap"
|
|
>
|
|
<view
|
|
class="van-notify van-notify--{{ type }}"
|
|
style="background:{{ background }};color:{{ color }};"
|
|
>
|
|
<view
|
|
wx:if="{{ safeAreaInsetTop }}"
|
|
style="height: {{ statusBarHeight }}px"
|
|
/>
|
|
<text>{{ message }}</text>
|
|
</view>
|
|
</van-transition>
|