1234567891011121314151617181920 |
- <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>
|