index.vue 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <template>
  2. <view>
  3. <van-overlay v-if="mask || forbidClick" :show="show" :z-index="zIndex" :custom-style="mask ? '' : 'background-color: transparent;'" />
  4. <van-transition :show="show" :custom-style="'z-index: ' + zIndex" custom-class="van-toast__container">
  5. <view :class="'van-toast van-toast--' + (type === 'text' ? 'text' : 'icon') + ' van-toast--' + position" @touchmove.stop.prevent="noop">
  6. <!-- text only -->
  7. <text v-if="type === 'text'">{{ message }}</text>
  8. <!-- with icon -->
  9. <block v-else>
  10. <van-loading v-if="type === 'loading'" color="white" :type="loadingType" custom-class="van-toast__loading" />
  11. <van-icon v-else class="van-toast__icon" :name="type" />
  12. <text v-if="message" class="van-toast__text">{{ message }}</text>
  13. </block>
  14. <slot />
  15. </view>
  16. </van-transition>
  17. </view>
  18. </template>
  19. <script>
  20. 'use strict';
  21. Object.defineProperty(exports, '__esModule', {
  22. value: true
  23. });
  24. var component_1 = require('../common/component');
  25. component_1.VantComponent({
  26. props: {
  27. show: Boolean,
  28. mask: Boolean,
  29. message: String,
  30. forbidClick: Boolean,
  31. zIndex: {
  32. type: Number,
  33. value: 1000
  34. },
  35. type: {
  36. type: String,
  37. value: 'text'
  38. },
  39. loadingType: {
  40. type: String,
  41. value: 'circular'
  42. },
  43. position: {
  44. type: String,
  45. value: 'middle'
  46. }
  47. },
  48. methods: {
  49. // for prevent touchmove
  50. noop: function () {}
  51. }
  52. });
  53. </script>
  54. <style>
  55. @import './index.css';
  56. </style>