index.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <template>
  2. <view>
  3. <van-transition
  4. name="slide-down"
  5. :show="show"
  6. custom-class="van-notify__container"
  7. :custom-style="'z-index: ' + zIndex + '; top: ' + utils.addUnit(top)"
  8. @tap.native="onTap"
  9. >
  10. <view :class="'van-notify van-notify--' + type" :style="'background:' + background + ';color:' + color + ';'">
  11. <view v-if="safeAreaInsetTop" :style="'height: ' + statusBarHeight + 'px'" />
  12. <text>{{ message }}</text>
  13. </view>
  14. </van-transition>
  15. </view>
  16. </template>
  17. <script module="utils" lang="wxs" src="@/node_modules/@vant/weapp/lib/wxs/utils.wxs"></script>
  18. <script>
  19. 'use strict';
  20. Object.defineProperty(exports, '__esModule', {
  21. value: true
  22. });
  23. var component_1 = require('../common/component');
  24. var color_1 = require('../common/color');
  25. component_1.VantComponent({
  26. props: {
  27. message: String,
  28. background: String,
  29. type: {
  30. type: String,
  31. value: 'danger'
  32. },
  33. color: {
  34. type: String,
  35. value: color_1.WHITE
  36. },
  37. duration: {
  38. type: Number,
  39. value: 3000
  40. },
  41. zIndex: {
  42. type: Number,
  43. value: 110
  44. },
  45. safeAreaInsetTop: {
  46. type: Boolean,
  47. value: false
  48. },
  49. top: null
  50. },
  51. data: {
  52. show: false
  53. },
  54. created: function () {
  55. var statusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  56. this.setData({
  57. statusBarHeight: statusBarHeight
  58. });
  59. },
  60. methods: {
  61. show: function () {
  62. var that = this;
  63. var _a = this;
  64. var duration = _a.duration;
  65. var onOpened = _a.onOpened;
  66. clearTimeout(this.timer);
  67. this.setData({
  68. show: true
  69. });
  70. this.$nextTick(onOpened);
  71. if (duration > 0 && duration !== Infinity) {
  72. this.timer = setTimeout(function () {
  73. that.hide();
  74. }, duration);
  75. }
  76. },
  77. hide: function () {
  78. var onClose = this.onClose;
  79. clearTimeout(this.timer);
  80. this.setData({
  81. show: false
  82. });
  83. this.$nextTick(onClose);
  84. },
  85. onTap: function (event) {
  86. var onClick = this.onClick;
  87. if (onClick) {
  88. onClick(event.detail);
  89. }
  90. }
  91. }
  92. });
  93. </script>
  94. <style>
  95. @import './index.css';
  96. </style>