activityOrderDetail.vue 20 KB

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