mallOrderDetail.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962
  1. <template>
  2. <view class="box">
  3. <!-- 自定义导航 -->
  4. <view class="zdyNavBox">
  5. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  6. <view class="zdyNav">
  7. <view class="zdyNavLeft">
  8. <image src="../../../static/img/nav_icon_back.png" mode="aspectFit" class="backImg" @click="goback"></image>
  9. <image src="../../../static/img/nav_icon_home.png" mode="" class="homeImg" @click="gohome"></image>
  10. </view>
  11. <view class="zdyNavTitle">订单详情</view>
  12. <view style="width: 100px;"></view>
  13. </view>
  14. </view>
  15. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  16. <view style="height: 44px;"></view>
  17. <view class="top" :style="{background:'#'+themeColor}">
  18. <view class="orderState">
  19. <image src="../../../static/img/icon_order_def.png" mode="" style="width: 44rpx;height: 44rpx;"></image>
  20. <view class="SheetState" v-if="orderData.data.sheetState == 1">待付款</view>
  21. <view class="SheetState" v-if="orderData.data.sheetState == 2">待服务</view>
  22. <view class="SheetState" v-if="orderData.data.sheetState == 3">已完成</view>
  23. <view class="SheetState" v-if="orderData.data.sheetState == 4">已取消</view>
  24. </view>
  25. </view>
  26. <!-- 店铺信息 -->
  27. <view class="shopBox">
  28. <image src="../../../static/img/icon_store.png" mode="" class="shopBoximg"></image>
  29. <view class="shopCont">
  30. <view class="shopName">{{orderData.shopInfo.shopName}}</view>
  31. <view class="Address">
  32. {{orderData.shopInfo.provinceName}}{{orderData.shopInfo.cityName}}{{orderData.shopInfo.areaName}}{{orderData.shopInfo.address}}
  33. </view>
  34. </view>
  35. <view class="shopRightBox" @click="map">
  36. <image src="../../../static/img/icon_ditu.png" mode="" class="shopRightImg"></image>
  37. <view class="shopRihgtTxt">地图</view>
  38. </view>
  39. <view class="shopsx"></view>
  40. <view class="shopRightBox" @click="call">
  41. <image src="../../../static/img/icon_phone.png" mode="" class="shopRightImg"></image>
  42. <view class="shopRihgtTxt">电话</view>
  43. </view>
  44. </view>
  45. <!-- 订单内容 -->
  46. <view class="information">
  47. <view class="detailedTitle">订单内容</view>
  48. <view v-if="orderData.openSheetDetail.length>0" v-for="(item,index) in orderData.openSheetDetail" :key="index">
  49. <view class="goodsName">{{item.itemName}}</view>
  50. <view class="informationLine2">
  51. <view class="salePrice"><span
  52. class="informationNum">¥</span>{{item.salePrice}}</view>
  53. <view class="informationNum" style="color: #999999;">
  54. x{{item.itemQty}}</view>
  55. </view>
  56. </view>
  57. <view v-if="orderData.data.sheetState != 1 && orderData.data.sheetState != 4" class="line"></view>
  58. <view v-if="orderData.data.sheetState != 1 && orderData.data.sheetState != 4">
  59. <view class="goodsName">
  60. 券码信息({{quanMaList.length?quanMaList.length:0}}张可用)
  61. </view>
  62. <view class="detailedLine" v-for="(v,index) in orderData.OpenSheetQRCode">
  63. <view v-if="v.writeoffState==1" class="detailedName">
  64. <view class="redPoint"></view>
  65. <view class="code">{{v.qrCode}}</view>
  66. <view class="quanState">待使用</view>
  67. </view>
  68. <view v-if="v.writeoffState==3" class="detailedName">
  69. <view class="redPoint"></view>
  70. <view class="code old" >{{v.qrCode}}</view>
  71. <view class="quanState2">已使用</view>
  72. </view>
  73. <image src="../../../static/img/icon_erweima.png" mode="" style="width: 36rpx;height: 36rpx;"
  74. v-if="v.writeoffState==1" @click="isShowMa=true"></image>
  75. </view>
  76. </view>
  77. </view>
  78. <!-- 套餐内容 -->
  79. <view class="information" v-if="SheetType==3">
  80. <view class="detailedTitle">套餐内容</view>
  81. <!-- 项目 -->
  82. <view class="itemBox" v-if="orderData.projectList.length>0">
  83. <!-- 头 -->
  84. <view class="itemTop">
  85. <view class="leftItem">项目名称</view>
  86. <view class="topTitle">数量</view>
  87. <view class="topTitle">有效期</view>
  88. </view>
  89. <view v-for="(item,index) in orderData.projectList" :key="index">
  90. <view class="itemContent">
  91. <view class="leftItem">{{item.flowName}}</view>
  92. <view class="topTitle">{{item.flowQty}}</view>
  93. <view class="topTitle">{{item.date}}</view>
  94. </view>
  95. </view>
  96. </view>
  97. <!-- 商品 -->
  98. <view class="itemBox" v-if="orderData.shopList.length>0">
  99. <!-- 头 -->
  100. <view class="itemTop">
  101. <view class="leftItem">商品名称</view>
  102. <view class="topTitle">数量</view>
  103. <view class="topTitle">有效期</view>
  104. </view>
  105. <view v-for="(item,index) in orderData.shopList" :key="index">
  106. <view class="itemContent">
  107. <view class="leftItem">{{item.flowName}}</view>
  108. <view class="topTitle">{{item.flowQty}}</view>
  109. <view class="topTitle">{{item.date}}</view>
  110. </view>
  111. </view>
  112. </view>
  113. </view>
  114. <!-- 实付款 -->
  115. <view class="money">
  116. <view class="informationNum">实付款:</view>
  117. <view class="informationNum" style="color: #FF0000;font-weight: bold;">¥{{orderData.data.realMoney}}</view>
  118. </view>
  119. <!-- 订单信息 -->
  120. <view class="information">
  121. <view class="detailedTitle">订单信息</view>
  122. <view class="informationLine">
  123. <view class="informationTxt">订单单号:</view>
  124. <view class="informationNum">{{orderData.data.code}}<span class="codeCopy"
  125. @click="copy(orderData.data.code)">复制</span></view>
  126. </view>
  127. <view class="informationLine">
  128. <view class="informationTxt">下单人:</view>
  129. <view class="informationNum">{{orderData.data.userMobilePhone}}</view>
  130. </view>
  131. <view class="informationLine">
  132. <view class="informationTxt">下单时间:</view>
  133. <view class="informationNum">{{orderData.data.createTime}}</view>
  134. </view>
  135. <view class="informationLine">
  136. <view class="informationTxt">订单备注:</view>
  137. <view class="informationNum" style="width: 510rpx;">{{orderData.data.comment?orderData.data.comment:''}}</view>
  138. </view>
  139. </view>
  140. <!-- 支付信息 -->
  141. <view class="information">
  142. <view class="detailedTitle">支付信息</view>
  143. <view class="informationLine">
  144. <view class="informationTxt">支付状态:</view>
  145. <view class="informationNum" v-if="orderData.data.payState==1">未支付</view>
  146. <view class="informationNum" v-if="orderData.data.payState==2">已支付</view>
  147. </view>
  148. <view class="informationLine">
  149. <view class="informationTxt">支付方式:</view>
  150. <view class="informationNum" v-if="orderData.data.payType==1">在线支付</view>
  151. <view class="informationNum" v-if="orderData.data.payType==2">线下支付</view>
  152. </view>
  153. <view class="informationLine">
  154. <view class="informationTxt">支付时间:</view>
  155. <view class="informationNum">{{orderData.data.payTime?orderData.data.payTime:'-'}}</view>
  156. </view>
  157. </view>
  158. <view style="height: 50rpx;background-color: #F4F5F7;"></view>
  159. <view class="bottom" v-if="orderData.data.sheetState == 1">
  160. <view class="cancel" @click="cancelBespeak">取消订单</view>
  161. <view class="defer" :style="{border:'1rpx solid #'+themeColor,color:'#'+themeColor}" @click="pay">立即支付</view>
  162. </view>
  163. <!-- 券码 -->
  164. <view class="maBox" v-if="isShowMa==true" @click="isShowMa=false">
  165. <view class="querenMa">
  166. <view class="maTop">
  167. <view class="maTitle">请到店出示券码即可开始服务</view>
  168. <image @click="isShowMa=false" src="../../../static/img/icon_delete.png" mode=""
  169. style="width: 26rpx;height: 26rpx;margin-left: 10rpx;"></image>
  170. </view>
  171. <swiper class="swiper" circular :autoplay="false" :indicator-dots="true" indicator-color="#CCCCCC" indicator-active-color="#D53533">
  172. <swiper-item v-for="(item,index) in quanMaList">
  173. <view class="swiper-item">
  174. <view class="maCode">{{item}}</view>
  175. <view class="maBoximg">
  176. <tki-qrcode cid="qrcode1" ref="qrcode" :val="item" :size="400" :unit="unit"
  177. :pdground="pdground" :icon="icon" :iconSize="iconsize" :lv="lv" :onval="onval"
  178. :loadMake="loadMake" :usingComponents="true" @result="qrR" />
  179. </view>
  180. </view>
  181. </swiper-item>
  182. </swiper>
  183. </view>
  184. </view>
  185. </view>
  186. </template>
  187. <script>
  188. import tkiQrcode from "@/components/tki-qrcode/tki-qrcode.vue"
  189. export default {
  190. components: {
  191. tkiQrcode
  192. },
  193. data() {
  194. return {
  195. id: '',
  196. iStatusBarHeight:'',
  197. SheetType: '', //SheetType 1 商品2项目3套餐4救援5钣喷6集客
  198. orderData: '',
  199. onval: true, // val值变化时自动重新生成二维码
  200. loadMake: true, // 组件加载完成后自动生成二维码
  201. size: 500,
  202. qrcodeShow: false,
  203. qrcodeTop: '-100vh',
  204. qrcodeTopVal: '',
  205. ifShow: false,
  206. val: '二维码', // 要生成的二维码值
  207. unit: 'upx', // 单位
  208. background: '#b4e9e2', // 背景色
  209. foreground: '#309286', // 前景色
  210. pdground: '#262637', // 角标色
  211. icon: '', // 二维码图标
  212. iconsize: 40, // 二维码图标大小
  213. lv: 3, // 二维码容错级别 , 一般不用设置,默认就行
  214. src: '', // 二维码生成后的图片地址或base64
  215. isShowMa: false,
  216. quanMaList:[],
  217. themeColor:'',
  218. }
  219. },
  220. onLoad(opt) {
  221. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  222. this.id = opt.id
  223. this.SheetType = opt.SheetType
  224. this.themeColor = uni.getStorageSync("themeColor");
  225. if (this.id) {
  226. this.getData()
  227. }
  228. },
  229. methods: {
  230. pay(){
  231. this.$http('openMallOrder/unifiedPay', {
  232. sheetId:this.id
  233. },'POST').then(res => {
  234. if(res.code==0){
  235. this.requestPayment(res.data)
  236. }else{
  237. uni.showToast({
  238. title: res.msg,
  239. icon: 'none',
  240. duration: 3000
  241. });
  242. }
  243. })
  244. },
  245. requestPayment(res){
  246. var payInfo=res;
  247. //console.log(payInfo)
  248. //console.log(String(Date.now()))
  249. var that=this;
  250. uni.requestPayment({
  251. provider: 'wxpay',
  252. //timeStamp: String(Date.now()),
  253. timeStamp: payInfo.timeStamp,
  254. nonceStr: payInfo.nonceStr,
  255. package:payInfo.package,
  256. signType: payInfo.signType,
  257. paySign: payInfo.paySign,
  258. appid:payInfo.appId,
  259. success: function (res) {
  260. console.log('success:' + JSON.stringify(res));
  261. uni.showToast({
  262. title: '支付成功',
  263. icon:'none',
  264. duration: 2000
  265. });
  266. that.getData()
  267. },
  268. fail: function (err) {
  269. console.log(err)
  270. uni.showToast({
  271. title: '支付失败',
  272. icon:'none',
  273. duration: 2000
  274. });
  275. }
  276. });
  277. },
  278. copy(txt) {
  279. uni.setClipboardData({
  280. data: txt,
  281. success: function() {
  282. uni.showToast({
  283. title: '复制成功',
  284. icon: 'none',
  285. duration: 2000
  286. });
  287. }
  288. });
  289. },
  290. upTime() {
  291. uni.showLoading({
  292. title: '加载中'
  293. })
  294. var that = this
  295. this.$http('openreservation/carOwner/updateTimeOfAppointment', {
  296. id: this.id,
  297. shopId: this.orderData.shopInfo.id,
  298. billDate: this.billDate
  299. }, 'POST').then(res => {
  300. uni.hideLoading();
  301. // var list = res.data.Items
  302. var list = res.data
  303. console.log("result+=", res.data);
  304. uni.showToast({
  305. title: '延期成功',
  306. icon: 'none',
  307. duration: 2000
  308. });
  309. setTimeout(function() {
  310. that.getData();
  311. }, 1000);
  312. })
  313. },
  314. cancelBespeak(){
  315. var that = this
  316. uni.showModal({
  317. title: '提示',
  318. content: '是否取消该订单',
  319. cancelText:'否',
  320. confirmText:'是',
  321. success: function (res) {
  322. if (res.confirm) {
  323. uni.showLoading({
  324. title: '加载中'
  325. })
  326. that.$http('openOrderManagement/updateSheetState', {
  327. id: that.id,
  328. }, 'POST').then(res => {
  329. uni.hideLoading();
  330. // var list = res.data.Items
  331. uni.showToast({
  332. title: '取消成功',
  333. icon: 'none',
  334. duration: 2000
  335. });
  336. setTimeout(function() {
  337. that.getData();
  338. }, 1000);
  339. })
  340. } else if (res.cancel) {
  341. }
  342. }
  343. });
  344. },
  345. map() {
  346. console.log("打开地图")
  347. var that = this;
  348. if (!that.orderData.shopInfo.lat || !that.orderData.shopInfo.lng) {
  349. uni.showToast({
  350. title: '该店铺未设置定位',
  351. icon: 'none',
  352. duration: 3000
  353. });
  354. } else {
  355. uni.openLocation({
  356. latitude: Number(that.orderData.shopInfo.lat),
  357. longitude: Number(that.orderData.shopInfo.lng),
  358. name: that.orderData.shopInfo.shopName,
  359. address: that.orderData.shopInfo.provinceName + that.orderData.shopInfo.cityName + that
  360. .orderData.shopInfo.areaName + that.orderData.shopInfo.address,
  361. success: function() {
  362. console.log('success');
  363. },
  364. fail(err) {
  365. console.log(err)
  366. }
  367. });
  368. }
  369. },
  370. call() {
  371. uni.makePhoneCall({
  372. phoneNumber: this.orderData.shopInfo.mobilePhone
  373. });
  374. },
  375. getData() {
  376. uni.showLoading({
  377. title: '加载中'
  378. });
  379. this.$http('openOrderManagement/queryOpenSheet', {
  380. id: this.id,
  381. }, 'GET').then(res => {
  382. uni.hideLoading();
  383. this.orderData = res.data;
  384. if (this.quanMaList) {
  385. this.quanMaList = [];
  386. }
  387. let maList = this.orderData.OpenSheetQRCode;
  388. if (maList) {
  389. maList.forEach(item =>{
  390. if (item.writeoffState==1) {
  391. this.quanMaList.push(item.qrCode);
  392. }
  393. })
  394. }
  395. console.log('可用券码--',this.quanMaList);
  396. })
  397. },
  398. goback() {
  399. uni.navigateBack({
  400. delta: 1
  401. })
  402. },
  403. gohome(){
  404. uni.switchTab({
  405. url:'../../index/index'
  406. })
  407. },
  408. },
  409. onPullDownRefresh() {
  410. this.getData()
  411. setTimeout(function() {
  412. uni.stopPullDownRefresh();
  413. }, 1000);
  414. },
  415. }
  416. </script>
  417. <style scoped>
  418. .box {
  419. min-height: 100vh;
  420. background: #F4F5F7;
  421. padding-bottom: 135rpx;
  422. }
  423. .zdyNavBox{
  424. width: 100vw;
  425. background: #FFFFFF;
  426. position: fixed;
  427. top: 0;
  428. left: 0;
  429. z-index: 9999999;
  430. }
  431. .zdyNav{
  432. height: 44px;
  433. display: flex;
  434. justify-content: space-between;
  435. align-items: center;
  436. }
  437. .backImg{
  438. width: 44rpx;
  439. height: 44rpx;
  440. margin-left: 10rpx;
  441. margin-right: 20rpx;
  442. }
  443. .homeImg{
  444. width: 44rpx;
  445. height: 44rpx;
  446. }
  447. .zdyNavLeft{
  448. display: flex;
  449. align-items: center;
  450. }
  451. .zdyNavTitle{
  452. width: 100vw;
  453. height: 44px;
  454. background: #FFFFFF;
  455. text-align: center;
  456. font-size: 34rpx;
  457. line-height: 44px;
  458. }
  459. .top {
  460. height: 190rpx;
  461. background: #FF0000;
  462. }
  463. .orderState {
  464. display: flex;
  465. justify-content: center;
  466. align-items: center;
  467. padding-top: 40rpx;
  468. }
  469. .SheetState {
  470. display: flex;
  471. justify-content: center;
  472. font-size: 36rpx;
  473. font-weight: 500;
  474. color: #FFFFFF;
  475. margin-left: 15rpx;
  476. }
  477. .timeEditImg {
  478. width: 25rpx;
  479. height: 25rpx;
  480. padding-left: 20rpx;
  481. }
  482. .shopBoximg {
  483. width: 40rpx;
  484. height: 40rpx;
  485. }
  486. .shopRightImg {
  487. width: 44rpx;
  488. height: 45rpx;
  489. }
  490. .shopsx {
  491. width: 1px;
  492. height: 50rpx;
  493. background: #EEEEEE;
  494. margin-top: 30rpx;
  495. margin-left: 28rpx;
  496. }
  497. .shopBox {
  498. display: flex;
  499. padding: 30rpx 20rpx;
  500. margin: 0rpx 24rpx;
  501. margin-top: -60rpx;
  502. background-color: #FFFFFF;
  503. border-radius: 10rpx;
  504. }
  505. .shopCont {
  506. width: 405rpx;
  507. padding-left: 20rpx;
  508. }
  509. .shopName {
  510. font-size: 30rpx;
  511. font-weight: bold;
  512. color: #3C3C3C;
  513. line-height: 42rpx;
  514. }
  515. .Address {
  516. color: #999999;
  517. font-size: 24rpx;
  518. margin-top: 10rpx;
  519. }
  520. .shopRihgtTxt {
  521. color: #999999;
  522. font-size: 24rpx;
  523. }
  524. .shopRightBox {
  525. padding-left: 28rpx;
  526. }
  527. .detailedTitle {
  528. padding: 23rpx 20rpx;
  529. display: flex;
  530. text-align: center;
  531. align-content: flex-start;
  532. border-bottom: 1rpx solid #EEEEEE;
  533. font-size: 30rpx;
  534. font-weight: bold;
  535. color: #3C3C3C;
  536. }
  537. .detailedLine {
  538. display: flex;
  539. padding: 16rpx 20rpx;
  540. justify-content: space-between;
  541. align-items: center;
  542. }
  543. .detailedImg {
  544. width: 120rpx;
  545. height: 120rpx;
  546. border-radius: 10rpx;
  547. }
  548. .detailedName {
  549. display: flex;
  550. align-items: center;
  551. }
  552. .code {
  553. font-size: 26rpx;
  554. color: #333333;
  555. font-weight: bold;
  556. width: 180rpx
  557. }
  558. .old {
  559. color: #999999;
  560. font-weight: 400;
  561. text-decoration: line-through;
  562. }
  563. .redPoint {
  564. width: 10rpx;
  565. height: 10rpx;
  566. background: #FF0000;
  567. border-radius: 10rpx;
  568. margin-right: 10rpx;
  569. }
  570. .quanState {
  571. font-size: 22rpx;
  572. color: #F19D01;
  573. padding: 0 10rpx;
  574. border: 1rpx solid #F19D01;
  575. border-radius: 4rpx;
  576. margin-left: 20rpx;
  577. }
  578. .quanState2{
  579. font-size: 22rpx;
  580. color: #999999;
  581. padding: 0 10rpx;
  582. border: 1rpx solid #DDDDDD;
  583. border-radius: 4rpx;
  584. margin-left: 20rpx;
  585. }
  586. .information {
  587. background: #FFFFFF;
  588. border-radius: 10rpx;
  589. margin: 20rpx 24rpx;
  590. padding-bottom: 15rpx;
  591. }
  592. .informationLine {
  593. display: flex;
  594. padding: 15rpx 20rpx;
  595. }
  596. .informationLine2 {
  597. display: flex;
  598. justify-content: space-between;
  599. font-size: 26rpx;
  600. padding: 0 20rpx;
  601. }
  602. .salePrice {
  603. font-size: 26rpx;
  604. font-weight: 500;
  605. color: #333333;
  606. line-height: 45rpx;
  607. }
  608. .money {
  609. background: #FFFFFF;
  610. border-radius: 10rpx;
  611. margin: 20rpx 24rpx;
  612. display: flex;
  613. justify-content: space-between;
  614. font-size: 26rpx;
  615. padding: 30rpx 20rpx;
  616. }
  617. .informationTxt {
  618. width: 190rpx;
  619. font-size: 26rpx;
  620. color: #999999;
  621. }
  622. .line {
  623. height: 20rpx;
  624. background-color: #FFFFFF;
  625. border-bottom: 1rpx solid #EEEEEE;
  626. }
  627. .goodsName {
  628. padding: 20rpx 20rpx 15rpx;
  629. color: #333333;
  630. font-size: 26rpx;
  631. }
  632. .informationNum {
  633. color: #333333;
  634. font-size: 26rpx;
  635. }
  636. .codeCopy {
  637. width: 77rpx;
  638. height: 36rpx;
  639. background: #F4F5F7;
  640. border-radius: 22rpx;
  641. font-size: 24rpx;
  642. color: #333333;
  643. text-align: center;
  644. line-height: 33rpx;
  645. padding: 0 15rpx;
  646. margin-left: 20rpx;
  647. }
  648. .orderBottom {
  649. width: 750rpx;
  650. height: 98rpx;
  651. background: #FFFFFF;
  652. position: fixed;
  653. left: 0;
  654. bottom: 0;
  655. display: flex;
  656. justify-content: flex-end;
  657. }
  658. .bottom {
  659. display: flex;
  660. justify-content: flex-end;
  661. padding: 20rpx;
  662. background-color: #FFFFFF;
  663. align-items: center;
  664. height: 98rpx;
  665. width: 100vw;
  666. position: fixed;
  667. bottom: 0rpx;
  668. padding-bottom: constant(safe-area-inset-bottom);
  669. padding-bottom: env(safe-area-inset-bottom);
  670. }
  671. .cancel {
  672. color: #3C3C3C;
  673. font-size: 28rpx;
  674. width: 150rpx;
  675. height: 56rpx;
  676. border-radius: 36rpx;
  677. border: 1rpx solid #DDDDDD;
  678. text-align: center;
  679. line-height: 56rpx;
  680. margin-right: 40rpx;
  681. }
  682. .defer {
  683. color: #D53533;
  684. font-size: 28rpx;
  685. width: 150rpx;
  686. height: 56rpx;
  687. border-radius: 36rpx;
  688. border: 1rpx solid #D53533;
  689. text-align: center;
  690. line-height: 56rpx;
  691. margin-right: 40rpx;
  692. }
  693. .itemBox {
  694. margin: 20rpx;
  695. border-radius: 10rpx;
  696. border: 2rpx solid #EEEEEE;
  697. }
  698. .itemTop {
  699. padding: 18rpx 20rpx;
  700. padding-right: 0;
  701. background-color: #FFEFD5;
  702. display: flex;
  703. justify-content: space-between;
  704. align-content: center;
  705. }
  706. .topTitle {
  707. width: 104rpx;
  708. font-size: 26rpx;
  709. color: #333333;
  710. margin-right: 20rpx;
  711. text-align: right;
  712. }
  713. .leftItem {
  714. font-size: 26rpx;
  715. color: #333333;
  716. margin-right: 20rpx;
  717. flex-grow: 1;
  718. /* 隐藏文字显示 ...不换行 */
  719. overflow: hidden;
  720. text-overflow: ellipsis;
  721. white-space: nowrap;
  722. }
  723. .itemContent {
  724. padding: 20rpx;
  725. padding-right: 0;
  726. background-color: #FFFFFF;
  727. display: flex;
  728. justify-content: space-between;
  729. align-content: center;
  730. }
  731. .maBox {
  732. width: 100%;
  733. height: 100vh;
  734. background: rgba(0, 0, 0, 0.4);
  735. position: fixed;
  736. left: 0;
  737. top: 0;
  738. z-index: 9999;
  739. }
  740. .querenMa {
  741. width: 578;
  742. height: 640rpx;
  743. background: #ffffff;
  744. margin: 0 86rpx;
  745. margin-top: 50%;
  746. border-radius: 24rpx;
  747. }
  748. .maTop {
  749. display: flex;
  750. justify-content: space-between;
  751. align-items: center;
  752. padding: 30rpx 20rpx 15rpx;
  753. }
  754. .maTitle {
  755. color: #666666;
  756. font-size: 26rpx;
  757. text-align: center;
  758. padding-left: 100rpx;
  759. }
  760. .swiper{
  761. width: 100%;
  762. height: 85%;
  763. background: #FFFFFF;
  764. }
  765. .swiper-item{
  766. width: 100%;
  767. height: 100%;
  768. }
  769. .maCode {
  770. font-size: 30rpx;
  771. font-weight: 500;
  772. color: #333333;
  773. line-height: 42rpx;
  774. margin-bottom: 40rpx;
  775. text-align: center;
  776. }
  777. .maBoximg {
  778. width: 400rpx;
  779. height: 400rpx;
  780. margin-left: 86rpx;
  781. }
  782. </style>