maintainSubmit.vue 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388
  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: 200rpx;"></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. customerInfo:'',
  70. }
  71. },
  72. onLoad(opt) {
  73. this.ext = this.$common.getExtStoreId();
  74. this.themeColor = uni.getStorageSync("themeColor");
  75. this.itemDefault=uni.getStorageSync("itemDefault");
  76. this.totalPrice=this.itemDefault.goodsnum*this.itemDefault.money
  77. this.totalPrice=this.totalPrice.toFixed(2)
  78. var obj={
  79. itemId:this.itemDefault.itemId,
  80. itemName:this.itemDefault.goodsname,
  81. itemQty:this.itemDefault.goodsnum,
  82. salePrice:this.itemDefault.money,
  83. totalPrice:this.totalPrice,
  84. packageItemID:this.itemDefault.id,
  85. }
  86. this.sheetDetail.push(obj)
  87. this.carInfo=this.$store.state.carInfo;
  88. this.userInfo=uni.getStorageSync("wxOpenData");
  89. this.customerInfo=uni.getStorageSync("customerInfo")
  90. console.log(this.userInfo)
  91. },
  92. onShow() {
  93. },
  94. methods: {
  95. submitFn(){
  96. if(this.userInfo.loginInfo){
  97. var customerName=this.userInfo.loginInfo.customerInfo.customerName
  98. var mobilePhone=this.userInfo.loginInfo.customerInfo.mobilePhone
  99. var shopID=this.userInfo.loginInfo.customerInfo.shopID
  100. }else{
  101. var customerName=this.customerInfo.customerName
  102. var mobilePhone=this.customerInfo.mobilePhone
  103. var shopID=this.customerInfo.shopID
  104. }
  105. var params={
  106. sheetType:7,
  107. sheetContent:this.itemDefault.goodsname,
  108. customerName:customerName,
  109. mobilePhone:mobilePhone,
  110. plateNumber:this.carInfo.plateNumber,
  111. carModel:this.carInfo.carModel,
  112. totalMoney:this.totalPrice,
  113. sheetDetail:JSON.stringify(this.sheetDetail),
  114. groupType:0,
  115. comment:'',
  116. shareId:'',
  117. shopId:shopID,
  118. }
  119. uni.showLoading({
  120. title: '加载中'
  121. })
  122. this.$http('openMallOrder/submitOrder', params,'POST').then(res => {
  123. uni.hideLoading();
  124. if(res.code==0){
  125. this.orderData=res.data
  126. this.unifiedPay(res.data)
  127. }else{
  128. uni.showToast({
  129. title: res.msg,
  130. icon: 'none',
  131. duration: 3000
  132. });
  133. }
  134. })
  135. },
  136. unifiedPay(res){
  137. this.$http('openMallOrder/unifiedPay', {
  138. sheetId:res.id
  139. },'POST').then(res => {
  140. this.isgo=true;
  141. if(res.code==0){
  142. this.requestPayment(res.data)
  143. }else{
  144. uni.showToast({
  145. title: res.msg,
  146. icon: 'none',
  147. duration: 3000
  148. });
  149. }
  150. })
  151. },
  152. requestPayment(res){
  153. var payInfo=res;
  154. //console.log(payInfo)
  155. //console.log(String(Date.now()))
  156. var that=this;
  157. uni.requestPayment({
  158. provider: 'wxpay',
  159. //timeStamp: String(Date.now()),
  160. timeStamp: payInfo.timeStamp,
  161. nonceStr: payInfo.nonceStr,
  162. package:payInfo.package,
  163. signType: payInfo.signType,
  164. paySign: payInfo.paySign,
  165. appid:payInfo.appId,
  166. success: function (res) {
  167. console.log('success:' + JSON.stringify(res));
  168. uni.showToast({
  169. title: '支付成功',
  170. icon:'none',
  171. duration: 2000
  172. });
  173. uni.navigateTo({
  174. url:'paySuccess?type=1&orderType=1'
  175. })
  176. },
  177. fail: function (err) {
  178. console.log(err)
  179. uni.showToast({
  180. title: '支付失败',
  181. icon:'none',
  182. duration: 2000
  183. });
  184. uni.navigateTo({
  185. url:'paySuccess?type=2&orderType=1'
  186. })
  187. }
  188. });
  189. },
  190. }
  191. }
  192. </script>
  193. <style scoped lang="less">
  194. .box {
  195. width: 100vw;
  196. min-height: 100vh;
  197. background: #F4F4F4;
  198. }
  199. .cont{
  200. padding: 20rpx 24rpx;
  201. }
  202. .itemBox{
  203. background: #FFFFFF;
  204. border-radius: 16rpx;padding: 24rpx;
  205. }
  206. .itemIMg{
  207. width: 180rpx;
  208. height: 180rpx;border-radius: 10rpx;
  209. }
  210. .flex{
  211. display: flex;
  212. }
  213. .itemRight{
  214. width: 450rpx;padding-left: 24rpx;
  215. }
  216. .itemName{
  217. font-weight: 500;
  218. font-size: 28rpx;
  219. color: #222222;
  220. line-height: 40rpx;
  221. }
  222. .buyType{
  223. padding: 0 8rpx;text-align: center;
  224. height: 32rpx;line-height: 34rpx;
  225. border-radius: 5rpx;
  226. border: 1px solid #FF0035;font-size: 22rpx;
  227. color: #FF0035;
  228. margin-top: 10rpx;
  229. }
  230. .priceBox{
  231. display: flex;justify-content: space-between;padding-top: 10rpx;
  232. }
  233. .price{
  234. font-weight: 500;
  235. font-size: 36rpx;
  236. color: #222222;
  237. line-height: 50rpx;
  238. }
  239. .itemNum{
  240. font-size: 34rpx;line-height: 50rpx;
  241. color: #686868;
  242. }
  243. .itemnotes{
  244. font-size: 24rpx;padding-top: 12rpx;
  245. color: #FFC107;
  246. }
  247. .mealBox{
  248. background: #FFFFFF;
  249. padding: 20rpx 24rpx;
  250. margin-top: 20rpx;
  251. font-size: 26rpx;
  252. color: #666666;
  253. border-radius: 16rpx;
  254. }
  255. .fwlcTitle{
  256. color: #333333;font-size: 30rpx;font-weight: 500;
  257. padding-bottom: 20rpx;
  258. }
  259. .mealTop{
  260. display: flex;
  261. justify-content: space-between;
  262. height: 72rpx;
  263. line-height: 72rpx;
  264. font-weight: 500;
  265. font-size: 26rpx;
  266. color: #222222;
  267. font-size: 26rpx;
  268. padding: 0 20rpx;
  269. }
  270. .mealNum{
  271. text-align: center;
  272. width: 120rpx;
  273. }
  274. .mealexpire{
  275. text-align: center; width: 120rpx;
  276. }
  277. .mealName{
  278. width: 460rpx;
  279. }
  280. .mealTop2{
  281. display: flex;
  282. justify-content: space-between;
  283. height: 72rpx;
  284. line-height: 72rpx;
  285. font-weight: 500;
  286. font-size: 26rpx;
  287. color: #222222;
  288. font-size: 26rpx;
  289. padding: 0 20rpx;
  290. background: #FFF6DB;
  291. }
  292. .mealXj{
  293. background: #FFFCF3;
  294. }
  295. .xjLine{
  296. display: flex;
  297. font-weight: 500;
  298. font-size: 26rpx;
  299. color: #222222;
  300. padding: 20rpx 20rpx;
  301. }
  302. .xjyd{
  303. width: 8rpx;
  304. height: 8rpx;
  305. background: #FABF1B;
  306. border-radius: 50rpx;
  307. margin-top: 12rpx;
  308. margin-right: 10rpx;
  309. }
  310. .mealMs{
  311. background: #FFFFFF;
  312. padding: 20rpx;
  313. font-weight: 400;
  314. font-size: 24rpx;
  315. color: #9A9A9A;
  316. line-height: 38rpx;
  317. }
  318. .goodsBox{
  319. padding: 0rpx 18rpx;font-size: 26rpx;
  320. color: #222222;background: #FFFFFF;margin-top: 20rpx;
  321. border-radius: 16rpx;
  322. }
  323. .goodsline{
  324. justify-content: space-between;
  325. padding: 28rpx 0;
  326. }
  327. .bottom{
  328. background: #FFFFFF;
  329. display: flex;
  330. justify-content: space-between;
  331. position: fixed;
  332. width: 100%;
  333. padding:30rpx 0;
  334. padding-bottom: constant(safe-area-inset-bottom);
  335. padding-bottom: env(safe-area-inset-bottom);
  336. left: 0;bottom: 0;
  337. box-shadow: 0rpx -2rpx 16rpx 0rpx rgba(153, 153, 153, 0.2);
  338. }
  339. .bleft{
  340. font-weight: 500;
  341. font-size: 26rpx;
  342. color: #222222;
  343. line-height: 86rpx;
  344. padding-left: 50rpx;
  345. }
  346. .Btn{
  347. width: 223rpx;text-align: center;
  348. height: 86rpx;line-height: 86rpx;
  349. background: #FCD903;
  350. border-radius: 43rpx;
  351. font-size: 32rpx;
  352. color: #110B01;
  353. margin-right: 36rpx;
  354. }
  355. .mealBox img{
  356. width: 100%;
  357. }
  358. .mealBox image{
  359. width: 100%;
  360. }
  361. </style>