index.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <template>
  2. <view>
  3. <view v-if="loading" :class="'custom-class ' + utils.bem('skeleton', [{ animate }])">
  4. <view v-if="avatar" :class="'avatar-class ' + utils.bem('skeleton__avatar', [avatarShape])" :style="'width:' + avatarSize + ';height:' + avatarSize" />
  5. <view :class="utils.bem('skeleton__content')">
  6. <view v-if="title" :class="'title-class ' + utils.bem('skeleton__title')" :style="'width:' + titleWidth" />
  7. <view
  8. :class="'row-class ' + utils.bem('skeleton__row')"
  9. :style="'width:' + (isArray ? rowWidth[index] : rowWidth)"
  10. v-for="(item, index) in rowArray"
  11. :key="index"
  12. ></view>
  13. </view>
  14. </view>
  15. <view v-else :class="utils.bem('skeleton__content')">
  16. <slot />
  17. </view>
  18. </view>
  19. </template>
  20. <script module="utils" lang="wxs" src="@/node_modules/@vant/weapp/lib/wxs/utils.wxs"></script>
  21. <script>
  22. 'use strict';
  23. Object.defineProperty(exports, '__esModule', {
  24. value: true
  25. });
  26. var component_1 = require('../common/component');
  27. component_1.VantComponent({
  28. classes: ['avatar-class', 'title-class', 'row-class'],
  29. props: {
  30. row: {
  31. type: Number,
  32. value: 0,
  33. observer: function (value) {
  34. this.setData({
  35. rowArray: Array.from({
  36. length: value
  37. })
  38. });
  39. }
  40. },
  41. title: Boolean,
  42. avatar: Boolean,
  43. loading: {
  44. type: Boolean,
  45. value: true
  46. },
  47. animate: {
  48. type: Boolean,
  49. value: true
  50. },
  51. avatarSize: {
  52. type: String,
  53. value: '32px'
  54. },
  55. avatarShape: {
  56. type: String,
  57. value: 'round'
  58. },
  59. titleWidth: {
  60. type: String,
  61. value: '40%'
  62. },
  63. rowWidth: {
  64. type: null,
  65. value: '100%',
  66. observer: function (val) {
  67. this.setData({
  68. isArray: val instanceof Array
  69. });
  70. }
  71. }
  72. },
  73. data: {
  74. isArray: false,
  75. rowArray: []
  76. }
  77. });
  78. </script>
  79. <style>
  80. @import './index.css';
  81. </style>