maintainSubmit.vue 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366
  1. <template>
  2. <view class="box">
  3. <view class="cont">
  4. <view class="itemBox flex">
  5. <image class="itemIMg" v-if="itemDefault.mainImgUrl" :src="itemDefault.mainImgUrl" mode=""></image>
  6. <image class="itemIMg" v-else src="../../static/timg/noimg.png" mode=""></image>
  7. <view class="itemRight">
  8. <view class="itemName">{{itemDefault.goodsname}}</view>
  9. <view style="display: flex;">
  10. <view class="buyType">{{itemDefault.title}}</view>
  11. </view>
  12. <view class="priceBox">
  13. <view class="price">¥{{itemDefault.money}}</view>
  14. <view class="itemNum">x{{itemDefault.goodsnum}}</view>
  15. </view>
  16. <view class="itemnotes">注:该商品购买后不支持线上退款</view>
  17. </view>
  18. </view>
  19. <view class="mealBox" v-if="itemDefault.content">
  20. <view class="fwlcTitle" >套餐内容</view>
  21. <rich-text :nodes="itemDefault.content" style="background: #fff;"></rich-text>
  22. </view>
  23. <view class="goodsBox">
  24. <view class="goodsline flex" style="border-bottom: 1px solid #EEEEEE;">
  25. <view class="goodsLeft">商品总价</view>
  26. <view class="goodRight">¥{{totalPrice}}</view>
  27. </view>
  28. <view class="goodsline flex" >
  29. <view class="goodsLeft"></view>
  30. <view class="goodRight" style="font-size: 26rpx;font-weight: 500;">合计 <span style="color: #EC0F0A;padding-left: 6rpx;">¥{{totalPrice}}</span></view>
  31. </view>
  32. </view>
  33. <view class="goodsBox">
  34. <view class="goodsline flex" style="border-bottom: 1px solid #EEEEEE;">
  35. <view class="goodsLeft">支付方式</view>
  36. <view class="goodRight">线上支付</view>
  37. </view>
  38. <view class="goodsline flex" >
  39. <view class="goodsLeft">使用方式</view>
  40. <view class="goodRight" >到店使用</view>
  41. </view>
  42. </view>
  43. </view>
  44. <view style="height: 150rpx;"></view>
  45. <view class="bottom">
  46. <view class="bleft">
  47. <span>合计</span>
  48. <span style="color: #EC0F0A;padding-left: 6rpx;">¥</span>
  49. <span style="font-weight: 500;font-size: 34rpx;color: #EC0F0A;">{{totalPrice}}</span>
  50. </view>
  51. <view class="Btn commonBtn" @click="submitFn">提交订单</view>
  52. </view>
  53. </view>
  54. </template>
  55. <script>
  56. export default {
  57. components: {
  58. },
  59. data() {
  60. return {
  61. themeColor:'',
  62. ext:'',
  63. goodsnum:1,
  64. itemDefault:'',
  65. totalPrice:'',
  66. sheetDetail:[],
  67. userInfo:'',
  68. carInfo:'',
  69. }
  70. },
  71. onLoad(opt) {
  72. this.ext = this.$common.getExtStoreId();
  73. this.themeColor = uni.getStorageSync("themeColor");
  74. this.itemDefault=uni.getStorageSync("itemDefault");
  75. this.totalPrice=this.itemDefault.goodsnum*this.itemDefault.money
  76. this.totalPrice=this.totalPrice.toFixed(2)
  77. var obj={
  78. itemId:this.itemDefault.itemId,
  79. itemName:this.itemDefault.goodsname,
  80. itemQty:this.itemDefault.goodsnum,
  81. salePrice:this.itemDefault.money,
  82. totalPrice:this.totalPrice,
  83. packageItemID:this.itemDefault.id,
  84. }
  85. this.sheetDetail.push(obj)
  86. this.carInfo=this.$store.state.carInfo;
  87. this.userInfo=uni.getStorageSync("wxOpenData");
  88. console.log(this.userInfo)
  89. },
  90. onShow() {
  91. },
  92. methods: {
  93. submitFn(){
  94. var params={
  95. sheetType:7,
  96. sheetContent:this.itemDefault.goodsname,
  97. customerName:this.userInfo.loginInfo.customerInfo.customerName,
  98. mobilePhone:this.userInfo.loginInfo.customerInfo.mobilePhone,
  99. plateNumber:this.carInfo.plateNumber,
  100. carModel:this.carInfo.carModel,
  101. totalMoney:this.totalPrice,
  102. sheetDetail:JSON.stringify(this.sheetDetail),
  103. groupType:0,
  104. comment:'',
  105. shareId:'',
  106. shopId:this.userInfo.loginInfo.customerInfo.shopID,
  107. }
  108. uni.showLoading({
  109. title: '加载中'
  110. })
  111. this.$http('openMallOrder/submitOrder', params,'POST').then(res => {
  112. uni.hideLoading();
  113. if(res.code==0){
  114. this.orderData=res.data
  115. this.unifiedPay(res.data)
  116. }else{
  117. uni.showToast({
  118. title: res.msg,
  119. icon: 'none',
  120. duration: 3000
  121. });
  122. }
  123. })
  124. },
  125. unifiedPay(res){
  126. this.$http('openMallOrder/unifiedPay', {
  127. sheetId:res.id
  128. },'POST').then(res => {
  129. this.isgo=true;
  130. if(res.code==0){
  131. this.requestPayment(res.data)
  132. }else{
  133. uni.showToast({
  134. title: res.msg,
  135. icon: 'none',
  136. duration: 3000
  137. });
  138. }
  139. })
  140. },
  141. requestPayment(res){
  142. var payInfo=res;
  143. //console.log(payInfo)
  144. //console.log(String(Date.now()))
  145. var that=this;
  146. uni.requestPayment({
  147. provider: 'wxpay',
  148. //timeStamp: String(Date.now()),
  149. timeStamp: payInfo.timeStamp,
  150. nonceStr: payInfo.nonceStr,
  151. package:payInfo.package,
  152. signType: payInfo.signType,
  153. paySign: payInfo.paySign,
  154. appid:payInfo.appId,
  155. success: function (res) {
  156. console.log('success:' + JSON.stringify(res));
  157. uni.showToast({
  158. title: '支付成功',
  159. icon:'none',
  160. duration: 2000
  161. });
  162. uni.navigateTo({
  163. url:'paySuccess?type=1&orderType=1'
  164. })
  165. },
  166. fail: function (err) {
  167. console.log(err)
  168. uni.showToast({
  169. title: '支付失败',
  170. icon:'none',
  171. duration: 2000
  172. });
  173. uni.navigateTo({
  174. url:'paySuccess?type=2&orderType=1'
  175. })
  176. }
  177. });
  178. },
  179. }
  180. }
  181. </script>
  182. <style scoped lang="less">
  183. .box {
  184. width: 100vw;
  185. min-height: 100vh;
  186. background: #F4F4F4;
  187. }
  188. .cont{
  189. padding: 20rpx 24rpx;
  190. }
  191. .itemBox{
  192. background: #FFFFFF;
  193. border-radius: 16rpx;padding: 24rpx;
  194. }
  195. .itemIMg{
  196. width: 180rpx;
  197. height: 180rpx;border-radius: 10rpx;
  198. }
  199. .flex{
  200. display: flex;
  201. }
  202. .itemRight{
  203. width: 450rpx;padding-left: 24rpx;
  204. }
  205. .itemName{
  206. font-weight: 500;
  207. font-size: 28rpx;
  208. color: #222222;
  209. line-height: 40rpx;
  210. }
  211. .buyType{
  212. min-width: 106rpx;text-align: center;
  213. height: 32rpx;line-height: 32rpx;
  214. border-radius: 5rpx;
  215. border: 1px solid #FF0035;font-size: 22rpx;
  216. color: #FF0035;
  217. margin-top: 10rpx;
  218. }
  219. .priceBox{
  220. display: flex;justify-content: space-between;padding-top: 10rpx;
  221. }
  222. .price{
  223. font-weight: 500;
  224. font-size: 36rpx;
  225. color: #222222;
  226. line-height: 50rpx;
  227. }
  228. .itemNum{
  229. font-size: 34rpx;line-height: 50rpx;
  230. color: #686868;
  231. }
  232. .itemnotes{
  233. font-size: 24rpx;padding-top: 12rpx;
  234. color: #FFC107;
  235. }
  236. .mealBox{
  237. background: #FFFFFF;
  238. padding: 20rpx 24rpx;
  239. margin-top: 20rpx;
  240. }
  241. .fwlcTitle{
  242. color: #333333;font-size: 30rpx;font-weight: 500;
  243. }
  244. .mealTop{
  245. display: flex;
  246. justify-content: space-between;
  247. height: 72rpx;
  248. line-height: 72rpx;
  249. font-weight: 500;
  250. font-size: 26rpx;
  251. color: #222222;
  252. font-size: 26rpx;
  253. padding: 0 20rpx;
  254. }
  255. .mealNum{
  256. text-align: center;
  257. width: 120rpx;
  258. }
  259. .mealexpire{
  260. text-align: center; width: 120rpx;
  261. }
  262. .mealName{
  263. width: 460rpx;
  264. }
  265. .mealTop2{
  266. display: flex;
  267. justify-content: space-between;
  268. height: 72rpx;
  269. line-height: 72rpx;
  270. font-weight: 500;
  271. font-size: 26rpx;
  272. color: #222222;
  273. font-size: 26rpx;
  274. padding: 0 20rpx;
  275. background: #FFF6DB;
  276. }
  277. .mealXj{
  278. background: #FFFCF3;
  279. }
  280. .xjLine{
  281. display: flex;
  282. font-weight: 500;
  283. font-size: 26rpx;
  284. color: #222222;
  285. padding: 20rpx 20rpx;
  286. }
  287. .xjyd{
  288. width: 8rpx;
  289. height: 8rpx;
  290. background: #FABF1B;
  291. border-radius: 50rpx;
  292. margin-top: 12rpx;
  293. margin-right: 10rpx;
  294. }
  295. .mealMs{
  296. background: #FFFFFF;
  297. padding: 20rpx;
  298. font-weight: 400;
  299. font-size: 24rpx;
  300. color: #9A9A9A;
  301. line-height: 38rpx;
  302. }
  303. .goodsBox{
  304. padding: 0rpx 18rpx;font-size: 26rpx;
  305. color: #222222;background: #FFFFFF;margin-top: 20rpx;
  306. border-radius: 16rpx;
  307. }
  308. .goodsline{
  309. justify-content: space-between;
  310. padding: 28rpx 0;
  311. }
  312. .bottom{
  313. background: #FFFFFF;
  314. display: flex;
  315. justify-content: space-between;
  316. position: fixed;
  317. width: 100%;
  318. padding:30rpx 0;
  319. /* padding-bottom: constant(safe-area-inset-bottom);
  320. padding-bottom: env(safe-area-inset-bottom); */
  321. left: 0;bottom: 0;
  322. }
  323. .bleft{
  324. font-weight: 500;
  325. font-size: 26rpx;
  326. color: #222222;
  327. line-height: 86rpx;
  328. padding-left: 50rpx;
  329. }
  330. .Btn{
  331. width: 223rpx;text-align: center;
  332. height: 86rpx;line-height: 86rpx;
  333. background: #FCD903;
  334. border-radius: 43rpx;
  335. font-size: 32rpx;
  336. color: #110B01;
  337. margin-right: 36rpx;
  338. }
  339. </style>