金诚优选前端代码
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.

133 lines
3.2 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 class="cart-bottom">
  41. <view class="lf-flex">
  42. <u-checkbox-group>
  43. <u-checkbox shape="circle" active-color="#15716E" @change="checkboxChange" v-model="checked"></u-checkbox>
  44. </u-checkbox-group>
  45. <view class="lf-font-28 lf-color-777" style="margin-left: -20rpx;">
  46. 全选
  47. </view>
  48. </view>
  49. <view class="lf-row-between">
  50. <view class="lf-font-32 lf-color-222 lf-font-bold lf-m-r-30">
  51. 合计: 1150
  52. </view>
  53. <view class="cart-btn">
  54. 结算 (6)
  55. </view>
  56. </view>
  57. </view>
  58. </view>
  59. </template>
  60. <script>
  61. export default {
  62. data() {
  63. return {
  64. checked: false
  65. }
  66. },
  67. methods: {
  68. checkboxChange(e) {
  69. console.log(e)
  70. }
  71. }
  72. }
  73. </script>
  74. <style>
  75. page {
  76. background-color: #F8F8F8;
  77. }
  78. </style>
  79. <style scoped lang="scss">
  80. .cart-btn {
  81. display: flex;
  82. justify-content: center;
  83. align-items: center;
  84. width: 200rpx;
  85. height: 80rpx;
  86. background: #15716E;
  87. border-radius: 40rpx;
  88. color: #FFFFFF;
  89. font-size: 28rpx;
  90. }
  91. .cart-bottom {
  92. display: flex;
  93. justify-content: space-between;
  94. width: 750rpx;
  95. height: 120rpx;
  96. background: #FFFFFF;
  97. position: fixed;
  98. bottom: 0;
  99. padding: 32rpx;
  100. }
  101. .gray-tag {
  102. border-radius: 2rpx;
  103. border: 1rpx solid #979797;
  104. color: #777;
  105. padding: 0 6rpx;
  106. font-size: 20rpx;
  107. width: max-content;
  108. }
  109. .red-tag {
  110. font-size: 20rpx;
  111. color: #F63434;
  112. }
  113. .content-img {
  114. width: 130rpx;
  115. height: 130rpx;
  116. border-radius: 5rpx;
  117. }
  118. .online-card {
  119. width: 686rpx;
  120. height: auto;
  121. background: #FFFFFF;
  122. border-radius: 20rpx;
  123. // margin-bottom: 30rpx;
  124. padding: 30rpx;
  125. margin: 30rpx auto;
  126. &:last-child {
  127. margin-bottom: 150rpx;
  128. }
  129. }
  130. </style>