recordDetail.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886
  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="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" @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. }
  218. },
  219. onLoad(opt) {
  220. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  221. this.id = opt.id
  222. this.SheetType = opt.SheetType
  223. if (this.id) {
  224. this.getData()
  225. }
  226. },
  227. methods: {
  228. copy(txt) {
  229. uni.setClipboardData({
  230. data: txt,
  231. success: function() {
  232. uni.showToast({
  233. title: '复制成功',
  234. icon: 'none',
  235. duration: 2000
  236. });
  237. }
  238. });
  239. },
  240. cancelBespeak(){
  241. var that = this
  242. uni.showModal({
  243. title: '提示',
  244. content: '是否取消该订单',
  245. cancelText:'否',
  246. confirmText:'是',
  247. success: function (res) {
  248. if (res.confirm) {
  249. uni.showLoading({
  250. title: '加载中'
  251. })
  252. that.$http('openOrderManagement/updateSheetState', {
  253. id: that.id,
  254. }, 'POST').then(res => {
  255. uni.hideLoading();
  256. // var list = res.data.Items
  257. uni.showToast({
  258. title: '取消成功',
  259. icon: 'none',
  260. duration: 2000
  261. });
  262. setTimeout(function() {
  263. that.getData();
  264. }, 1000);
  265. })
  266. } else if (res.cancel) {
  267. }
  268. }
  269. });
  270. },
  271. map() {
  272. console.log("打开地图")
  273. var that = this;
  274. if (!that.orderData.shopInfo.lat || !that.orderData.shopInfo.lng) {
  275. uni.showToast({
  276. title: '该店铺未设置定位',
  277. icon: 'none',
  278. duration: 3000
  279. });
  280. } else {
  281. uni.openLocation({
  282. latitude: Number(that.orderData.shopInfo.lat),
  283. longitude: Number(that.orderData.shopInfo.lng),
  284. name: that.orderData.shopInfo.shopName,
  285. address: that.orderData.shopInfo.provinceName + that.orderData.shopInfo.cityName + that
  286. .orderData.shopInfo.areaName + that.orderData.shopInfo.address,
  287. success: function() {
  288. console.log('success');
  289. },
  290. fail(err) {
  291. console.log(err)
  292. }
  293. });
  294. }
  295. },
  296. call() {
  297. uni.makePhoneCall({
  298. phoneNumber: this.orderData.shopInfo.mobilePhone
  299. });
  300. },
  301. getData() {
  302. uni.showLoading({
  303. title: '加载中'
  304. });
  305. this.$http('openOrderManagement/queryOpenSheet', {
  306. id: this.id,
  307. }, 'GET').then(res => {
  308. uni.hideLoading();
  309. this.orderData = res.data;
  310. if (this.quanMaList) {
  311. this.quanMaList = [];
  312. }
  313. let maList = this.orderData.OpenSheetQRCode;
  314. if (maList) {
  315. maList.forEach(item =>{
  316. if (item.writeoffState==1) {
  317. this.quanMaList.push(item.qrCode);
  318. }
  319. })
  320. }
  321. console.log('可用券码--',this.quanMaList);
  322. })
  323. },
  324. goback() {
  325. uni.navigateBack({
  326. delta: 1
  327. })
  328. },
  329. gohome(){
  330. uni.switchTab({
  331. url:'../index/index'
  332. })
  333. },
  334. },
  335. onPullDownRefresh() {
  336. this.getData()
  337. setTimeout(function() {
  338. uni.stopPullDownRefresh();
  339. }, 1000);
  340. },
  341. }
  342. </script>
  343. <style scoped>
  344. .box {
  345. min-height: 100vh;
  346. background: #F4F5F7;
  347. padding-bottom: 135rpx;
  348. }
  349. .zdyNavBox{
  350. width: 100vw;
  351. background: #FFFFFF;
  352. position: fixed;
  353. top: 0;
  354. left: 0;
  355. z-index: 9999999;
  356. }
  357. .zdyNav{
  358. height: 44px;
  359. display: flex;
  360. justify-content: space-between;
  361. align-items: center;
  362. }
  363. .backImg{
  364. width: 44rpx;
  365. height: 44rpx;
  366. margin-left: 10rpx;
  367. margin-right: 20rpx;
  368. }
  369. .homeImg{
  370. width: 44rpx;
  371. height: 44rpx;
  372. }
  373. .zdyNavLeft{
  374. display: flex;
  375. align-items: center;
  376. }
  377. .zdyNavTitle{
  378. width: 100vw;
  379. height: 44px;
  380. background: #FFFFFF;
  381. text-align: center;
  382. font-size: 34rpx;
  383. line-height: 44px;
  384. }
  385. .top {
  386. height: 190rpx;
  387. background-color: #FF0000;
  388. }
  389. .orderState {
  390. display: flex;
  391. justify-content: center;
  392. align-items: center;
  393. padding-top: 40rpx;
  394. }
  395. .SheetState {
  396. display: flex;
  397. justify-content: center;
  398. font-size: 36rpx;
  399. font-weight: 500;
  400. color: #FFFFFF;
  401. margin-left: 15rpx;
  402. }
  403. .timeEditImg {
  404. width: 25rpx;
  405. height: 25rpx;
  406. padding-left: 20rpx;
  407. }
  408. .shopBoximg {
  409. width: 40rpx;
  410. height: 40rpx;
  411. }
  412. .shopRightImg {
  413. width: 44rpx;
  414. height: 45rpx;
  415. }
  416. .shopsx {
  417. width: 1px;
  418. height: 50rpx;
  419. background: #EEEEEE;
  420. margin-top: 30rpx;
  421. margin-left: 28rpx;
  422. }
  423. .shopBox {
  424. display: flex;
  425. padding: 30rpx 20rpx;
  426. margin: 0rpx 24rpx;
  427. margin-top: -60rpx;
  428. background-color: #FFFFFF;
  429. border-radius: 10rpx;
  430. }
  431. .shopCont {
  432. width: 405rpx;
  433. padding-left: 20rpx;
  434. }
  435. .shopName {
  436. font-size: 30rpx;
  437. font-weight: bold;
  438. color: #3C3C3C;
  439. line-height: 42rpx;
  440. }
  441. .Address {
  442. color: #999999;
  443. font-size: 24rpx;
  444. margin-top: 10rpx;
  445. }
  446. .shopRihgtTxt {
  447. color: #999999;
  448. font-size: 24rpx;
  449. }
  450. .shopRightBox {
  451. padding-left: 28rpx;
  452. }
  453. .detailedTitle {
  454. padding: 23rpx 20rpx;
  455. display: flex;
  456. text-align: center;
  457. align-content: flex-start;
  458. border-bottom: 1rpx solid #EEEEEE;
  459. font-size: 30rpx;
  460. font-weight: bold;
  461. color: #3C3C3C;
  462. }
  463. .detailedLine {
  464. display: flex;
  465. padding: 16rpx 20rpx;
  466. justify-content: space-between;
  467. align-items: center;
  468. }
  469. .detailedImg {
  470. width: 120rpx;
  471. height: 120rpx;
  472. border-radius: 10rpx;
  473. }
  474. .detailedName {
  475. display: flex;
  476. align-items: center;
  477. }
  478. .code {
  479. font-size: 26rpx;
  480. color: #333333;
  481. font-weight: bold;
  482. width: 180rpx
  483. }
  484. .old {
  485. color: #999999;
  486. font-weight: 400;
  487. text-decoration: line-through;
  488. }
  489. .redPoint {
  490. width: 10rpx;
  491. height: 10rpx;
  492. background: #FF0000;
  493. border-radius: 10rpx;
  494. margin-right: 10rpx;
  495. }
  496. .quanState {
  497. font-size: 22rpx;
  498. color: #F19D01;
  499. padding: 0 10rpx;
  500. border: 1rpx solid #F19D01;
  501. border-radius: 4rpx;
  502. margin-left: 20rpx;
  503. }
  504. .quanState2{
  505. font-size: 22rpx;
  506. color: #999999;
  507. padding: 0 10rpx;
  508. border: 1rpx solid #DDDDDD;
  509. border-radius: 4rpx;
  510. margin-left: 20rpx;
  511. }
  512. .information {
  513. background: #FFFFFF;
  514. border-radius: 10rpx;
  515. margin: 20rpx 24rpx;
  516. padding-bottom: 15rpx;
  517. }
  518. .informationLine {
  519. display: flex;
  520. padding: 15rpx 20rpx;
  521. }
  522. .informationLine2 {
  523. display: flex;
  524. justify-content: space-between;
  525. font-size: 26rpx;
  526. padding: 0 20rpx;
  527. }
  528. .salePrice {
  529. font-size: 26rpx;
  530. font-weight: 500;
  531. color: #333333;
  532. line-height: 45rpx;
  533. }
  534. .money {
  535. background: #FFFFFF;
  536. border-radius: 10rpx;
  537. margin: 20rpx 24rpx;
  538. display: flex;
  539. justify-content: space-between;
  540. font-size: 26rpx;
  541. padding: 30rpx 20rpx;
  542. }
  543. .informationTxt {
  544. width: 190rpx;
  545. font-size: 26rpx;
  546. color: #999999;
  547. }
  548. .line {
  549. height: 20rpx;
  550. background-color: #FFFFFF;
  551. border-bottom: 1rpx solid #EEEEEE;
  552. }
  553. .goodsName {
  554. padding: 20rpx 20rpx 15rpx;
  555. color: #333333;
  556. font-size: 26rpx;
  557. }
  558. .informationNum {
  559. color: #333333;
  560. font-size: 26rpx;
  561. }
  562. .codeCopy {
  563. width: 77rpx;
  564. height: 36rpx;
  565. background: #F4F5F7;
  566. border-radius: 22rpx;
  567. font-size: 24rpx;
  568. color: #333333;
  569. text-align: center;
  570. line-height: 33rpx;
  571. padding: 0 15rpx;
  572. margin-left: 20rpx;
  573. }
  574. .orderBottom {
  575. width: 750rpx;
  576. height: 98rpx;
  577. background: #FFFFFF;
  578. position: fixed;
  579. left: 0;
  580. bottom: 0;
  581. display: flex;
  582. justify-content: flex-end;
  583. }
  584. .bottom {
  585. display: flex;
  586. justify-content: flex-end;
  587. padding: 20rpx;
  588. background-color: #FFFFFF;
  589. align-items: center;
  590. height: 98rpx;
  591. width: 100vw;
  592. position: fixed;
  593. bottom: 0rpx;
  594. padding-bottom: constant(safe-area-inset-bottom);
  595. padding-bottom: env(safe-area-inset-bottom);
  596. }
  597. .cancel {
  598. color: #3C3C3C;
  599. font-size: 28rpx;
  600. width: 150rpx;
  601. height: 56rpx;
  602. border-radius: 36rpx;
  603. border: 1rpx solid #DDDDDD;
  604. text-align: center;
  605. line-height: 56rpx;
  606. margin-right: 40rpx;
  607. }
  608. .defer {
  609. color: #D53533;
  610. font-size: 28rpx;
  611. width: 150rpx;
  612. height: 56rpx;
  613. border-radius: 36rpx;
  614. border: 1rpx solid #D53533;
  615. text-align: center;
  616. line-height: 56rpx;
  617. margin-right: 40rpx;
  618. }
  619. .itemBox {
  620. margin: 20rpx;
  621. border-radius: 10rpx;
  622. border: 2rpx solid #EEEEEE;
  623. }
  624. .itemTop {
  625. padding: 18rpx 20rpx;
  626. padding-right: 0;
  627. background-color: #FFEFD5;
  628. display: flex;
  629. justify-content: space-between;
  630. align-content: center;
  631. }
  632. .topTitle {
  633. width: 104rpx;
  634. font-size: 26rpx;
  635. color: #333333;
  636. margin-right: 20rpx;
  637. text-align: right;
  638. }
  639. .leftItem {
  640. font-size: 26rpx;
  641. color: #333333;
  642. margin-right: 20rpx;
  643. flex-grow: 1;
  644. /* 隐藏文字显示 ...不换行 */
  645. overflow: hidden;
  646. text-overflow: ellipsis;
  647. white-space: nowrap;
  648. }
  649. .itemContent {
  650. padding: 20rpx;
  651. padding-right: 0;
  652. background-color: #FFFFFF;
  653. display: flex;
  654. justify-content: space-between;
  655. align-content: center;
  656. }
  657. .maBox {
  658. width: 100%;
  659. height: 100vh;
  660. background: rgba(0, 0, 0, 0.4);
  661. position: fixed;
  662. left: 0;
  663. top: 0;
  664. z-index: 9999;
  665. }
  666. .querenMa {
  667. width: 578;
  668. height: 640rpx;
  669. background: #ffffff;
  670. margin: 0 86rpx;
  671. margin-top: 50%;
  672. border-radius: 24rpx;
  673. }
  674. .maTop {
  675. display: flex;
  676. justify-content: space-between;
  677. align-items: center;
  678. padding: 30rpx 20rpx 15rpx;
  679. }
  680. .maTitle {
  681. color: #666666;
  682. font-size: 26rpx;
  683. text-align: center;
  684. padding-left: 100rpx;
  685. }
  686. .swiper{
  687. width: 100%;
  688. height: 85%;
  689. background: #FFFFFF;
  690. }
  691. .swiper-item{
  692. width: 100%;
  693. height: 100%;
  694. }
  695. .maCode {
  696. font-size: 30rpx;
  697. font-weight: 500;
  698. color: #333333;
  699. line-height: 42rpx;
  700. margin-bottom: 40rpx;
  701. text-align: center;
  702. }
  703. .maBoximg {
  704. width: 400rpx;
  705. height: 400rpx;
  706. margin-left: 86rpx;
  707. }
  708. </style>