confirmOrder.vue 18 KB

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