paintSure.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661
  1. <template>
  2. <view class="box">
  3. <view class="topBox"></view>
  4. <view class="yuanhu"></view>
  5. <view class="carBox">
  6. <view class="left">
  7. <image :src="carInfo.brandLogo" mode="widthFix" class="brandLogo" v-if="carInfo.brandLogo">
  8. <img src="../../static/timg/nocar.png" alt="" class="brandLogo" v-else>
  9. </image>
  10. </view>
  11. <view class="right">
  12. <view class="carPlate">{{carInfo.plateNumber}}</view>
  13. <view class="car" v-if="carInfo.carModel">{{carInfo.carModel}}</view>
  14. <view class="car" v-else>暂无</view>
  15. </view>
  16. </view>
  17. <view class="cont">
  18. <view class="contKk">
  19. <view class="contLine">
  20. <view class="contlineLeft">联系人</view>
  21. <view class="contlineRight">
  22. <view class="contlineRight">{{customerName}}</view>
  23. </view>
  24. </view>
  25. <view class="contLine">
  26. <view class="contlineLeft">手机号</view>
  27. <view class="contlineRight">
  28. <view class="contlineRight">{{mobilePhone}}</view>
  29. </view>
  30. </view>
  31. <view class="contLine">
  32. <view class="contlineLeft">
  33. <image src="../../static/img/icon_star.png" mode="" class="star"></image>
  34. 服务门店
  35. </view>
  36. <view class="contlineRight carModelRight" @click="paintShopList">
  37. <span class="carModel" :class="{noColor:!shopInfo.shopName}">{{shopInfo.shopName?shopInfo.shopName:'选择服务门店'}}</span>
  38. <image src="../../static/img/little_rightArrow.png" mode="" class="contlineRightJt"></image>
  39. </view>
  40. </view>
  41. <view class="contLine">
  42. <view class="contlineLeft">
  43. <image src="../../static/img/icon_star.png" mode="" class="star"></image>
  44. 预约时间
  45. </view>
  46. <view class="contlineRight carModelRight" @click="cktime">
  47. <span class="carModel" :class="{noColor:!billDate}">{{billDate?billDate:'选择到店服务时间'}}</span>
  48. <image src="../../static/img/little_rightArrow.png" mode="" class="contlineRightJt"></image>
  49. </view>
  50. </view>
  51. </view>
  52. <view class="contKk" style="margin-top:20rpx;">
  53. <view class="detailedTitle">支付方式</view>
  54. <view class="contLine " style="border-bottom: none;">
  55. <view class="payLeft" v-if="PayType==1">
  56. <image src="../../static/img/icon_weixinzhifu.png" mode="" class="zhifuImg"></image>
  57. 微信支付
  58. </view>
  59. <view class="payLeft" v-if="PayType==2">
  60. <image src="../../static/img/icon_xianxia.png" mode="" class="zhifuImg"></image>
  61. 线下支付
  62. </view>
  63. <!-- <view class="contlineRight">
  64. <image src="../../static/img/icon_selectN.png" mode="" class="selectBtn"></image>
  65. </view> -->
  66. </view>
  67. </view>
  68. </view>
  69. <view style="height:120rpx"></view>
  70. <view class="bottomBox">
  71. <view class="bottomLeft">
  72. <view class="bottomLeftLine">合计 <span>¥</span> <span class="bottomPrice">{{totalMoney}}</span> </view>
  73. </view>
  74. <view class="bottomBtn" @click="submit">提交订单</view>
  75. </view>
  76. <timeSelect ref="timeSelect" :timedata="timedata" @changeTime="changeTime"></timeSelect>
  77. </view>
  78. </template>
  79. <script>
  80. import timeSelect from '@/components/timeSelect/timeSelect.vue'
  81. export default {
  82. components: {
  83. timeSelect
  84. },
  85. data() {
  86. return {
  87. userInfo: '',
  88. goodsnum: 1,
  89. id: '',
  90. info: '',
  91. carInfo: '',
  92. shopInfo:{},
  93. goodsInfo: '',
  94. totalMoney: '',
  95. yhMoney: 0,
  96. customerName: '',
  97. mobilePhone: '',
  98. comment: '',
  99. mydata: '',
  100. orderData: '',
  101. PayType:0,
  102. timedata:'',
  103. billDate:'',
  104. itemList:[],
  105. sheetDetail:[],
  106. }
  107. },
  108. onLoad(opt) {
  109. this.itemList = JSON.parse(opt.itemList);
  110. console.log(this.itemList)
  111. this.itemList.forEach(item=>{
  112. var obj={
  113. itemId:item.id,
  114. itemName:item.name,
  115. itemQty:1,
  116. salePrice:item.money,
  117. totalPrice:item.money,
  118. }
  119. this.sheetDetail.push(obj)
  120. })
  121. this.goodsnum = opt.itemQty;
  122. //console.log(this.carInfo)
  123. this.userInfo = uni.getStorageSync("userInfo");
  124. this.goodsInfo = uni.getStorageSync("goodsDetail");
  125. this.jsMoney()
  126. //this.openGoodsDetailById()
  127. /* var a=[
  128. {name:1},{name:2}
  129. ]
  130. var b=a.map(i=>i.name);
  131. console.log(b) */
  132. this.$http('openreservation/getInfo', {
  133. lat: '',
  134. lng: '',
  135. }, 'GET').then(res => {
  136. this.mydata = res.data
  137. this.customerName = this.mydata.customerInfo.customerName
  138. this.mobilePhone = this.mydata.customerInfo.mobilePhone
  139. this.shopInfo = this.mydata.shopInfo
  140. this.shopID=this.shopInfo.id
  141. uni.setStorage({
  142. key: 'yyshopInfo',
  143. data:this.shopInfo,
  144. success: function () {
  145. }
  146. });
  147. })
  148. this.$http('openSheetMetalSprayPaint/queryPayType', {
  149. }, 'GET').then(res => {
  150. this.PayType = res.data.PayType
  151. })
  152. },
  153. onShow() {
  154. this.carInfo = this.$store.state.carInfo;
  155. this.shopInfo=this.$store.state.ckshopInfo;
  156. uni.setStorage({
  157. key: 'yyshopInfo',
  158. data:this.shopInfo,
  159. success: function () {
  160. }
  161. });
  162. console.log(this.shopInfo)
  163. },
  164. methods: {
  165. changeTime(data){
  166. console.log(data)
  167. this.billDate=data
  168. },
  169. cktime(){
  170. this.$refs.timeSelect.open();
  171. },
  172. submit() {
  173. //"bizType:1商品2项目3套餐
  174. var params = {
  175. sheetType:'5',
  176. sheetContent: '钣喷',
  177. customerName: this.customerName,
  178. mobilePhone: this.mobilePhone,
  179. plateNumber: this.carInfo.plateNumber,
  180. carModel: this.carInfo.carModel,
  181. totalMoney: this.totalMoney,
  182. shopId: this.shopID,
  183. comment: this.comment,
  184. sheetDetail: JSON.stringify(this.sheetDetail),
  185. payType:this.PayType,
  186. }
  187. uni.showLoading({
  188. title: '加载中'
  189. })
  190. this.$http('openMallOrder/submitOrder', params, 'POST').then(res => {
  191. uni.hideLoading();
  192. if (res.code == 0) {
  193. this.orderData = res.data;
  194. if(this.PayType==1){
  195. this.unifiedPay(res.data)
  196. }else{
  197. uni.showToast({
  198. title: '提交成功',
  199. icon: 'none',
  200. duration: 2000
  201. });
  202. }
  203. } else {
  204. uni.showToast({
  205. title: res.msg,
  206. icon: 'none',
  207. duration: 3000
  208. });
  209. if (this.orderData.sheetType==5){
  210. uni.navigateTo({
  211. url: "../user/myOrder/paintOrderDetail?id=" +that.orderData.id
  212. })
  213. }
  214. }
  215. })
  216. },
  217. unifiedPay(res) {
  218. this.$http('openMallOrder/unifiedPay', {
  219. sheetId: res.id
  220. }, 'POST').then(res => {
  221. if (res.code == 0) {
  222. this.requestPayment(res.data)
  223. } else {
  224. uni.showToast({
  225. title: res.msg,
  226. icon: 'none',
  227. duration: 3000
  228. });
  229. }
  230. })
  231. },
  232. requestPayment(res) {
  233. var payInfo = res;
  234. //console.log(payInfo)
  235. //console.log(String(Date.now()))
  236. var that = this;
  237. uni.requestPayment({
  238. provider: 'wxpay',
  239. //timeStamp: String(Date.now()),
  240. timeStamp: payInfo.timeStamp,
  241. nonceStr: payInfo.nonceStr,
  242. package: payInfo.package,
  243. signType: payInfo.signType,
  244. paySign: payInfo.paySign,
  245. appid: payInfo.appId,
  246. /* provider: 'wxpay',
  247. orderInfo:{
  248. "appid":payInfo.appid, // 微信开放平台 - 应用 - AppId,注意和微信小程序、公众号 AppId 可能不一致
  249. "noncestr": payInfo.nonceStr, // 随机字符串
  250. "package": "Sign=WXPay", // 固定值
  251. "partnerid":payInfo.mchId, // 微信支付商户号
  252. "prepayid": payInfo.prepayId, // 统一下单订单号
  253. "timeStamp": String(Date.now()), // 时间戳(单位:秒)
  254. "sign": payInfo.sign // 签名,这里用的 MD5/RSA 签名
  255. }, */
  256. success: function(res) {
  257. console.log('success:' + JSON.stringify(res));
  258. uni.showToast({
  259. title: '支付成功',
  260. icon: 'none',
  261. duration: 2000
  262. });
  263. if ((that.orderData.sheetType == 1) || (that.orderData.sheetType == 2) || (that
  264. .orderData.sheetType == 3)) {
  265. uni.redirectTo({
  266. url: "../user/myOrder/mallOrderDetail?id=" + that.orderData.id +
  267. "&SheetType=" + that.orderData.sheetType
  268. })
  269. }else if (that.orderData.sheetType==5){
  270. uni.navigateTo({
  271. url: "../user/myOrder/paintOrderDetail?id=" +that.orderData.id
  272. })
  273. }
  274. },
  275. fail: function(err) {
  276. console.log(err)
  277. uni.showToast({
  278. title: '支付失败',
  279. icon: 'none',
  280. duration: 2000
  281. });
  282. console.log(that.orderData)
  283. if (that.orderData.sheetType == 1 || that.orderData.sheetType == 2 || that.orderData
  284. .sheetType == 3) {
  285. console.log("商城订单s")
  286. uni.redirectTo({
  287. url: "../user/myOrder/mallOrderDetail?id=" + that.orderData.id +
  288. "&SheetType=" + that.orderData.sheetType
  289. })
  290. }else if (that.orderData.sheetType==5){
  291. uni.navigateTo({
  292. url: "../user/myOrder/paintOrderDetail?id=" +that.orderData.id
  293. })
  294. }
  295. }
  296. });
  297. },
  298. openGoodsDetailById() {
  299. this.$http('openMall/openGoodsDetailById', {
  300. id: this.id
  301. }, 'GET').then(res => {
  302. this.info = res.data
  303. })
  304. },
  305. goINdex() {
  306. uni.switchTab({
  307. url: '../index/index'
  308. })
  309. },
  310. paintShopList() {
  311. uni.navigateTo({
  312. url: 'paintShopList'
  313. })
  314. },
  315. calculation(type) {
  316. if (type == 1) {
  317. if (this.goodsnum > 1) {
  318. this.goodsnum--
  319. this.jsMoney()
  320. }
  321. } else {
  322. if (this.goodsInfo.oneQty > this.goodsnum) {
  323. this.goodsnum++
  324. this.jsMoney()
  325. }
  326. }
  327. },
  328. jsMoney() {
  329. var money = 0.00
  330. this.itemList.forEach((item)=>{
  331. money += item.money
  332. })
  333. this.totalMoney = money;
  334. // if (this.goodsInfo.salePrice) {
  335. // this.totalMoney = this.goodsInfo.salePrice * this.goodsnum;
  336. // if (this.goodsInfo.scribingPrice) {
  337. // var wyh = this.goodsInfo.scribingPrice * this.goodsnum;
  338. // this.yhMoney = wyh - this.totalMoney;
  339. // console.log(this.yhMoney)
  340. // this.yhMoney = this.yhMoney.toFixed(2)
  341. // } else {
  342. // this.yhMoney = 0
  343. // }
  344. // this.totalMoney = this.totalMoney.toFixed(2)
  345. // } else {
  346. // this.totalMoney = this.goodsInfo.scribingPrice * this.goodsnum
  347. // this.totalMoney = this.totalMoney.toFixed(2)
  348. // this.yhMoney = 0
  349. // }
  350. }
  351. }
  352. }
  353. </script>
  354. <style scoped lang="less">
  355. .bottomBox {
  356. width: 750rpx;
  357. height: 120rpx;
  358. background: #FFFFFF;
  359. box-shadow: 0px -2px 10rpx 0px rgba(153, 153, 153, 0.2000);
  360. display: flex;
  361. justify-content: space-between;
  362. position: fixed;
  363. left: 0;
  364. bottom: 0;
  365. padding-bottom: constant(safe-area-inset-bottom);
  366. padding-bottom: env(safe-area-inset-bottom);
  367. }
  368. .bottomLeft {
  369. padding-top: 23rpx;
  370. padding-left: 30rpx;
  371. }
  372. .bottomLeftLine {
  373. color: #666666;
  374. font-size: 24rpx;
  375. }
  376. .bottomLeftLine span {
  377. color: #FF0000;
  378. }
  379. .bottomPrice {
  380. font-size: 32rpx;
  381. font-weight: 500;
  382. }
  383. .bottomLeftLine2 {
  384. color: #999999;
  385. line-height: 33rpx;
  386. font-size: 24rpx;
  387. }
  388. .bottomBtn {
  389. width: 204rpx;
  390. height: 74rpx;
  391. background: #D53533;
  392. border-radius: 37rpx;
  393. text-align: center;
  394. line-height: 74rpx;
  395. color: #FFFFFF;
  396. font-size: 30rpx;
  397. margin-top: 23rpx;
  398. margin-right: 30rpx;
  399. }
  400. .cont {
  401. padding: 20rpx 24rpx;
  402. }
  403. .contKk {
  404. background: #FFFFFF;
  405. border-radius: 10rpx;
  406. padding: 0 20rpx;
  407. }
  408. .detailedTitle {
  409. padding: 22rpx 0;
  410. display: flex;
  411. text-align: center;
  412. align-content: flex-start;
  413. font-size: 30rpx;
  414. font-weight: bold;
  415. color: #3C3C3C;
  416. }
  417. .contLine {
  418. display: flex;
  419. justify-content: space-between;
  420. font-size: 28rpx;
  421. padding: 30rpx 0;
  422. border-bottom: 1px solid #EEEEEE;
  423. }
  424. .contlineLeft {
  425. color: #666666;
  426. line-height: 40rpx;
  427. align-items: center;
  428. }
  429. .star {
  430. width: 14rpx;
  431. height: 14rpx;
  432. padding-bottom: 5rpx;
  433. }
  434. .carModel {
  435. width: 400rpx;
  436. display: inline-block;
  437. white-space: nowrap;
  438. overflow: hidden;
  439. text-overflow: ellipsis;
  440. }
  441. .noColor{
  442. color: #CCCCCC;
  443. }
  444. .carModelRight {
  445. display: flex;
  446. justify-content: flex-end;
  447. align-items: center;
  448. }
  449. .contlineRight {
  450. color: #333333;
  451. line-height: 40rpx;
  452. white-space: nowrap;
  453. overflow: hidden;
  454. text-overflow: ellipsis;
  455. width: 450rpx;
  456. text-align: right;
  457. }
  458. .selectBtn{
  459. width: 36rpx;
  460. height: 36rpx;
  461. }
  462. .contlineRightInput {
  463. color: #333333;
  464. }
  465. .contlineRightJt {
  466. width: 30rpx;
  467. height: 30rpx;
  468. }
  469. .box {
  470. background: #F4F5F7;
  471. min-height: 100vh;
  472. }
  473. .topBox {
  474. height: 140rpx;
  475. background: #FF0000;
  476. width: 750rpx;
  477. }
  478. .yuanhu {
  479. width: 750rpx;
  480. height: 30rpx;
  481. background: #FF0000;
  482. border-radius: 0 0 100% 100%;
  483. }
  484. .carBox {
  485. width: 662rpx;
  486. background: #FFFFFF;
  487. border-radius: 10rpx;
  488. margin-left: 24rpx;
  489. margin-top: -100rpx;
  490. padding: 20rpx;
  491. display: flex;
  492. }
  493. .left {
  494. margin-right: 24rpx;
  495. }
  496. .brandLogo {
  497. width: 72rpx;
  498. height: 72rpx;
  499. }
  500. .carPlate {
  501. height: 42rpx;
  502. font-size: 30rpx;
  503. font-weight: 500;
  504. color: #333333;
  505. line-height: 42rpx;
  506. }
  507. .car {
  508. width: 562rpx;
  509. height: 33rpx;
  510. font-size: 24rpx;
  511. font-weight: 400;
  512. color: #666666;
  513. line-height: 33rpx;
  514. margin-top: 10rpx;
  515. /* 隐藏文字显示 ...不换行 */
  516. overflow: hidden;
  517. text-overflow: ellipsis;
  518. white-space: nowrap;
  519. }
  520. .numJsbox {
  521. display: flex;
  522. }
  523. .numJj {
  524. width: 44rpx;
  525. height: 44rpx;
  526. background: #F4F5F7;
  527. border-radius: 0px 6rpx 6rpx 0px;
  528. text-align: center;
  529. line-height: 44rpx;
  530. font-size: 32rpx;
  531. color: #999999;
  532. }
  533. .goodsnum {
  534. width: 88rpx;
  535. height: 44rpx;
  536. background: #F4F5F7;
  537. line-height: 44rpx;
  538. text-align: center;
  539. font-weight: 500;
  540. color: #333333;
  541. font-size: 24rpx;
  542. margin: 0 4rpx;
  543. }
  544. .goodsBottom {
  545. display: flex;
  546. justify-content: space-between;
  547. padding-top: 60rpx;
  548. }
  549. .goodsPrice {
  550. color: #333333;
  551. font-size: 32rpx;
  552. font-weight: 500;
  553. }
  554. .goodsPrice1 {
  555. color: #333333;
  556. font-size: 22rpx;
  557. }
  558. .goodsName {
  559. font-weight: 400;
  560. color: #333333;
  561. line-height: 40rpx;
  562. font-size: 28rpx;
  563. height: 80rpx;
  564. text-overflow: -o-ellipsis-lastline;
  565. overflow: hidden;
  566. text-overflow: ellipsis;
  567. display: -webkit-box;
  568. -webkit-line-clamp: 2;
  569. line-clamp: 2;
  570. -webkit-box-orient: vertical;
  571. width: 420rpx;
  572. }
  573. .goodsBoxRgiht {
  574. padding-left: 24rpx;
  575. }
  576. .zhifuImg{
  577. width: 40rpx;
  578. height: 40rpx;
  579. margin-right: 20rpx;
  580. }
  581. .payLeft{
  582. display: flex;
  583. align-items: center;
  584. height: 40rpx;
  585. font-size: 28rpx;
  586. font-weight: 400;
  587. color: #333333;
  588. line-height: 40rpx;
  589. }
  590. </style>