index.wxml 438 B

123456789101112131415161718
  1. <van-transition
  2. name="slide-down"
  3. show="{{ show }}"
  4. custom-class="van-notify__container"
  5. custom-style="z-index: {{ zIndex }};"
  6. bind:tap="onTap"
  7. >
  8. <view
  9. class="van-notify van-notify--{{ type }}"
  10. style="background:{{ background }};color:{{ color }};"
  11. >
  12. <view
  13. wx:if="{{ safeAreaInsetTop }}"
  14. style="height: {{ statusBarHeight }}px"
  15. ></view>
  16. <text>{{ message }}</text>
  17. </view>
  18. </van-transition>