activityOrderDetail.vue 24 KB

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