confirm.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506
  1. <template>
  2. <view class="box">
  3. <view class="topBox"></view>
  4. <view class="yuanhu"></view>
  5. <view class="goodsBox">
  6. <view class="goodsBoxLeft">
  7. <image :src="goodsInfo.ImgList[0].url" mode="" v-if="goodsInfo.ImgList.length>0" class="hotGoodsLineImg"></image>
  8. <image src="../../static/timg/noimg.png" v-else class="hotGoodsLineImg" ></image>
  9. </view>
  10. <view class="goodsBoxRgiht">
  11. <view class="goodsName">{{goodsInfo.name}}</view>
  12. <view class="goodsBottom">
  13. <view class="goodsPrice"> <span class="goodsPrice1">¥</span> {{goodsInfo.salePrice?goodsInfo.salePrice:goodsInfo.scribingPrice}}
  14. <span v-if="goodsInfo.categoryIds=='7B97D114-C419-42B2-9C1E-0B4CA284CDA0'">万</span>
  15. </view>
  16. <view class="numJsbox">
  17. <view class="numJj" @click="calculation(1)">-</view>
  18. <view class="goodsnum">
  19. <input type="number" value="" v-model="goodsnum" class="goodsnumInput"/>
  20. </view>
  21. <view class="numJj" @click="calculation(2)">+</view>
  22. </view>
  23. </view>
  24. </view>
  25. </view>
  26. <view class="cont">
  27. <view class="contKk">
  28. <view class="contLine">
  29. <view class="contlineLeft">服务门店</view>
  30. <view class="contlineRight">{{shopName}}</view>
  31. </view>
  32. <view class="contLine">
  33. <view class="contlineLeft">车牌号</view>
  34. <view class="contlineRight" @click="goCarlist">
  35. <span>{{carInfo.plateNumber}}</span>
  36. <image src="../../static/timg/icon_arrow_right.png" mode="" class="contlineRightJt"></image>
  37. </view>
  38. </view>
  39. <view class="contLine">
  40. <view class="contlineLeft">车型</view>
  41. <view class="contlineRight carModelRight" @click="goCarlist">
  42. <span class="carModel">{{carInfo.carModel?carInfo.carModel:'选择车辆'}}</span>
  43. <image src="../../static/timg/icon_arrow_right.png" mode="" class="contlineRightJt"></image>
  44. </view>
  45. </view>
  46. <view class="contLine">
  47. <view class="contlineLeft">联系人</view>
  48. <view class="contlineRight">
  49. <input type="text" v-model="customerName" placeholder="请输入联系人姓名" class="contlineRightInput">
  50. </view>
  51. </view>
  52. <view class="contLine " style="border-bottom: none;">
  53. <view class="contlineLeft">手机号</view>
  54. <view class="contlineRight">
  55. <input type="text" v-model="mobilePhone" placeholder="请输入联系人手机号" class="contlineRightInput">
  56. </view>
  57. </view>
  58. </view>
  59. <view class="contKk" style="margin-top:20rpx;">
  60. <view class="contLine " style="border-bottom: none;">
  61. <view class="contlineLeft">订单备注</view>
  62. <view class="contlineRight">
  63. <input type="text" v-model="comment" placeholder="请输入" class="contlineRightInput2">
  64. </view>
  65. </view>
  66. </view>
  67. </view>
  68. <view style="height:120rpx"></view>
  69. <view class="bottomBox">
  70. <view class="bottomLeft">
  71. <view class="bottomLeftLine">合计 <span>¥</span> <span class="bottomPrice">{{totalMoney}}</span> </view>
  72. <view class="bottomLeftLine2">总优惠:¥{{yhMoney}}</view>
  73. </view>
  74. <view class="bottomBtn" @click="submit">提交订单</view>
  75. </view>
  76. </view>
  77. </template>
  78. <script>
  79. export default {
  80. components: {
  81. },
  82. data() {
  83. return {
  84. userInfo:'',
  85. goodsnum:1,
  86. id:'',
  87. info:'',
  88. carInfo:'',
  89. shopID:'',
  90. shopName:'',
  91. goodsInfo:'',
  92. totalMoney:'',
  93. yhMoney:0,
  94. customerName:'',
  95. mobilePhone:'',
  96. comment:'',
  97. mydata:'',
  98. orderData:'',
  99. }
  100. },
  101. onLoad(opt) {
  102. this.shopID=opt.shopID;
  103. this.shopName=opt.shopName;
  104. this.goodsnum=opt.itemQty;
  105. //console.log(this.carInfo)
  106. this.userInfo = uni.getStorageSync("userInfo");
  107. this.goodsInfo=uni.getStorageSync("goodsDetail");
  108. this.jsMoney()
  109. //this.openGoodsDetailById()
  110. /* var a=[
  111. {name:1},{name:2}
  112. ]
  113. var b=a.map(i=>i.name);
  114. console.log(b) */
  115. this.$http('openreservation/getInfo', {
  116. lat: '',
  117. lng:'',
  118. }, 'GET').then(res => {
  119. this.mydata = res.data
  120. this.mobilePhone=this.mydata.customerInfo.mobilePhone
  121. })
  122. },
  123. onShow() {
  124. this.carInfo=this.$store.state.carInfo;
  125. },
  126. methods: {
  127. submit(){
  128. var jsonArray = [];
  129. var obj={
  130. itemId:this.goodsInfo.id,
  131. itemName:this.goodsInfo.name,
  132. itemQty:this.goodsnum,
  133. salePrice:this.goodsInfo.salePrice,
  134. totalPrice:this.totalMoney
  135. }
  136. jsonArray.push(obj)
  137. //"bizType:1商品2项目3套餐
  138. var params={
  139. sheetType:this.goodsInfo.bizType,
  140. sheetContent:this.goodsInfo.name,
  141. customerName:this.customerName,
  142. mobilePhone:this.mobilePhone,
  143. plateNumber:this.carInfo.plateNumber,
  144. carModel:this.carInfo.carModel,
  145. totalMoney:this.totalMoney,
  146. shopId:this.shopID,
  147. comment:this.comment,
  148. sheetDetail:JSON.stringify(jsonArray)
  149. }
  150. uni.showLoading({
  151. title: '加载中'
  152. })
  153. this.$http('openMallOrder/submitOrder', params,'POST').then(res => {
  154. uni.hideLoading();
  155. if(res.code==0){
  156. this.orderData=res.data
  157. this.unifiedPay(res.data)
  158. }else{
  159. uni.showToast({
  160. title: res.msg,
  161. icon: 'none',
  162. duration: 3000
  163. });
  164. }
  165. })
  166. },
  167. unifiedPay(res){
  168. this.$http('openMallOrder/unifiedPay', {
  169. sheetId:res.id
  170. },'POST').then(res => {
  171. if(res.code==0){
  172. this.requestPayment(res.data)
  173. }else{
  174. uni.showToast({
  175. title: res.msg,
  176. icon: 'none',
  177. duration: 3000
  178. });
  179. }
  180. })
  181. },
  182. requestPayment(res){
  183. var payInfo=res;
  184. //console.log(payInfo)
  185. //console.log(String(Date.now()))
  186. var that=this;
  187. uni.requestPayment({
  188. provider: 'wxpay',
  189. //timeStamp: String(Date.now()),
  190. timeStamp: payInfo.timeStamp,
  191. nonceStr: payInfo.nonceStr,
  192. package:payInfo.package,
  193. signType: payInfo.signType,
  194. paySign: payInfo.paySign,
  195. appid:payInfo.appId,
  196. /* provider: 'wxpay',
  197. orderInfo:{
  198. "appid":payInfo.appid, // 微信开放平台 - 应用 - AppId,注意和微信小程序、公众号 AppId 可能不一致
  199. "noncestr": payInfo.nonceStr, // 随机字符串
  200. "package": "Sign=WXPay", // 固定值
  201. "partnerid":payInfo.mchId, // 微信支付商户号
  202. "prepayid": payInfo.prepayId, // 统一下单订单号
  203. "timeStamp": String(Date.now()), // 时间戳(单位:秒)
  204. "sign": payInfo.sign // 签名,这里用的 MD5/RSA 签名
  205. }, */
  206. success: function (res) {
  207. console.log('success:' + JSON.stringify(res));
  208. uni.showToast({
  209. title: '支付成功',
  210. icon:'none',
  211. duration: 2000
  212. });
  213. if((that.orderData.sheetType==1)||(that.orderData.sheetType==2)||(that.orderData.sheetType==3)){
  214. uni.redirectTo({
  215. url: "../user/myOrder/mallOrderDetail?id=" + that.orderData.id +"&SheetType=" + that.orderData.sheetType
  216. })
  217. }
  218. },
  219. fail: function (err) {
  220. console.log(err)
  221. uni.showToast({
  222. title: '支付失败',
  223. icon:'none',
  224. duration: 2000
  225. });
  226. console.log(that.orderData)
  227. if(that.orderData.sheetType==1||that.orderData.sheetType==2||that.orderData.sheetType==3){
  228. console.log("商城订单s")
  229. uni.redirectTo({
  230. url: "../user/myOrder/mallOrderDetail?id=" + that.orderData.id +"&SheetType=" + that.orderData.sheetType
  231. })
  232. }
  233. }
  234. });
  235. },
  236. openGoodsDetailById(){
  237. this.$http('openMall/openGoodsDetailById', {
  238. id:this.id
  239. },'GET').then(res => {
  240. this.info=res.data
  241. })
  242. },
  243. goINdex(){
  244. uni.switchTab({
  245. url:'../index/index'
  246. })
  247. },
  248. goCarlist(){
  249. uni.navigateTo({
  250. url:'../user/addCar/cailist'
  251. })
  252. },
  253. calculation(type){
  254. if(type==1){
  255. if(this.goodsnum>1){
  256. this.goodsnum--
  257. this.jsMoney()
  258. }
  259. }else{
  260. if(this.goodsInfo.oneQty>this.goodsnum){
  261. this.goodsnum++
  262. this.jsMoney()
  263. }
  264. }
  265. },
  266. jsMoney(){
  267. if(this.goodsInfo.salePrice){
  268. if(this.goodsInfo.categoryIds=='7B97D114-C419-42B2-9C1E-0B4CA284CDA0'){
  269. this.totalMoney=this.goodsInfo.salePrice*this.goodsnum*10000;
  270. }
  271. if(this.goodsInfo.scribingPrice){
  272. var wyh=this.goodsInfo.scribingPrice*this.goodsnum;
  273. this.yhMoney=wyh-this.totalMoney;
  274. console.log(this.yhMoney)
  275. this.yhMoney=this.yhMoney.toFixed(2)
  276. }else{
  277. this.yhMoney=0
  278. }
  279. this.totalMoney=this.totalMoney.toFixed(2)
  280. }else{
  281. this.totalMoney=this.goodsInfo.scribingPrice*this.goodsnum
  282. this.totalMoney=this.totalMoney.toFixed(2)
  283. this.yhMoney=0
  284. }
  285. }
  286. }
  287. }
  288. </script>
  289. <style scoped lang="less">
  290. .bottomBox{
  291. width: 750rpx;
  292. height: 120rpx;
  293. background: #FFFFFF;
  294. box-shadow: 0px -2px 10rpx 0px rgba(153,153,153,0.2000);
  295. display: flex;
  296. justify-content: space-between;
  297. position: fixed;
  298. left: 0;
  299. bottom: 0;
  300. }
  301. .bottomLeft{
  302. padding-top: 23rpx;
  303. padding-left: 30rpx;
  304. }
  305. .bottomLeftLine{
  306. color: #666666;
  307. font-size: 24rpx;
  308. }
  309. .bottomLeftLine span{
  310. color: #FF0000;
  311. }
  312. .bottomPrice{
  313. font-size: 32rpx;
  314. font-weight: 500;
  315. }
  316. .bottomLeftLine2{
  317. color: #999999;
  318. line-height: 33rpx;
  319. font-size: 24rpx;
  320. }
  321. .bottomBtn{
  322. width: 204rpx;
  323. height: 74rpx;
  324. background: #D53533;
  325. border-radius: 37rpx;
  326. text-align: center;
  327. line-height: 74rpx;
  328. color: #FFFFFF;
  329. font-size: 30rpx;
  330. margin-top: 23rpx;
  331. margin-right: 30rpx;
  332. }
  333. .cont{
  334. padding: 20rpx 24rpx;
  335. }
  336. .contKk{
  337. background: #FFFFFF;border-radius: 10rpx;
  338. padding: 0 20rpx;
  339. }
  340. .contLine{
  341. display: flex;
  342. justify-content: space-between;
  343. font-size: 28rpx;
  344. padding: 30rpx 0;
  345. border-bottom: 1px solid #EEEEEE;
  346. }
  347. .contlineLeft{
  348. color: #666666;
  349. line-height: 40rpx;
  350. }
  351. .carModel{
  352. width: 400rpx;
  353. display: inline-block;
  354. white-space: nowrap;
  355. overflow: hidden;
  356. text-overflow: ellipsis;
  357. }
  358. .carModelRight{
  359. display: flex;justify-content: space-between;
  360. }
  361. .contlineRight{
  362. color: #333333;
  363. line-height: 40rpx;
  364. white-space: nowrap;
  365. overflow: hidden;
  366. text-overflow: ellipsis;
  367. width: 450rpx;
  368. text-align: right;
  369. }
  370. .contlineRightInput{
  371. color: #333333;
  372. }
  373. .contlineRightJt{
  374. width: 12rpx;
  375. height: 20rpx;
  376. margin-left: 20rpx;
  377. margin-top: 10rpx;
  378. }
  379. .box{
  380. background: #F4F5F7;
  381. min-height: 100vh;
  382. }
  383. .topBox{
  384. height: 140rpx;
  385. background: #FF0000;
  386. width: 750rpx;
  387. }
  388. .yuanhu{
  389. width: 750rpx;
  390. height: 30rpx;
  391. background: #FF0000;
  392. border-radius: 0 0 100% 100%;
  393. }
  394. .goodsBox{
  395. width: 662rpx;
  396. height: 194rpx;
  397. background: #FFFFFF;
  398. border-radius: 16rpx;
  399. margin-left: 24rpx;
  400. margin-top: -100rpx;
  401. padding: 20rpx;
  402. display: flex;
  403. }
  404. .goodsBoxLeft{
  405. width: 208rpx;
  406. height: 194rpx;
  407. border-radius: 16rpx;
  408. border: 1px solid #EEEEEE;
  409. }
  410. .hotGoodsLineImg{
  411. width: 208rpx;
  412. height: 194rpx;
  413. }
  414. .goodsnum{
  415. width: 88rpx;
  416. height: 44rpx;
  417. background: #F4F5F7;
  418. line-height: 44rpx;
  419. text-align: center;
  420. font-weight: 500;
  421. color: #333333;
  422. font-size: 24rpx;
  423. margin: 0 4rpx;
  424. }
  425. .goodsnumInput{
  426. width: 88rpx;
  427. height: 44rpx;
  428. background: #F4F5F7;
  429. line-height: 44rpx;
  430. text-align: center;
  431. font-weight: 500;
  432. color: #333333;
  433. font-size: 24rpx;
  434. }
  435. .numJsbox{
  436. display: flex;
  437. }
  438. .numJj{
  439. width: 44rpx;
  440. height: 44rpx;
  441. background: #F4F5F7;
  442. border-radius: 0px 6rpx 6rpx 0px;
  443. text-align: center;
  444. line-height: 44rpx;
  445. font-size: 32rpx;
  446. color: #999999;
  447. }
  448. .goodsnum{
  449. width: 88rpx;
  450. height: 44rpx;
  451. background: #F4F5F7;
  452. line-height: 44rpx;
  453. text-align: center;
  454. font-weight: 500;
  455. color: #333333;
  456. font-size: 24rpx;
  457. margin: 0 4rpx;
  458. }
  459. .goodsBottom{
  460. display: flex;
  461. justify-content: space-between;
  462. padding-top: 60rpx;
  463. }
  464. .goodsPrice{
  465. color: #333333;
  466. font-size: 32rpx;
  467. font-weight: 500;
  468. }
  469. .goodsPrice1{
  470. color: #333333;
  471. font-size: 22rpx;
  472. }
  473. .goodsName{
  474. font-weight: 400;
  475. color: #333333;
  476. line-height: 40rpx;
  477. font-size: 28rpx;
  478. height: 80rpx;
  479. text-overflow: -o-ellipsis-lastline;
  480. overflow: hidden;
  481. text-overflow: ellipsis;
  482. display: -webkit-box;
  483. -webkit-line-clamp: 2;
  484. line-clamp: 2;
  485. -webkit-box-orient: vertical;
  486. width: 420rpx;
  487. }
  488. .goodsBoxRgiht{
  489. padding-left: 24rpx;
  490. }
  491. </style>