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

101 lines
1.9 KiB

  1. <template>
  2. <view class="content">
  3. <view class="card">
  4. <view class="title">秒杀购</view>
  5. <view class="desc">低价不等人快来秒杀啦</view>
  6. <scroll-view class="scroll-view" :scroll-x="true">
  7. <view class="lf-flex">
  8. <view class="goods-item" v-for="(item, index) in 4" :key="index">
  9. <image class="goods-img"></image>
  10. <view class="lf-line-1 goods-title">日本sk-ll小灯跑</view>
  11. <view class="goods-price">
  12. <text>¥888</text>
  13. <text>¥888</text>
  14. </view>
  15. </view>
  16. </view>
  17. </scroll-view>
  18. </view>
  19. </view>
  20. </template>
  21. <script>
  22. export default {
  23. data(){
  24. return {
  25. }
  26. },
  27. onLoad(){
  28. },
  29. methods: {
  30. }
  31. }
  32. </script>
  33. <style lang="scss" scoped="scoped">
  34. .content{
  35. padding: 60rpx 32rpx 0;
  36. width: 750rpx;
  37. height: max-content;
  38. box-sizing: border-box;
  39. .card{
  40. width: 686rpx;
  41. height: 471rpx;
  42. background: #F3F8F8;
  43. border-radius: 20rpx;
  44. padding: 40rpx;
  45. box-sizing: border-box;
  46. display: flex;
  47. justify-content: center;
  48. flex-direction: column;
  49. align-items: center;
  50. .title{
  51. font-size: 32rpx;
  52. font-weight: bold;
  53. color: #15716E;
  54. }
  55. .desc{
  56. width: 317rpx;
  57. height: 33rpx;
  58. background: #15716E;
  59. border-radius: 17rpx;
  60. font-size: 24rpx;
  61. color: #FFFFFF;
  62. text-align: center;
  63. line-height: 33rpx;
  64. margin-top: 10rpx;
  65. margin-bottom: 40rpx;
  66. }
  67. .scroll-view, .scroll-view>view{
  68. width: 100%;
  69. }
  70. .goods-item{
  71. margin-right: 33rpx;
  72. width: 180rpx;
  73. .goods-img{
  74. width: 180rpx;
  75. height: 180rpx;
  76. border-radius: 10rpx;
  77. background-color: #EEEEEE;
  78. }
  79. .goods-title{
  80. font-size: 24rpx;
  81. color: #222222;
  82. margin-top: 10rpx;
  83. }
  84. .goods-price>text:nth-child(1n){
  85. font-size: 28rpx;
  86. font-weight: #F63434;
  87. }
  88. .goods-price>text:nth-child(2n){
  89. font-size: 24rpx;
  90. font-weight: #777777;
  91. margin-left: 15rpx;
  92. }
  93. }
  94. }
  95. }
  96. </style>