commodity.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. <template>
  2. <view>
  3. <view class="index-navbar">
  4. <view class="" style="position: relative;width: 750rpx;height: 570rpx">
  5. <image class="index-bg" src="static/images/shangpin.png" mode=""></image>
  6. <u-navbar title-color='#fff' title-width='300' title='商品详情' :is-back="true" :border-bottom="false"
  7. :background="{background:'rgba(0,0,0,0)'}" :isFixed="true"></u-navbar>
  8. </view>
  9. </view>
  10. <view class="" style="margin-top: 20rpx;padding: 10rpx 24rpx;">
  11. <view class="title">
  12. 透真海洋极地提取物水乳两件套补水保湿提亮肤色
  13. </view>
  14. <view class="u-flex u-row-between">
  15. <view class="u-flex">
  16. <text class="fu" style="font-size: 32rpx;">¥</text>
  17. <text class="money">919.00</text>
  18. <text class="fu">+</text>
  19. <text class="money">300</text>
  20. <text class="fu" style="margin-left: 6rpx;">积分</text>
  21. </view>
  22. <text class="fen">已兑换612件</text>
  23. </view>
  24. <view class="u-flex u-row-between" style="margin-top: 26rpx;">
  25. <text class="pingjia">用户评价</text>
  26. <view class="u-flex">
  27. <text class="all" style="margin-right: 18rpx;">全部</text>
  28. <u-icon name="arrow-right" color: #9D9BA7; size="14"></u-icon>
  29. </view>
  30. </view>
  31. <view class="ping" style="margin-top: 20rpx;">
  32. <view class="u-flex">
  33. <image class="image" src="" mode=""></image>
  34. <view class="">
  35. <text class="name">乔治的晚餐</text>
  36. </view>
  37. </view>
  38. <view class="concent">
  39. 补水效果很好,我是敏感肌没有出现刺痛发痒症状一切,吸收很快我很喜欢,还会回购的。
  40. </view>
  41. </view>
  42. </view>
  43. <view class="info">
  44. 商品详情
  45. </view>
  46. <view class="" style="height: 134rpx;"></view>
  47. <view class="bottom u-flex u-row-center" @click="submit">
  48. <view class="duihuan">立即兑换</view>
  49. <view class="safe-area-inset-bottom"></view>
  50. </view>
  51. </view>
  52. </template>
  53. <script>
  54. export default {
  55. data() {
  56. return {
  57. };
  58. },
  59. methods:{
  60. submit(){
  61. uni.navigateTo({
  62. url:'/pageA/submit'
  63. })
  64. }
  65. }
  66. }
  67. </script>
  68. <style lang="scss">
  69. .fen {
  70. font-size: 24rpx;
  71. font-family: PingFang SC;
  72. font-weight: 400;
  73. line-height: 42rpx;
  74. color: #C2C2C2;
  75. }
  76. .all {
  77. font-size: 24rpx;
  78. font-family: PingFang SC;
  79. font-weight: 400;
  80. line-height: 34rpx;
  81. color: #9D9BA7;
  82. }
  83. .pingjia {
  84. font-size: 32rpx;
  85. font-family: PingFang SC;
  86. font-weight: bold;
  87. line-height: 42rpx;
  88. color: #111111;
  89. }
  90. .concent {
  91. font-size: 26rpx;
  92. font-family: PingFang SC;
  93. font-weight: 400;
  94. line-height: 42rpx;
  95. color: #9D9CA1;
  96. }
  97. .name {
  98. font-size: 24rpx;
  99. font-family: PingFang SC;
  100. font-weight: bold;
  101. line-height: 42rpx;
  102. color: #111111;
  103. }
  104. .ping {
  105. width: 702rpx;
  106. height: 210rpx;
  107. background: rgba(247, 246, 251, 1);
  108. border-radius: 8rpx;
  109. padding: 22rpx 28rpx;
  110. }
  111. .image {
  112. width: 66rpx;
  113. height: 66rpx;
  114. border-radius: 50%;
  115. }
  116. .duihuan {
  117. width: 702rpx;
  118. height: 90rpx;
  119. background: rgba(143, 211, 243, 1);
  120. border-radius: 46rpx;
  121. font-size: 36rpx;
  122. font-family: PingFang SC;
  123. font-weight: 500;
  124. line-height: 90rpx;
  125. color: #FFFFFF;
  126. text-align: center;
  127. }
  128. .bottom {
  129. width: 750rpx;
  130. height: 134rpx;
  131. background: rgba(255, 255, 255, 1);
  132. position: fixed;
  133. left: 0;
  134. bottom: 0;
  135. }
  136. .fu {
  137. font-size: 34rpx;
  138. font-family: PingFang SC;
  139. font-weight: bold;
  140. line-height: 105rpx;
  141. color: #F64016;
  142. }
  143. .money {
  144. font-size: 44rpx;
  145. font-family: DIN Alternate;
  146. font-weight: bold;
  147. line-height: 42rpx;
  148. color: #F64016;
  149. }
  150. .title {
  151. font-size: 36rpx;
  152. font-family: PingFang SC;
  153. font-weight: bold;
  154. line-height: 60rpx;
  155. color: #111111;
  156. }
  157. .info {
  158. width: 750rpx;
  159. height: 76rpx;
  160. background-color: #F8F8F8;
  161. font-size: 32rpx;
  162. font-family: PingFang SC;
  163. font-weight: bold;
  164. line-height: 76rpx;
  165. color: #111111;
  166. text-align: center;
  167. }
  168. .index-bg {
  169. position: absolute;
  170. top: 0;
  171. left: 0;
  172. z-index: -1;
  173. width: 750rpx;
  174. height: 100%;
  175. }
  176. </style>