productdetails.wxml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <view style="background: #f5f5f5; padding: 20rpx 0;">
  2. <view class="goodslist_boxs">
  3. <!-- 商品图片 -->
  4. <image class="goods-image" src="https://img1.baidu.com/it/u=2052658756,3021621759&fm=253&fmt=auto&app=120&f=JPEG?w=500&h=500" mode="aspectFill"></image>
  5. <!-- 商品价格和浏览量 -->
  6. <view class="price-and-views">
  7. <view>
  8. <text class="price">¥68.00</text>
  9. <text class="original-price">¥99.00</text>
  10. </view>
  11. <view style="display: flex; align-content: center;">
  12. <image style="width: 30rpx; height: 30rpx;" src="{{showimg}}" />
  13. <text style="margin-left: 16rpx;" class="views">256人浏览</text>
  14. </view>
  15. </view>
  16. <!-- 商品标题 -->
  17. <view class="goods-title">儿童益智积木玩具套装 大颗粒安全无毒</view>
  18. <!-- 选择规格 -->
  19. <view class="specifications">
  20. <text style="font-size: 38rpx;">选择规格</text>
  21. <view class="specifications_boxs">
  22. <button class="spec-btn active">基础款(50粒)</button>
  23. <button class="spec-btn">进阶款(100粒)</button>
  24. <button class="spec-btn">豪华款(200粒)</button>
  25. </view>
  26. </view>
  27. <!-- 购买数量 -->
  28. <view class="quantity">
  29. <text style="font-size: 38rpx;">购买数量</text>
  30. <van-stepper
  31. value="1"
  32. bind:change="onChange"
  33. />
  34. </view>
  35. <!-- 产品详情 -->
  36. <view class="product-details">
  37. <text style="font-size: 38rpx;">产品详情</text>
  38. <view class="details-list">
  39. <text>• 安全材质:采用环保ABS塑料,无毒无味,通过国际安全认证</text>
  40. <text>• 大颗粒设计:专为3-6岁儿童设计,防止误吞</text>
  41. <text>• 益智启蒙:培养孩子空间想象力、创造力和手眼协调能力</text>
  42. <text>• 丰富配件:包含多种形状积木、数字和字母积木</text>
  43. </view>
  44. </view>
  45. <!-- 按钮区域 -->
  46. <!-- <view class="buttons">
  47. <view style="width: 10%; text-align: center;">
  48. <image class="search-icon" src="../../image/imgs/gwc.png" />
  49. <view style="font-size: 24rpx;">购物车</view>
  50. </view>
  51. <view style="display: flex; justify-content: space-between; width: 74%;">
  52. <button class="cart-btn">加入购物车</button>
  53. <button class="buy-btn">立即购买</button>
  54. </view>
  55. </view> -->
  56. </view>
  57. </view>