paintSure.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672
  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. <input type="text" v-model="customerName" placeholder="请输入联系人姓名" class="contlineRightInput">
  23. </view>
  24. </view>
  25. <view class="contLine">
  26. <view class="contlineLeft">手机号</view>
  27. <view class="contlineRight">
  28. <input type="text" v-model="mobilePhone" placeholder="请输入联系人手机号" class="contlineRightInput">
  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" style="border-bottom: none;">
  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_selectY.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. console.log('默认服务门店-=',this.shopInfo)
  148. })
  149. this.$http('openSheetMetalSprayPaint/queryPayType', {
  150. }, 'GET').then(res => {
  151. this.PayType = res.data.PayType
  152. })
  153. },
  154. onShow() {
  155. this.carInfo = this.$store.state.carInfo;
  156. let shopInfo = this.$store.state.ckshopInfo;
  157. if (shopInfo) {
  158. this.shopInfo= shopInfo
  159. this.shopInfo.id = this.shopInfo.shopId
  160. this.shopID=this.shopInfo.id
  161. uni.setStorage({
  162. key: 'yyshopInfo',
  163. data:this.shopInfo,
  164. success: function () {
  165. }
  166. });
  167. }
  168. console.log('服务门店选择过-=',this.shopInfo)
  169. },
  170. methods: {
  171. changeTime(data){
  172. console.log(data)
  173. this.billDate=data
  174. },
  175. cktime(){
  176. this.$refs.timeSelect.open();
  177. },
  178. submit() {
  179. if (this.shopID == '') {
  180. uni.showToast({
  181. title: '请选择服务门店',
  182. icon: 'none',
  183. duration: 3000
  184. });
  185. return false;
  186. }
  187. if (this.billDate == '') {
  188. uni.showToast({
  189. title: '请选择到店服务时间',
  190. icon: 'none',
  191. duration: 3000
  192. });
  193. return false;
  194. }
  195. //"bizType:1商品2项目3套餐
  196. var params = {
  197. sheetType:'5',
  198. sheetContent: '钣喷',
  199. customerName: this.customerName,
  200. mobilePhone: this.mobilePhone,
  201. plateNumber: this.carInfo.plateNumber,
  202. carModel: this.carInfo.carModel,
  203. totalMoney: this.totalMoney,
  204. shopId: this.shopID,
  205. comment: this.comment,
  206. hTime: this.billDate,
  207. sheetDetail: JSON.stringify(this.sheetDetail),
  208. payType:this.PayType,
  209. }
  210. uni.showLoading({
  211. title: '加载中'
  212. })
  213. this.$http('openMallOrder/submitOrder', params, 'POST').then(res => {
  214. uni.hideLoading();
  215. if (res.code == 0) {
  216. this.orderData = res.data;
  217. if(this.PayType==1){
  218. this.unifiedPay(res.data)
  219. }else{
  220. uni.showToast({
  221. title: '提交成功',
  222. icon: 'none',
  223. duration: 2000
  224. });
  225. }
  226. } else {
  227. uni.showToast({
  228. title: res.msg,
  229. icon: 'none',
  230. duration: 3000
  231. });
  232. if (this.orderData.sheetType==5){
  233. uni.navigateTo({
  234. url: "../user/myOrder/paintOrderDetail?id=" +that.orderData.id
  235. })
  236. }
  237. }
  238. })
  239. },
  240. unifiedPay(res) {
  241. this.$http('openMallOrder/unifiedPay', {
  242. sheetId: res.id
  243. }, 'POST').then(res => {
  244. if (res.code == 0) {
  245. this.requestPayment(res.data)
  246. } else {
  247. uni.showToast({
  248. title: res.msg,
  249. icon: 'none',
  250. duration: 3000
  251. });
  252. }
  253. })
  254. },
  255. requestPayment(res) {
  256. var payInfo = res;
  257. //console.log(payInfo)
  258. //console.log(String(Date.now()))
  259. var that = this;
  260. uni.requestPayment({
  261. provider: 'wxpay',
  262. //timeStamp: String(Date.now()),
  263. timeStamp: payInfo.timeStamp,
  264. nonceStr: payInfo.nonceStr,
  265. package: payInfo.package,
  266. signType: payInfo.signType,
  267. paySign: payInfo.paySign,
  268. appid: payInfo.appId,
  269. /* provider: 'wxpay',
  270. orderInfo:{
  271. "appid":payInfo.appid, // 微信开放平台 - 应用 - AppId,注意和微信小程序、公众号 AppId 可能不一致
  272. "noncestr": payInfo.nonceStr, // 随机字符串
  273. "package": "Sign=WXPay", // 固定值
  274. "partnerid":payInfo.mchId, // 微信支付商户号
  275. "prepayid": payInfo.prepayId, // 统一下单订单号
  276. "timeStamp": String(Date.now()), // 时间戳(单位:秒)
  277. "sign": payInfo.sign // 签名,这里用的 MD5/RSA 签名
  278. }, */
  279. success: function(res) {
  280. console.log('success:' + JSON.stringify(res));
  281. uni.showToast({
  282. title: '支付成功',
  283. icon: 'none',
  284. duration: 2000
  285. });
  286. if ((that.orderData.sheetType == 1) || (that.orderData.sheetType == 2) || (that
  287. .orderData.sheetType == 3)) {
  288. uni.redirectTo({
  289. url: "../user/myOrder/mallOrderDetail?id=" + that.orderData.id +
  290. "&SheetType=" + that.orderData.sheetType
  291. })
  292. }else if (that.orderData.sheetType==5){
  293. uni.navigateTo({
  294. url: "../user/myOrder/paintOrderDetail?id=" +that.orderData.id
  295. })
  296. }
  297. },
  298. fail: function(err) {
  299. console.log(err)
  300. uni.showToast({
  301. title: '支付失败',
  302. icon: 'none',
  303. duration: 2000
  304. });
  305. console.log(that.orderData)
  306. if (that.orderData.sheetType == 1 || that.orderData.sheetType == 2 || that.orderData
  307. .sheetType == 3) {
  308. console.log("商城订单s")
  309. uni.redirectTo({
  310. url: "../user/myOrder/mallOrderDetail?id=" + that.orderData.id +
  311. "&SheetType=" + that.orderData.sheetType
  312. })
  313. }else if (that.orderData.sheetType==5){
  314. uni.navigateTo({
  315. url: "../user/myOrder/paintOrderDetail?id=" +that.orderData.id
  316. })
  317. }
  318. }
  319. });
  320. },
  321. openGoodsDetailById() {
  322. this.$http('openMall/openGoodsDetailById', {
  323. id: this.id
  324. }, 'GET').then(res => {
  325. this.info = res.data
  326. })
  327. },
  328. goINdex() {
  329. uni.switchTab({
  330. url: '../index/index'
  331. })
  332. },
  333. paintShopList() {
  334. uni.navigateTo({
  335. url: 'paintShopList'
  336. })
  337. },
  338. calculation(type) {
  339. if (type == 1) {
  340. if (this.goodsnum > 1) {
  341. this.goodsnum--
  342. this.jsMoney()
  343. }
  344. } else {
  345. if (this.goodsInfo.oneQty > this.goodsnum) {
  346. this.goodsnum++
  347. this.jsMoney()
  348. }
  349. }
  350. },
  351. jsMoney() {
  352. var money = 0.00
  353. this.itemList.forEach((item)=>{
  354. money += item.money
  355. })
  356. this.totalMoney = money;
  357. }
  358. }
  359. }
  360. </script>
  361. <style scoped lang="less">
  362. .bottomBox {
  363. width: 750rpx;
  364. height: 120rpx;
  365. background: #FFFFFF;
  366. box-shadow: 0px -2px 10rpx 0px rgba(153, 153, 153, 0.2000);
  367. display: flex;
  368. justify-content: space-between;
  369. position: fixed;
  370. left: 0;
  371. bottom: 0;
  372. padding-bottom: constant(safe-area-inset-bottom);
  373. padding-bottom: env(safe-area-inset-bottom);
  374. }
  375. .bottomLeft {
  376. padding-top: 23rpx;
  377. padding-left: 30rpx;
  378. height: 74rpx;
  379. line-height: 74rpx;
  380. }
  381. .bottomLeftLine {
  382. color: #666666;
  383. font-size: 24rpx;
  384. }
  385. .bottomLeftLine span {
  386. color: #FF0000;
  387. }
  388. .bottomPrice {
  389. font-size: 32rpx;
  390. font-weight: 500;
  391. }
  392. .bottomLeftLine2 {
  393. color: #999999;
  394. line-height: 33rpx;
  395. font-size: 24rpx;
  396. }
  397. .bottomBtn {
  398. width: 204rpx;
  399. height: 74rpx;
  400. background: #D53533;
  401. border-radius: 37rpx;
  402. text-align: center;
  403. line-height: 74rpx;
  404. color: #FFFFFF;
  405. font-size: 30rpx;
  406. margin-top: 23rpx;
  407. margin-right: 30rpx;
  408. }
  409. .cont {
  410. padding: 20rpx 24rpx;
  411. }
  412. .contKk {
  413. background: #FFFFFF;
  414. border-radius: 10rpx;
  415. padding: 0 20rpx;
  416. }
  417. .detailedTitle {
  418. padding: 22rpx 0;
  419. display: flex;
  420. text-align: center;
  421. align-content: flex-start;
  422. font-size: 24rpx;
  423. font-weight: bold;
  424. color: #666666;
  425. }
  426. .contLine {
  427. display: flex;
  428. justify-content: space-between;
  429. font-size: 28rpx;
  430. padding: 30rpx 0;
  431. border-bottom: 1px solid #EEEEEE;
  432. }
  433. .contlineLeft {
  434. color: #666666;
  435. line-height: 40rpx;
  436. align-items: center;
  437. }
  438. .star {
  439. width: 14rpx;
  440. height: 14rpx;
  441. padding-bottom: 5rpx;
  442. }
  443. .carModel {
  444. width: 400rpx;
  445. display: inline-block;
  446. white-space: nowrap;
  447. overflow: hidden;
  448. text-overflow: ellipsis;
  449. }
  450. .noColor{
  451. color: #CCCCCC;
  452. }
  453. .carModelRight {
  454. display: flex;
  455. justify-content: flex-end;
  456. align-items: center;
  457. }
  458. .contlineRight {
  459. color: #333333;
  460. line-height: 40rpx;
  461. white-space: nowrap;
  462. overflow: hidden;
  463. text-overflow: ellipsis;
  464. width: 450rpx;
  465. text-align: right;
  466. }
  467. .selectBtn{
  468. width: 36rpx;
  469. height: 36rpx;
  470. }
  471. .contlineRightInput {
  472. color: #333333;
  473. }
  474. .contlineRightJt {
  475. width: 30rpx;
  476. height: 30rpx;
  477. }
  478. .box {
  479. background: #F4F5F7;
  480. min-height: 100vh;
  481. }
  482. .topBox {
  483. height: 140rpx;
  484. background: #FF0000;
  485. width: 750rpx;
  486. }
  487. .yuanhu {
  488. width: 750rpx;
  489. height: 30rpx;
  490. background: #FF0000;
  491. border-radius: 0 0 100% 100%;
  492. }
  493. .carBox {
  494. width: 662rpx;
  495. background: #FFFFFF;
  496. border-radius: 10rpx;
  497. margin-left: 24rpx;
  498. margin-top: -100rpx;
  499. padding: 20rpx;
  500. display: flex;
  501. }
  502. .left {
  503. margin-right: 24rpx;
  504. }
  505. .brandLogo {
  506. width: 72rpx;
  507. height: 72rpx;
  508. }
  509. .carPlate {
  510. height: 42rpx;
  511. font-size: 30rpx;
  512. font-weight: 500;
  513. color: #333333;
  514. line-height: 42rpx;
  515. }
  516. .car {
  517. width: 562rpx;
  518. height: 33rpx;
  519. font-size: 24rpx;
  520. font-weight: 400;
  521. color: #666666;
  522. line-height: 33rpx;
  523. margin-top: 10rpx;
  524. /* 隐藏文字显示 ...不换行 */
  525. overflow: hidden;
  526. text-overflow: ellipsis;
  527. white-space: nowrap;
  528. }
  529. .numJsbox {
  530. display: flex;
  531. }
  532. .numJj {
  533. width: 44rpx;
  534. height: 44rpx;
  535. background: #F4F5F7;
  536. border-radius: 0px 6rpx 6rpx 0px;
  537. text-align: center;
  538. line-height: 44rpx;
  539. font-size: 32rpx;
  540. color: #999999;
  541. }
  542. .goodsnum {
  543. width: 88rpx;
  544. height: 44rpx;
  545. background: #F4F5F7;
  546. line-height: 44rpx;
  547. text-align: center;
  548. font-weight: 500;
  549. color: #333333;
  550. font-size: 24rpx;
  551. margin: 0 4rpx;
  552. }
  553. .goodsBottom {
  554. display: flex;
  555. justify-content: space-between;
  556. padding-top: 60rpx;
  557. }
  558. .goodsPrice {
  559. color: #333333;
  560. font-size: 32rpx;
  561. font-weight: 500;
  562. }
  563. .goodsPrice1 {
  564. color: #333333;
  565. font-size: 22rpx;
  566. }
  567. .goodsName {
  568. font-weight: 400;
  569. color: #333333;
  570. line-height: 40rpx;
  571. font-size: 28rpx;
  572. height: 80rpx;
  573. text-overflow: -o-ellipsis-lastline;
  574. overflow: hidden;
  575. text-overflow: ellipsis;
  576. display: -webkit-box;
  577. -webkit-line-clamp: 2;
  578. line-clamp: 2;
  579. -webkit-box-orient: vertical;
  580. width: 420rpx;
  581. }
  582. .goodsBoxRgiht {
  583. padding-left: 24rpx;
  584. }
  585. .zhifuImg{
  586. width: 40rpx;
  587. height: 40rpx;
  588. margin-right: 20rpx;
  589. }
  590. .payLeft{
  591. display: flex;
  592. align-items: center;
  593. height: 40rpx;
  594. font-size: 28rpx;
  595. font-weight: 400;
  596. color: #333333;
  597. line-height: 40rpx;
  598. }
  599. </style>