智慧申请系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
509 B

  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>