index.vue 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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="@/miniprogram_npm/@vant/weapp/wxs/utils.wxs"></script>
  40. <script>
  41. 'use strict';
  42. Object.defineProperty(exports, '__esModule', {
  43. value: true
  44. });
  45. var link_1 = require('../mixins/link');
  46. var component_1 = require('../common/component');
  47. component_1.VantComponent({
  48. classes: ['num-class', 'desc-class', 'thumb-class', 'title-class', 'price-class', 'origin-price-class'],
  49. mixins: [link_1.link],
  50. props: {
  51. tag: String,
  52. num: String,
  53. desc: String,
  54. thumb: String,
  55. title: String,
  56. price: {
  57. type: String,
  58. observer: 'updatePrice'
  59. },
  60. centered: Boolean,
  61. lazyLoad: Boolean,
  62. thumbLink: String,
  63. originPrice: String,
  64. thumbMode: {
  65. type: String,
  66. value: 'aspectFit'
  67. },
  68. currency: {
  69. type: String,
  70. value: '¥'
  71. }
  72. },
  73. methods: {
  74. updatePrice: function () {
  75. var price = this.price;
  76. var priceArr = price.toString().split('.');
  77. this.setData({
  78. integerStr: priceArr[0],
  79. decimalStr: priceArr[1] ? '.' + priceArr[1] : ''
  80. });
  81. },
  82. onClickThumb: function () {
  83. this.jumpLink('thumbLink');
  84. }
  85. }
  86. });
  87. </script>
  88. <style>
  89. @import './index.css';
  90. </style>