index.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <template>
  2. <view class="custom-class van-card">
  3. <view :class="utils.bem('card__header', { center: centered })">
  4. <view class="van-card__thumb" @tap="onClickThumb">
  5. <image v-if="thumb" :src="thumb" :mode="thumbMode" :lazy-load="lazyLoad" class="van-card__img thumb-class" />
  6. <slot name="thumb" />
  7. <van-tag v-if="tag" mark type="danger" custom-class="van-card__tag">
  8. {{ tag }}
  9. </van-tag>
  10. </view>
  11. <view :class="'van-card__content ' + utils.bem('card__content', { center: centered })">
  12. <view>
  13. <view v-if="title" class="van-card__title title-class">{{ title }}</view>
  14. <slot v-else name="title" />
  15. <view v-if="desc" class="van-card__desc desc-class">{{ desc }}</view>
  16. <slot v-else name="desc" />
  17. <slot name="tags" />
  18. </view>
  19. <view class="van-card__bottom">
  20. <slot name="price-top" />
  21. <view v-if="price || price === 0" class="van-card__price price-class">
  22. {{ currency }}
  23. <text class="van-card__price-integer">{{ integerStr }}</text>
  24. <text class="van-card__price-decimal">{{ decimalStr }}</text>
  25. </view>
  26. <slot v-else name="price" />
  27. <view v-if="originPrice || originPrice === 0" class="van-card__origin-price origin-price-class">{{ currency }} {{ originPrice }}</view>
  28. <view v-if="num" class="van-card__num num-class">x {{ num }}</view>
  29. <slot v-else name="num" />
  30. <slot name="bottom" />
  31. </view>
  32. </view>
  33. </view>
  34. <view class="van-card__footer">
  35. <slot name="footer" />
  36. </view>
  37. </view>
  38. </template>
  39. <script module="utils" lang="wxs" src="@/node_modules/@vant/weapp/dist/wxs/utils.wxs"></script>
  40. <script>
  41. import { link } from '../mixins/link';
  42. import { VantComponent } from '../common/component';
  43. export default {
  44. data() {
  45. return {
  46. integerStr: '',
  47. decimalStr: ''
  48. };
  49. },
  50. classes: ['num-class', 'desc-class', 'thumb-class', 'title-class', 'price-class', 'origin-price-class'],
  51. mixins: [link],
  52. props: {
  53. tag: String,
  54. num: String,
  55. desc: String,
  56. thumb: String,
  57. title: String,
  58. price: {
  59. type: String
  60. },
  61. centered: Boolean,
  62. lazyLoad: Boolean,
  63. thumbLink: String,
  64. originPrice: String,
  65. thumbMode: {
  66. type: String,
  67. default: 'aspectFit'
  68. },
  69. currency: {
  70. type: String,
  71. default: '¥'
  72. }
  73. },
  74. methods: {
  75. updatePrice() {
  76. const { price } = this;
  77. const priceArr = price.toString().split('.');
  78. this.setData({
  79. integerStr: priceArr[0],
  80. decimalStr: priceArr[1] ? `.${priceArr[1]}` : ''
  81. });
  82. },
  83. onClickThumb() {
  84. this.jumpLink('thumbLink');
  85. }
  86. },
  87. watch: {
  88. price: {
  89. handler: function () {
  90. const { price } = this;
  91. const priceArr = price.toString().split('.');
  92. this.setData({
  93. integerStr: priceArr[0],
  94. decimalStr: priceArr[1] ? `.${priceArr[1]}` : ''
  95. });
  96. },
  97. immediate: true
  98. }
  99. }
  100. };
  101. </script>
  102. <style>
  103. @import './index.css';
  104. </style>