shoppingCar.wxml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <view class="wrapper">
  2. <view
  3. class="list"
  4. wx:for="{{[1]}}"
  5. wx:key="item">
  6. <view
  7. class="icon-wrap">
  8. <image
  9. src=""
  10. hidden="{{true}}"></image>
  11. <image
  12. src=""
  13. hidden="{{false}}"></image>
  14. </view>
  15. <view
  16. class="goods-wrap">
  17. <view class="photo-wrap">
  18. <image src=""></image>
  19. </view>
  20. <view class="info">
  21. <view class="name-wrap">
  22. <text
  23. class="goods-name">名字名字名字名字名字名字名字名字名字名字名字</text>
  24. <text
  25. class="partner-name"
  26. user-select>上三村合作社名字名字名字名字名字名字名字名字名字名字名字</text>
  27. <text class="price">¥12.00</text>
  28. </view>
  29. <view class="count-wrap">
  30. <image
  31. class="del"
  32. src=""></image>
  33. <text class="count">9</text>
  34. <image
  35. class="add"
  36. src=""></image>
  37. </view>
  38. </view>
  39. </view>
  40. </view>
  41. <!-- todo 购物车有多个商家的产品怎么办 -->
  42. <button
  43. class="btn-business"
  44. type="primary">商家信息
  45. </button>
  46. </view>