wholesaleDetail.vue 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <template>
  2. <view class="content">
  3. <!-- 轮播图 -->
  4. <top-swiper :imgList="imgList"></top-swiper>
  5. <!-- 价格 -->
  6. <view class="good-price flex">
  7. <view class="new-price">
  8. ¥2690
  9. </view>
  10. <view class="old-price">
  11. ¥3600
  12. </view>
  13. </view>
  14. <!-- 标题 -->
  15. <view class="good-tit">
  16. GUCCI古驰马衔扣1955系列单肩包女包春秋新款送礼佳品
  17. </view>
  18. <content-text :description="description"></content-text>
  19. <view class="btn-ts" style="height: 130rpx; background-color: #fff;">
  20. </view>
  21. <view class="btm-btn">
  22. 立即预约
  23. </view>
  24. </view>
  25. </template>
  26. <script>
  27. // 头部轮播图
  28. import topSwiper from './common/topSwiper.vue';
  29. // 图文详情
  30. import contentText from './common/contentText.vue';
  31. export default {
  32. components: {
  33. topSwiper,
  34. contentText
  35. },
  36. data() {
  37. return {
  38. imgList: [1,2]
  39. }
  40. },
  41. onLoad(opt) {
  42. },
  43. methods: {
  44. }
  45. }
  46. </script>
  47. <style lang="scss" scoped>
  48. .good-price {
  49. padding-left: 20rpx;
  50. padding-top: 20rpx;
  51. justify-content: flex-start;
  52. background-color: #fff;
  53. // align-items: f;
  54. .new-price {
  55. font-size: 50rpx;
  56. font-family: PingFang SC;
  57. font-weight: bold;
  58. color: #FF4C4C;
  59. }
  60. .old-price {
  61. padding-left: 8rpx;
  62. font-size: 33rpx;
  63. font-family: PingFang SC;
  64. font-weight: bold;
  65. text-decoration: line-through;
  66. color: #999999;
  67. }
  68. }
  69. .good-tit {
  70. padding: 20rpx;
  71. background-color: #fff;
  72. }
  73. .btm-btn {
  74. position: fixed;
  75. bottom: 35rpx;
  76. left: 0;
  77. right: 0;
  78. margin: auto;
  79. width: 699rpx;
  80. height: 90rpx;
  81. line-height: 90rpx;
  82. text-align: center;
  83. background: linear-gradient(90deg, #FE6F61 0%, #FF4343 100%);
  84. border-radius: 45rpx;
  85. font-size: 36rpx;
  86. font-family: PingFang SC;
  87. font-weight: 500;
  88. color: #FFFFFF;
  89. }
  90. </style>