orderinfo.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. <template>
  2. <view class="page">
  3. <view class="info">
  4. <view class="u-flex u-row-between">
  5. <text class="shang">商品信息</text>
  6. <text class="more">展开</text>
  7. </view>
  8. <view class="u-flex" style="margin-top: 32rpx;" v-for="(item,index) in 4" :key="index">
  9. <view class="box">
  10. <image src="/static/logo.png" style="width: 120rpx;height: 160rpx;" mode=""></image>
  11. </view>
  12. <view class=""
  13. style="margin-left: 20rpx;justify-content: space-between;display: flex;flex-direction: column;height: 160rpx;">
  14. <view class="">
  15. <view class="title u-line-1">中医基础理论(全国中医药行业高…</view>
  16. <view class="fufei">资源类型:付费资源</view>
  17. </view>
  18. <view class="money">¥324.5</view>
  19. </view>
  20. </view>
  21. <view class="jiner ">
  22. <view class="" style="margin-top: 24rpx;" class="u-flex u-row-between">
  23. <text class="sum">商品金额</text>
  24. <view class="">
  25. <text class="figure">¥</text>
  26. <text class="figure" style="font-size: 32rpx;font-weight: 400;">325.00</text>
  27. </view>
  28. </view>
  29. </view>
  30. </view>
  31. <view class="pay">
  32. <u-radio-group v-model="value" @change="radioGroupChange">
  33. <view class="u-flex u-row-between" style="width: 680rpx;">
  34. <view class="u-flex">
  35. <image src="/static/images/wei.png" style="width: 40rpx;height: 40rpx;" mode=""></image>
  36. <view class="weipay">微信支付</view>
  37. </view>
  38. <view class="">
  39. <u-radio @change="radioChange">
  40. </u-radio>
  41. </view>
  42. </view>
  43. <view class="u-flex u-row-between"
  44. style="width: 680rpx;border-top: rgba(151, 151, 151, 0.1);margin-top: 30rpx;padding-top: 26rpx;">
  45. <view class="u-flex">
  46. <image src="/static/images/zhi.png" style="width: 40rpx;height: 40rpx;" mode=""></image>
  47. <view class="weipay">支付宝支付</view>
  48. </view>
  49. <view class="">
  50. <u-radio @change="radioChange">
  51. </u-radio>
  52. </view>
  53. </view>
  54. </u-radio-group>
  55. </view>
  56. <view class="" style="height: 166rpx;"></view>
  57. <view class="bottom u-flex u-row-right">
  58. <view class="">
  59. <text>合计:</text>
  60. <text>¥</text>
  61. <text>325.00</text>
  62. </view>
  63. <view class="btn" @click="pay">
  64. 确认支付
  65. </view>
  66. </view>
  67. </view>
  68. </template>
  69. <script>
  70. export default {
  71. data() {
  72. return {
  73. value: 0
  74. };
  75. },
  76. methods: {
  77. // 选中某个单选框时,由radio时触发
  78. radioChange(e) {
  79. // console.log(e);
  80. },
  81. // 选中任一radio时,由radio-group触发
  82. radioGroupChange(e) {
  83. // console.log(e);
  84. },
  85. pay(){
  86. uni.navigateTo({
  87. url:'/pages/index/pay/pay'
  88. })
  89. }
  90. }
  91. }
  92. </script>
  93. <style lang="scss" scoped>
  94. .weipay {
  95. font-size: 26rpx;
  96. font-family: PingFangSC, PingFang SC;
  97. font-weight: 400;
  98. color: #333333;
  99. margin-left: 20rpx;
  100. }
  101. .bottom {
  102. width: 750rpx;
  103. height: 166rpx;
  104. background: #FFFFFF;
  105. position: fixed;
  106. bottom: 0;
  107. padding: 0 28rpx;
  108. left: 0;
  109. .btn {
  110. width: 212rpx;
  111. height: 88rpx;
  112. background: #06A971;
  113. border-radius: 12rpx;
  114. font-size: 32rpx;
  115. font-family: PingFangSC, PingFang SC;
  116. font-weight: 500;
  117. color: #FFFFFF;
  118. line-height: 88rpx;
  119. text-align: center;
  120. margin-left: 24rpx;
  121. }
  122. }
  123. .pay {
  124. width: 694rpx;
  125. height: 200rpx;
  126. background: #FFFFFF;
  127. border-radius: 16rpx;
  128. margin-top: 20rpx;
  129. padding: 32rpx 20rpx;
  130. }
  131. .jiner {
  132. width: 654rpx;
  133. height: 2rpx;
  134. border-top: 2rpx solid rgba(151, 151, 151, 0.1);
  135. margin-top: 32rpx;
  136. .sum {
  137. font-size: 26rpx;
  138. font-family: PingFangSC, PingFang SC;
  139. font-weight: 400;
  140. color: #222222;
  141. }
  142. .figure {
  143. font-size: 26rpx;
  144. font-family: JDZhengHT, JDZhengHT;
  145. font-weight: 300;
  146. color: #222222;
  147. }
  148. }
  149. .shang {
  150. font-size: 26rpx;
  151. font-family: PingFangSC, PingFang SC;
  152. font-weight: 400;
  153. color: #222222;
  154. }
  155. .more {
  156. font-size: 26rpx;
  157. font-family: PingFangSC, PingFang SC;
  158. font-weight: 400;
  159. color: #06A971;
  160. }
  161. .fufei {
  162. font-size: 24rpx;
  163. font-family: PingFangSC, PingFang SC;
  164. font-weight: 400;
  165. color: #444444;
  166. }
  167. .money {
  168. font-size: 32rpx;
  169. font-family: SFPro, SFPro;
  170. font-weight: 400;
  171. color: #CF1534;
  172. }
  173. .title {
  174. font-size: 28rpx;
  175. font-family: PingFangSC, PingFang SC;
  176. font-weight: 500;
  177. color: #333333;
  178. }
  179. .info {
  180. width: 694rpx;
  181. height: 944rpx;
  182. background: #FFFFFF;
  183. border-radius: 16rpx;
  184. padding: 24rpx 20rpx 30rpx;
  185. }
  186. .page {
  187. background-color: rgba(244, 244, 244, 1);
  188. padding: 20rpx 28rpx;
  189. min-height: 94vh;
  190. }
  191. .box {
  192. width: 160rpx;
  193. height: 160rpx;
  194. border: 2rpx solid rgba(151, 151, 151, 0.2);
  195. padding: 0 20rpx
  196. }
  197. </style>