confirmOrder.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805
  1. <template>
  2. <view class="box">
  3. <view class="topTIs">门店确认收货后,您可去订单详情页选择预约时间</view>
  4. <view class="topShop">
  5. <view class="topShopName">{{orderShop.shopName}}</view>
  6. <view class="topShopAdress">
  7. <image src="../../static/img/topshopicon.png" mode="" class="topShopAdressIcon"></image>
  8. <view class="topShopjl" v-if="orderShop.distance">{{orderShop.distance}}km</view>
  9. <view class="topShopAdressTxt" v-if="orderShop.address">{{orderShop.address}}</view>
  10. </view>
  11. </view>
  12. <view class="topBox">
  13. <view class="top">
  14. <view class="topLine borderB" >
  15. <view class="toplineLeft">
  16. <view class="topTitle">车牌号:</view>
  17. <view class="topTxt">{{maintainCarData.plateNumber}}</view>
  18. </view>
  19. </view>
  20. <view class="topLine borderB" v-if="iphoneData">
  21. <view class="toplineLeft">
  22. <view class="topTitle">联系人:</view>
  23. <view class="topTxt">{{iphoneData.name}} {{iphoneData.phone}}</view>
  24. </view>
  25. <view class="topLineRight" @click="gophone">修改></view>
  26. </view>
  27. <view class="topLine borderB" v-if="!iphoneData" @click="gophone">
  28. <view class="toplineLeft">
  29. <view class="topTitle">联系人:</view>
  30. <view style="color: #999999; font-size: 28rpx;" >请选择</view>
  31. </view>
  32. <view style="width: 14rpx; height: 23rpx; color: #999999;">></view>
  33. </view>
  34. </view>
  35. </view>
  36. <!-- 保养信息 -->
  37. <view class="main">
  38. <view class="mainLine" v-for="(item,index) in orderData">
  39. <view class="mainTitle">{{item.name}}</view>
  40. <view class="goodsItem" v-for="(v,i) in item.listGoodsAll">
  41. <view>
  42. <image :src="v.picUrl" mode="" class="goodsImg" v-if="v.picUrl"></image>
  43. <image src="../../static/img/noimg.png" mode="" class="goodsImg" v-else></image>
  44. </view>
  45. <view class="goodsItemRight" >
  46. <view class="goodsItemName">{{v.goodsName}}</view>
  47. <view class="goodsItemBottom">
  48. <view class="goodssalePrice">¥{{v.salePrice?v.salePrice:'0.00'}}</view>
  49. <view class="goodsNum">x{{v.qty}}</view>
  50. </view>
  51. </view>
  52. </view>
  53. <view class="goodsItem" v-for="(v,i) in item.listItem">
  54. <view>
  55. <image :src="v.picUrl" mode="" class="goodsImg" v-if="v.picUrl"></image>
  56. <image src="../../static/img/noimg.png" mode="" class="goodsImg" v-else></image>
  57. </view>
  58. <view class="goodsItemRight" >
  59. <view class="goodsItemName">{{v.itemName}}</view>
  60. <view class="goodsItemBottom">
  61. <view class="goodssalePrice">¥{{v.salePrice?v.salePrice:'0.00'}}</view>
  62. </view>
  63. </view>
  64. </view>
  65. </view>
  66. </view>
  67. <!-- 订单备注-->
  68. <view class="remarksBox">
  69. <view class="remarksLeft">订单备注</view>
  70. <view>
  71. <textarea value="" placeholder="点击添加备注信息" class="textarea" v-model="remark"/>
  72. </view>
  73. </view>
  74. <!-- 支付方式 -->
  75. <view class="payBox">
  76. <view class="payLIne borderB">
  77. <view class="payTitle">支付方式</view>
  78. <view class="payTxt">在线支付</view>
  79. </view>
  80. <view class="payLIne borderB">
  81. <view class="payTitle">商品费</view>
  82. <view class="payTxt">¥{{goodsMoney.toFixed(2)}}</view>
  83. </view>
  84. <view class="payLIne borderB">
  85. <view class="payTitle">工时费</view>
  86. <view class="payTxt">¥{{itemMoney.toFixed(2)}}</view>
  87. </view>
  88. <view class="payLIne" @click="gocoupon">
  89. <view class="payTitle">优惠券</view>
  90. <view class="payTxt2" v-if="!couponMoney">{{yhTotalSize}}张可用></view>
  91. <view class="payTxt2" v-if="couponMoney">-¥{{couponMoney}}</view>
  92. </view>
  93. </view>
  94. <view style="height: 150rpx;"></view>
  95. <!-- 底部 -->
  96. <view class="bottom">
  97. <view class="bottomLeft">
  98. <view>
  99. <view class="heji"> <span class="heji1">合计</span> <span class="hejiNum">¥{{(goodsMoney+itemMoney-couponMoney).toFixed(2)}}</span> </view>
  100. <view class="hejiMs">共{{goodsCount}}件商品,{{itemCount}}项服务</view>
  101. </view>
  102. </view>
  103. <view class="settlement" @click="settlement">提交订单</view>
  104. </view>
  105. </view>
  106. </template>
  107. <script>
  108. export default {
  109. data() {
  110. return {
  111. remark:'',
  112. iphoneData:'',
  113. orderTime:'',
  114. OrderTimes:'',
  115. orderTimeIndex1:0,
  116. orderTimeIndex2:-1,
  117. timeShow:false,
  118. orderData:'',
  119. itemMoney:0,//项目总价
  120. goodsMoney:0,//商品总价
  121. goodsCount:0,//商品数
  122. itemCount:0,//项目数
  123. packJsonArr:[],
  124. shopData:'',
  125. maintainCarData:'',
  126. currentMileage:'',
  127. payMoney:'',
  128. couponID:'',
  129. couponMoney:'',
  130. yhTotalSize:0,
  131. orderShop:'',
  132. brands:'',
  133. }
  134. },
  135. onLoad(opt) {
  136. /* if(opt.type==2){
  137. this.shopData=uni.getStorageSync("cfshopInfo");
  138. }else{
  139. this.shopData=uni.getStorageSync("shopData");
  140. } */
  141. this.orderShop=uni.getStorageSync("orderShop")
  142. this.maintainCarData=uni.getStorageSync("maintainCarData");
  143. //this.getIphoneData(); 获取默认手机号
  144. console.log(opt.orderData)
  145. this.orderData=JSON.parse(opt.orderData);
  146. this.currentMileage=opt.currentMileage;
  147. console.log(this.orderData)
  148. this.orderData.forEach(item=>{
  149. var obj={
  150. 'packageID':item.id,
  151. 'itemJsonArr':[],
  152. 'goodsJsonArr':[],
  153. }
  154. if( item.listGoodsAll.length>0){
  155. item.listGoodsAll.forEach(v=>{
  156. this.goodsMoney+=v.salePrice*v.qty
  157. this.goodsCount+=v.qty
  158. var goodsObj={
  159. 'id':v.goodsID,
  160. //'mItemID':v.mItemID,
  161. 'mGoodsID':v.mGoodsID,
  162. 'salePrice':v.salePrice,
  163. 'saleQty':v.qty,
  164. 'amountMoney':v.salePrice*v.qty,
  165. }
  166. if(v.mItemID){
  167. goodsObj.mItemID=v.mItemID
  168. }
  169. obj.goodsJsonArr.push(goodsObj)
  170. })
  171. }
  172. if(item.listItem.length>0){
  173. item.listItem.forEach(v=>{
  174. this.itemMoney+=v.salePrice
  175. this.itemCount++;
  176. var itemObj={
  177. 'id':v.itemID,
  178. 'mItemID':v.mItemID,
  179. 'salePrice':v.salePrice,
  180. }
  181. obj.itemJsonArr.push(itemObj)
  182. })
  183. }
  184. this.packJsonArr.push(obj)
  185. })
  186. this.myOrderCoupon()// 优惠券
  187. console.log( this.packJsonArr)
  188. },
  189. onShow() {
  190. var iphoneData=uni.getStorageSync("phoneData");
  191. if(iphoneData){
  192. this.iphoneData=iphoneData
  193. }
  194. var couponData=uni.getStorageSync("couponData")
  195. if(couponData){
  196. this.couponID=couponData.ID;
  197. var ActMoney=couponData.ActMoney;
  198. var payMoney=this.goodsMoney+this.itemMoney;
  199. if(payMoney<ActMoney){
  200. this.couponMoney=payMoney
  201. }else{
  202. this.couponMoney=ActMoney
  203. }
  204. }
  205. var cardata = uni.getStorageSync("maintainCarData")
  206. this.maintainCarData=cardata
  207. },
  208. methods: {
  209. myOrderCoupon(){
  210. var payMoney=this.goodsMoney+this.itemMoney;
  211. //payMoney=40
  212. this.$http('worldKeepCar/maintainOrder/myOrderCoupon', {
  213. money:payMoney,
  214. shopId:this.orderShop.shopId,
  215. /* page:1,
  216. limit:2, */
  217. },'GET').then(res => {
  218. this.yhTotalSize=res.data.length
  219. })
  220. },
  221. gocoupon(){
  222. var payMoney=this.goodsMoney+this.itemMoney;
  223. //payMoney=40
  224. uni.navigateTo({
  225. url:'usableDiscountCard?payMoney='+payMoney+'&shopId='+this.orderShop.shopId
  226. })
  227. },
  228. settlement(){
  229. var that=this;
  230. if(this.yhTotalSize>0){
  231. if(this.couponID==''){
  232. uni.showModal({
  233. title: '提示',
  234. content: '当前有可用优惠券未使用',
  235. cancelText:'放弃使用',
  236. confirmText:'去使用',
  237. success: function (res) {
  238. if (res.confirm) {
  239. //console.log('用户点击确定');
  240. var payMoney=that.goodsMoney+that.itemMoney;
  241. uni.navigateTo({
  242. url:'../me/discountCard?payMoney='+payMoney
  243. })
  244. } else if (res.cancel) {
  245. that.tosettlement()
  246. }
  247. }
  248. });
  249. }else{
  250. that.tosettlement()
  251. }
  252. }else {
  253. that.tosettlement()
  254. }
  255. },
  256. tosettlement(){
  257. if(this.couponMoney){
  258. this.payMoney=this.goodsMoney+this.itemMoney-this.couponMoney;
  259. }else{
  260. this.payMoney=this.goodsMoney+this.itemMoney;
  261. }
  262. //this.payMoney=3;
  263. if(this.iphoneData){
  264. if(this.iphoneData.name==''){
  265. uni.showToast({
  266. title: '请选择联系人',
  267. icon:'none',
  268. duration: 2000
  269. });
  270. return false;
  271. }
  272. }else{
  273. uni.showToast({
  274. title: '请选择联系人',
  275. icon:'none',
  276. duration: 2000
  277. });
  278. return false;
  279. }
  280. /* var cardata={
  281. annualmoney: "2017",
  282. brand: "大众",
  283. brandLogo: "http://img.db.66km.cn/carbrandlogo/D - 大众.png",
  284. buyDate: "",
  285. carModel: "2018 双离合变速器(DSG) 7档 前置前驱 CC",
  286. carName: "",
  287. carNumber: "",
  288. createTime: "2021-10-27 09:20:29",
  289. dayMilage: 661,
  290. displacement: "1.4T",
  291. engineCode: "",
  292. engineType: "1111",
  293. id: "07EB4B07-5302-4574-9709-0EC0D1668155",
  294. insuranceCompany: "",
  295. insuranceExpireDate: "1900-01-01 00:00:00",
  296. insuredCity: "",
  297. isDefault: 0,
  298. istransfer: "",
  299. memberID: "E4416E30-C82A-4136-81B7-6B424DDE4847",
  300. milage: 7788,
  301. model: "C-TREK(蔚领)",
  302. nLevelID: "CFV0718D0038",
  303. plateNumber: "鲁A22333",
  304. saleName: "",
  305. series: "C-TREK(蔚领)",
  306. transmissionType: "自动",
  307. traveltime: "",
  308. vIN: "",
  309. currentMileage:'1111',
  310. } */
  311. uni.showLoading({ });
  312. this.$http('worldKeepCar/maintainOrder/submitOrder', {
  313. shopName:this.orderShop.shopName,
  314. contactName:this.iphoneData.name,
  315. contactPhone:this.iphoneData.phone,
  316. carID:this.maintainCarData.id,
  317. plateNumber:this.maintainCarData.plateNumber,
  318. carModel:this.maintainCarData.carModel,
  319. currentMileage:this.maintainCarData.milage,//this.currentMileage,
  320. comment:this.remark,
  321. itemMoney:this.itemMoney,
  322. goodsMoney:this.goodsMoney,
  323. goodsCount:this.goodsCount,
  324. itemCount:this.itemCount,
  325. couponMoney:this.couponMoney,
  326. couponID:this.couponID,
  327. payMoney:this.payMoney,
  328. //payMoney:0.01,
  329. packJsonArr:JSON.stringify(this.packJsonArr) ,
  330. shopID:this.orderShop.shopId,
  331. // unionID:this.orderShop.unionId,
  332. },'POST').then(res => {
  333. if(res.code==0){
  334. if(this.payMoney==0){
  335. uni.hideLoading();
  336. /* uni.navigateTo({
  337. url:'../order/orderDetail?id='+res.data.id+'&type=2'
  338. }) */
  339. this.orderPayzero(res.data.id)
  340. }else{
  341. this.orderPay(res.data.id)
  342. }
  343. }else{
  344. uni.hideLoading();
  345. uni.showToast({
  346. title: res.msg,
  347. icon:'none',
  348. duration: 4000
  349. });
  350. }
  351. })
  352. },
  353. orderPayzero(id){
  354. this.$http('worldKeepCar/maintainOrder/orderPay', {
  355. sheetID:id
  356. },'POST').then(res => {
  357. uni.hideLoading();
  358. if(res.code==0){
  359. }else{
  360. uni.hideLoading();
  361. uni.showToast({
  362. title: res.msg,
  363. icon:'none',
  364. duration: 4000
  365. });
  366. }
  367. if(res.isPay==0){
  368. uni.navigateTo({
  369. url:'../order/orderDetail?id='+id+'&type=2'
  370. })
  371. }
  372. })
  373. },
  374. orderPay(id){
  375. //uni.showLoading({ });
  376. this.$http('worldKeepCar/maintainOrder/orderPay', {
  377. sheetID:id
  378. },'POST').then(res => {
  379. uni.hideLoading();
  380. if(res.code==0){
  381. }else{
  382. uni.hideLoading();
  383. uni.showToast({
  384. title: res.msg,
  385. icon:'none',
  386. duration: 4000
  387. });
  388. }
  389. var payInfo=JSON.parse(res.data.payInfo)
  390. if(res.isPay==0){
  391. uni.navigateTo({
  392. url:'../order/orderDetail?id='+id+'&type=2'
  393. })
  394. }else{
  395. uni.requestPayment({
  396. provider: 'wxpay',
  397. // timeStamp: String(Date.now()),
  398. timeStamp:payInfo.timeStamp,
  399. nonceStr: payInfo.nonceStr,
  400. package: payInfo.package,
  401. signType: payInfo.signType,
  402. paySign: payInfo.paySign,
  403. success: function (res) {
  404. console.log('success:' + JSON.stringify(res));
  405. uni.showToast({
  406. title: '支付成功',
  407. icon:'none',
  408. duration: 2000
  409. });
  410. /* uni.switchTab({
  411. url:'../index/index'
  412. }) */
  413. uni.navigateTo({
  414. url:'../order/orderDetail?id='+id+'&type=2'
  415. })
  416. },
  417. fail: function (err) {
  418. console.log('取消支付fail:' + JSON.stringify(err));
  419. uni.navigateTo({
  420. url:'../order/orderDetail?id='+id+'&type=2'
  421. })
  422. }
  423. });
  424. }
  425. })
  426. },
  427. getIphoneData(){
  428. uni.showLoading({ });
  429. this.$http('miniAppMyBMemberCar/queryBMemberContactIsDefault', {
  430. },'GET').then(res => {
  431. uni.hideLoading();
  432. this.iphoneData=res.data;
  433. })
  434. },
  435. gophone(){
  436. uni.removeStorageSync('phoneData');
  437. uni.navigateTo({
  438. url:'../iPhone/phoneList'
  439. })
  440. },
  441. }
  442. }
  443. </script>
  444. <style scoped>
  445. .topTIs{
  446. font-size: 26rpx;
  447. text-align: center;
  448. color: #C8841C;
  449. height: 72rpx;
  450. background: #FFF7EB;
  451. line-height: 72rpx;
  452. margin-bottom: 20rpx;
  453. }
  454. .topShopAdressIcon{
  455. width: 22rpx;
  456. height: 29rpx;
  457. }
  458. .topShop{
  459. width: 702rpx;
  460. min-height: 148rpx;
  461. background: #FFFFFF;
  462. border-radius: 10rpx;
  463. margin: 0 auto;
  464. }
  465. .topShopName{
  466. font-size: 28rpx;
  467. padding-top: 30rpx;
  468. padding-left: 20rpx;
  469. color: #3C3C3C;
  470. }
  471. .topShopAdress{
  472. display: flex;
  473. padding: 20rpx;
  474. }
  475. .topShopjl{
  476. font-size: 24rpx;
  477. line-height: 30rpx;
  478. color: #999999;
  479. padding-left: 16rpx;
  480. }
  481. .topShopAdressTxt{
  482. font-size: 24rpx;
  483. line-height: 30rpx;
  484. color: #999999;
  485. padding-left: 16rpx;
  486. }
  487. .box{
  488. min-height: 100vh;
  489. background:#F4F5F7 ;
  490. }
  491. .timeBox{
  492. width: 100vw;
  493. height: 100vh;
  494. background: rgba(0,0,0,0.5);
  495. position: fixed;
  496. top: 0;
  497. left: 0;
  498. z-index: 111;
  499. }
  500. .timeLeftActive{
  501. background: #FFFFFF;
  502. }
  503. .timeMain{
  504. width: 100vw;
  505. height: 70vh;
  506. margin-top: 30vh;
  507. background: #FFFFFF;
  508. border-radius: 24rpx 24rpx 0px 0px;
  509. }
  510. .timesfNo{
  511. background: #F5F5F5;
  512. }
  513. .timesfActive{
  514. background: #FF4F00;
  515. }
  516. .timesfActive .timeSfNum{
  517. color: #FFFFFF;
  518. }
  519. .timesfActive .timeyy{
  520. color: #FFFFFF;
  521. }
  522. .topBox{
  523. padding: 20rpx 24rpx;
  524. }
  525. .timeTop{
  526. display: flex;
  527. line-height: 90rpx;
  528. padding-left: 24rpx;
  529. padding-right: 24rpx;
  530. justify-content: space-between;
  531. }
  532. .timeTopTitle{
  533. font-size: 30rpx;
  534. font-family: PingFangSC-Medium, PingFang SC;
  535. font-weight: 600;
  536. color: #3C3C3C;
  537. }
  538. .close{
  539. color: #999999;font-size: 30rpx;
  540. padding-left: 30rpx;
  541. }
  542. .timeCont{
  543. height: calc(70vh - 210rpx);
  544. }
  545. .timeSv{
  546. height: calc(70vh - 210rpx);
  547. }
  548. .timeLeft{
  549. width: 162rpx;
  550. background: #F4F5F7;
  551. border-top: 1px soid #F4F5F7;
  552. border-right:1px soid #F4F5F7 ;
  553. }
  554. .timeRight{
  555. width: 588rpx;
  556. }
  557. .timesf{
  558. width: 165rpx;
  559. height: 98rpx;
  560. border-radius: 7rpx;
  561. border: 2rpx solid #EEEEEE;
  562. text-align: center;
  563. margin-left: 20rpx;
  564. margin-bottom: 24rpx;
  565. }
  566. .timeBottom{
  567. width: 750rpx;
  568. height: 120rpx;
  569. background: #FFFFFF;
  570. box-shadow: 0px -2px 20rpx 0px rgba(153, 153, 153, 0.2);
  571. display: flex;
  572. align-items: center;
  573. }
  574. .timerightBox{
  575. display: flex;
  576. flex-wrap: wrap;
  577. }
  578. .timeCont{
  579. display: flex;
  580. }
  581. .timeSfNum{
  582. color: #666666;
  583. font-size: 28rpx;
  584. padding-top: 15rpx;
  585. }
  586. .timeyy{
  587. font-size: 24rpx;
  588. color: #999999;
  589. }
  590. .timecomplete{
  591. width: 690rpx;
  592. height: 74rpx;
  593. background: linear-gradient(124deg, #FF8700 0%, #FF4F00 100%);
  594. border-radius: 37rpx;
  595. line-height: 74rpx;
  596. text-align: center;
  597. font-size: 30rpx;
  598. color: #FFFFFF;
  599. margin-left: 30rpx;
  600. }
  601. .timeleftLine{
  602. font-size: 30rpx;
  603. color: #999999;
  604. text-align: center;
  605. padding: 28rpx 10rpx;
  606. border-bottom: 1px solid #EEEEEE;
  607. }
  608. .top{
  609. background: #FFFFFF;
  610. border-radius: 10px;
  611. padding: 0 20rpx;
  612. }
  613. .topLine{
  614. display: flex;
  615. justify-content: space-between;
  616. padding: 30rpx 0;
  617. }
  618. .toplineLeft{
  619. display: flex;font-size: 28rpx;
  620. }
  621. .topTitle{
  622. width: 150rpx;font-weight: 400;
  623. color: #3C3C3C;
  624. }
  625. .topLineRight{
  626. font-size: 26rpx;
  627. font-family: PingFangSC-Regular, PingFang SC;
  628. font-weight: 400;
  629. color: #FF4F00;
  630. }
  631. .topTxt{
  632. color: #3C3C3C;
  633. }
  634. .borderB{
  635. border-bottom: 1px solid #EEEEEE;
  636. }
  637. .goodsImg{
  638. width: 120rpx;height: 120rpx;
  639. }
  640. .main{
  641. padding: 0 24rpx;
  642. }
  643. .mainLine{
  644. background: #FFFFFF;
  645. padding: 24rpx 20rpx;
  646. border-radius: 10rpx;
  647. }
  648. .mainTitle{
  649. font-size: 28rpx;
  650. font-weight: 600;
  651. color: #3C3C3C;
  652. }
  653. .goodsItem{
  654. display: flex;
  655. padding: 15rpx 0;
  656. }
  657. .goodsItemRight{
  658. width: 520rpx;
  659. padding-left: 20rpx;
  660. display: flex;
  661. flex-direction:column;
  662. justify-content: space-between;
  663. }
  664. .goodsItemBottom{
  665. display: flex;
  666. justify-content: space-between;
  667. }
  668. .goodsItemName{
  669. font-size: 26rpx;
  670. color: #3C3C3C;
  671. }
  672. .goodssalePrice{
  673. font-size: 32rpx;font-weight: 500;color: #FF4F00;
  674. }
  675. .goodsNum{
  676. font-size: 24rpx;font-weight: 400;color: #999999;
  677. }
  678. .remarksBox{
  679. display: flex;
  680. padding: 24rpx;
  681. border-radius: 16rpx;
  682. background: #FFFFFF;
  683. margin-top: 20rpx;
  684. width: 654rpx;
  685. margin-left: 24rpx;
  686. }
  687. .remarksLeft{
  688. color: #333333;font-size: 28rpx;
  689. width: 160rpx;
  690. }
  691. .textarea{
  692. width: 500rpx;
  693. font-size: 26rpx;
  694. height: 100rpx;
  695. padding: 0;
  696. padding-left: 30rpx;
  697. }
  698. .payBox{
  699. background: #FFFFFF;
  700. margin-top: 20rpx;
  701. margin-left: 24rpx;
  702. width: 702rpx;
  703. border-radius: 16rpx;
  704. }
  705. .payLIne{
  706. display: flex;
  707. justify-content: space-between;
  708. color: #3C3C3C;
  709. font-size: 28rpx;
  710. padding: 29rpx 20rpx;
  711. }
  712. .payTxt2{
  713. color: #FF4F00;
  714. }
  715. .bottom{
  716. position: fixed;
  717. left: 0;
  718. bottom: 0;
  719. width: 100vw;
  720. height: 120rpx;
  721. background: #FFFFFF;
  722. box-shadow: 0px -2px 20px 0px rgba(153, 153, 153, 0.2);
  723. display: flex;
  724. justify-content: space-between;
  725. }
  726. .bottomLeft{
  727. display: flex;
  728. padding-left: 20rpx;
  729. }
  730. .heji1{
  731. font-size: 24rpx;
  732. font-weight: 500;
  733. color: #666666;
  734. }
  735. .hejiNum{
  736. font-size: 32rpx;
  737. font-family: PingFangSC-Medium, PingFang SC;
  738. font-weight: 500;
  739. color: #FF4F00;
  740. }
  741. .hejiMs{
  742. font-size: 24rpx;
  743. padding-top: 5rpx;
  744. color: #999999;
  745. }
  746. .heji{
  747. padding-top: 23rpx;
  748. }
  749. .settlement{
  750. width: 203rpx;
  751. height: 74rpx;
  752. background: #FF4F00;
  753. border-radius: 37rpx;
  754. text-align: center;
  755. line-height: 74rpx;
  756. font-size: 30rpx;
  757. font-family: PingFangSC-Medium, PingFang SC;
  758. font-weight: 500;
  759. color: #FEFFFE;
  760. margin-top: 23rpx;
  761. margin-right: 32rpx;
  762. }
  763. </style>