confirm.vue 11 KB

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