shopList.vue 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <template>
  2. <view class="page">
  3. <view class="uni-product-list">
  4. <view class="uni-product" v-for="(product,index) in productList" :key="index">
  5. <view class="image-view">
  6. <image v-if="renderImage" class="uni-product-image" :src="product.image"></image>
  7. </view>
  8. <view class="uni-product-title">{{product.title}}</view>
  9. <view class="uni-product-price">
  10. <text class="uni-product-price-original">¥{{product.favourPrice}}</text>
  11. <text class="uni-product-price-favour">¥{{product.originalPrice}}</text>
  12. </view>
  13. </view>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. data() {
  20. return {
  21. title: 'product-list',
  22. productList: [ {
  23. image: 'https://img-cdn-qiniu.dcloud.net.cn/uploads/example/product1.jpg',
  24. title: 'Apple iPhone X 256GB 深空灰色 移动联通电信4G手机',
  25. originalPrice: 9999,
  26. favourPrice: 8888,
  27. tip: '自营'
  28. },
  29. {
  30. image: 'https://img-cdn-qiniu.dcloud.net.cn/uploads/example/product2.jpg',
  31. title: 'Apple iPad 平板电脑 2018年新款9.7英寸',
  32. originalPrice: 3499,
  33. favourPrice: 3399,
  34. tip: '优惠'
  35. },
  36. {
  37. image: 'https://img-cdn-qiniu.dcloud.net.cn/uploads/example/product3.jpg',
  38. title: 'Apple MacBook Pro 13.3英寸笔记本电脑(2017款Core i5处理器/8GB内存/256GB硬盘 MupxT2CH/A)',
  39. originalPrice: 12999,
  40. favourPrice: 10688,
  41. tip: '秒杀'
  42. },
  43. {
  44. image: 'https://img-cdn-qiniu.dcloud.net.cn/uploads/example/product4.jpg',
  45. title: 'Kindle Paperwhite电纸书阅读器 电子书墨水屏 6英寸wifi 黑色',
  46. originalPrice: 999,
  47. favourPrice: 958,
  48. tip: '秒杀'
  49. },
  50. {
  51. image: 'https://img-cdn-qiniu.dcloud.net.cn/uploads/example/product5.jpg',
  52. title: '微软(Microsoft)新Surface Pro 二合一平板电脑笔记本 12.3英寸(i5 8G内存 256G存储)',
  53. originalPrice: 8888,
  54. favourPrice: 8288,
  55. tip: '优惠'
  56. },
  57. {
  58. image: 'https://img-cdn-qiniu.dcloud.net.cn/uploads/example/product6.jpg',
  59. title: 'Apple Watch Series 3智能手表(GPS款 42毫米 深空灰色铝金属表壳 黑色运动型表带 MQL12CH/A)',
  60. originalPrice: 2899,
  61. favourPrice: 2799,
  62. tip: '自营'
  63. }],
  64. renderImage: false
  65. };
  66. },
  67. methods: {
  68. },
  69. onLoad() {
  70. },
  71. onPullDownRefresh() {
  72. },
  73. onReachBottom() {
  74. }
  75. };
  76. </script>
  77. <style>
  78. </style>