金诚优选前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

134 lines
3.3 KiB

  1. <template>
  2. <view>
  3. <lf-nav :spreadOut="true" :showIcon="true" bgColor="white" title="购物车"></lf-nav>
  4. <view style="height: 1rpx;"></view>
  5. <view>
  6. <view v-for="i of 4" class="online-card">
  7. <view class="lf-m-b-20">
  8. <text class="lf-iconfont icon-Group- lf-font-28"></text>
  9. <text class="lf-color-black lf-font-28 lf-font-bold lf-m-l-10">精品超市</text>
  10. <text class="lf-iconfont icon-xiangyou lf-font-24 lf-m-l-10"></text>
  11. </view>
  12. <view class="lf-row-between">
  13. <view class="lf-flex">
  14. <view class="gray-tag">
  15. 满减
  16. </view>
  17. <view class="lf-m-l-15 lf-font-24 lf-color-333">母婴产品教师节满1200减200</view>
  18. </view>
  19. <view class="red-tag">去凑单</view>
  20. </view>
  21. <view v-for="i of 2" class="lf-row-between">
  22. <view>
  23. <u-checkbox-group>
  24. <u-checkbox shape="circle" active-color="#15716E" @change="checkboxChange" v-model="checked"></u-checkbox>
  25. </u-checkbox-group>
  26. </view>
  27. <view class="lf-m-t-30" style="display: flex;">
  28. <image class="content-img" src="https://hainan.lanzulive.com/storage/images/v2-deb89623e0ee2a2dad34bcded6dfd1ed_1440w.png" mode="aspectFill"></image>
  29. <view class="lf-m-l-15">
  30. <view class="lf-color-333 lf-font-26 lf-line-2" style="max-width: 480rpx;">爱他美较大婴儿配方奶粉较大婴儿配方奶粉较大婴儿配方奶粉2段 900g</view>
  31. <view class="lf-font-24 lf-color-777 lf-m-t-14 lf-row-between">
  32. <view>1900g</view>
  33. <view class="lf-font-32 lf-color-price">385</view>
  34. </view>
  35. </view>
  36. </view>
  37. </view>
  38. </view>
  39. </view>
  40. <view style="height: 60rpx;"></view>
  41. <view class="cart-bottom">
  42. <view class="lf-flex">
  43. <u-checkbox-group>
  44. <u-checkbox shape="circle" active-color="#15716E" @change="checkboxChange" v-model="checked"></u-checkbox>
  45. </u-checkbox-group>
  46. <view class="lf-font-28 lf-color-777" style="margin-left: -20rpx;">
  47. 全选
  48. </view>
  49. </view>
  50. <view class="lf-row-between">
  51. <view class="lf-font-32 lf-color-222 lf-font-bold lf-m-r-30">
  52. 合计: 1150
  53. </view>
  54. <view class="cart-btn">
  55. 结算 (6)
  56. </view>
  57. </view>
  58. </view>
  59. </view>
  60. </template>
  61. <script>
  62. export default {
  63. data() {
  64. return {
  65. checked: false
  66. }
  67. },
  68. methods: {
  69. checkboxChange(e) {
  70. console.log(e)
  71. }
  72. }
  73. }
  74. </script>
  75. <style>
  76. page {
  77. background-color: #F8F8F8;
  78. }
  79. </style>
  80. <style scoped lang="scss">
  81. .cart-btn {
  82. display: flex;
  83. justify-content: center;
  84. align-items: center;
  85. width: 200rpx;
  86. height: 80rpx;
  87. background: #15716E;
  88. border-radius: 40rpx;
  89. color: #FFFFFF;
  90. font-size: 28rpx;
  91. }
  92. .cart-bottom {
  93. display: flex;
  94. justify-content: space-between;
  95. width: 750rpx;
  96. height: 120rpx;
  97. background: #FFFFFF;
  98. position: fixed;
  99. bottom: 0;
  100. padding: 32rpx;
  101. }
  102. .gray-tag {
  103. border-radius: 2rpx;
  104. border: 1rpx solid #979797;
  105. color: #777;
  106. padding: 0 6rpx;
  107. font-size: 20rpx;
  108. width: max-content;
  109. }
  110. .red-tag {
  111. font-size: 20rpx;
  112. color: #F63434;
  113. }
  114. .content-img {
  115. width: 130rpx;
  116. height: 130rpx;
  117. border-radius: 5rpx;
  118. }
  119. .online-card {
  120. width: 686rpx;
  121. height: auto;
  122. background: #FFFFFF;
  123. border-radius: 20rpx;
  124. // margin-bottom: 30rpx;
  125. padding: 30rpx;
  126. margin: 30rpx auto;
  127. &:last-child {
  128. margin-bottom: 150rpx;
  129. }
  130. }
  131. </style>