index.wxml 509 B

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