integralConfirm.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. <template>
  2. <view class="box">
  3. <view class="topTis">
  4. <view class="tanhao">!</view>
  5. <view class="topTisTxt">提交申请后请到店兑换</view>
  6. </view>
  7. <view class="cont">
  8. <view class="contTitle">商品明细</view>
  9. <view class="goodsCont">
  10. <img :src="jfgoodsDetail.imgList[0].img" alt="" class="goodsImg" v-if="jfgoodsDetail.imgList.length>0">
  11. <image src="../../static/timg/noimg.png" class="goodsImg" v-else></image>
  12. <view class="goodsRight">
  13. <view class="goodsName">{{jfgoodsDetail.name}}</view>
  14. <view class="goodsNumbox">
  15. <view class="Price">¥<span>{{jfgoodsDetail.salePrice}}</span> </view>
  16. <view class="goodsNum">x{{goodsnum}}</view>
  17. </view>
  18. </view>
  19. </view>
  20. </view>
  21. <view class="shopCont">
  22. <view class="shopLeft">服务门店</view>
  23. <view class="shopName">{{shopName}}</view>
  24. </view>
  25. <view class="buybtnBox">
  26. <view class="ktyong"><view>合计 <span class="ktyong1">{{goodsnum*jfgoodsDetail.integral}}</span><span class="ktyong2">积分</span> </view>
  27. <view class="kyNum">可用积分:{{avaIntegral}}</view>
  28. </view>
  29. <view class="bottomBtn" @click="goBuy">提交订单</view>
  30. </view>
  31. </view>
  32. </template>
  33. <script>
  34. export default {
  35. data() {
  36. return {
  37. shopId:'',
  38. shopName:'',
  39. avaIntegral:'',
  40. goodsnum:'',
  41. jfgoodsDetail:'',
  42. }
  43. },
  44. onLoad(opt) {
  45. this.jfgoodsDetail=uni.getStorageSync("jfgoodsDetail");
  46. this.shopName=opt.shopName;
  47. this.shopId=opt.shopID;
  48. this.avaIntegral=opt.avaIntegral;
  49. this.goodsnum=opt.goodsnum;
  50. },
  51. methods: {
  52. goDetail(){
  53. uni.navigateTo({
  54. url:'integralgoodsDetail'
  55. })
  56. },
  57. goBuy(){
  58. uni.showLoading({
  59. title: '加载中'
  60. })
  61. this.$http('openIntegralMall/exchangeApply', {
  62. shopId:this.shopId,
  63. goodsID:this.jfgoodsDetail.id,
  64. qty:this.goodsnum
  65. },'POST').then(res => {
  66. uni.hideLoading();
  67. if(res.code==0){
  68. this.orderData=res.data
  69. uni.showToast({
  70. title: '兑换成功',
  71. icon: 'none',
  72. duration: 3000
  73. });
  74. }else{
  75. uni.showToast({
  76. title: res.msg,
  77. icon: 'none',
  78. duration: 3000
  79. });
  80. }
  81. })
  82. }
  83. }
  84. }
  85. </script>
  86. <style scoped>
  87. .box{
  88. background: #F4F5F7;
  89. min-height: 100vh;
  90. }
  91. .tanhao{
  92. width: 30rpx;
  93. height: 30rpx;
  94. background: #F19D01;
  95. border-radius: 50%;
  96. text-align: center;
  97. line-height: 30rpx;
  98. color: #ffffff;
  99. font-size: 30rpx;
  100. }
  101. .topTis{
  102. padding: 20rpx 21rpx;
  103. background: #FDF5E5;
  104. display: flex;
  105. }
  106. .topTisTxt{
  107. color: #F19D01;font-size: 26rpx;line-height: 30rpx;padding-left: 10rpx;
  108. }
  109. .cont{
  110. width: 702rpx;
  111. background: #FFFFFF;
  112. border-radius: 10rpx;
  113. margin-left: 24rpx;
  114. margin-top: 20rpx;
  115. }
  116. .contTitle{
  117. font-size: 30rpx;
  118. font-family: PingFangSC-Medium, PingFang SC;
  119. font-weight: 500;
  120. color: #3C3C3C;
  121. line-height: 42rpx;
  122. padding: 26rpx 20rpx;
  123. border-bottom: 1px solid #EEEEEE;
  124. }
  125. .goodsImg{
  126. width: 120rpx;
  127. height: 120rpx;
  128. }
  129. .goodsCont{
  130. display: flex;
  131. padding: 30rpx 20rpx;
  132. }
  133. .goodsRight{
  134. width: 522rpx;
  135. padding-left: 20rpx;
  136. display: flex;
  137. flex-direction: column;
  138. justify-content: space-between;
  139. }
  140. .goodsName{
  141. color: #3C3C3C;font-size: 26rpx;
  142. }
  143. .goodsNumbox{
  144. display: flex;
  145. justify-content: space-between;
  146. }
  147. .Price{
  148. color: #3C3C3C;font-size: 22rpx;
  149. }
  150. .Price span{
  151. font-weight: 500;
  152. color: #3C3C3C;
  153. font-size: 32rpx;
  154. }
  155. .goodsNum{
  156. color: #999999;font-size: 24rpx;padding-top: 5rpx;
  157. }
  158. .buybtnBox{
  159. width: 750rpx;
  160. height: 120rpx;
  161. background: #FFFFFF;
  162. box-shadow: 0px -2px 10px 0px rgba(153,153,153,0.2000);
  163. display: flex;
  164. justify-content: space-between;
  165. position: fixed;
  166. left: 0;
  167. bottom: 0;
  168. padding-bottom: env(safe-area-inset-bottom);
  169. }
  170. .ktyong{
  171. font-weight: 500;
  172. color: #666666;
  173. font-size: 24rpx;
  174. padding-left: 30rpx;
  175. padding-top: 18rpx;
  176. } .ktyong1{
  177. color: #FF0000;
  178. font-size: 32rpx;
  179. }
  180. .ktyong2{
  181. color: #FF0000;
  182. font-size: 24rpx;
  183. }
  184. .kyNum{
  185. color: #999999;
  186. font-size: 24rpx;
  187. }
  188. .bottomBtn{
  189. width: 204rpx;
  190. height: 74rpx;
  191. background: #D53533;
  192. border-radius: 37rpx;
  193. line-height: 74rpx;
  194. text-align: center;
  195. color: #FFFFFF;
  196. font-size: 30rpx;
  197. margin-top: 23rpx;
  198. margin-left: 70rpx;
  199. margin-right: 30rpx;
  200. }
  201. .shopCont{
  202. background: #FEFFFE;
  203. border-radius: 10rpx;
  204. width: 702rpx;
  205. padding: 30rpx 0;
  206. margin-top: 20rpx;
  207. margin-left: 24rpx;
  208. display: flex;
  209. justify-content: space-between;
  210. }
  211. .shopLeft{
  212. color: #666666;
  213. font-size: 28rpx;
  214. padding-left: 20rpx;
  215. }
  216. .shopName{
  217. color: #333333;font-size: 28rpx;
  218. padding-right: 20rpx;
  219. }
  220. </style>