activityOrderDetail.vue 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278
  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">
  9. </image>
  10. </view>
  11. <view class="zdyNavTitle">订单详情</view>
  12. <view style="width: 50px;"></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. <view class="shopRightBox">
  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"
  50. :key="index">
  51. <view class="informationLine2">
  52. <view class="goodsName">{{item.itemName}}</view>
  53. <view class="huodong" @click="goDetail(item.itemId)">
  54. <view class="goodsName3">活动详情</view>
  55. <image src="../../static/img/little_rightArrow.png" mode="" style="width: 30rpx;height: 30rpx;">
  56. </image>
  57. </view>
  58. </view>
  59. <view class="salePrice"><span class="informationNum" >¥</span>{{item.salePrice}}</view>
  60. </view>
  61. <view v-if="orderData.data.sheetState != 1 && orderData.data.sheetState != 4" class="line"></view>
  62. <view v-if="orderData.data.sheetState != 1 && orderData.data.sheetState != 4">
  63. <view class="goodsName2">
  64. 券码信息({{quanMaList.length?quanMaList.length:0}}张可用)
  65. </view>
  66. <view class="detailedLine" v-for="(v,index) in orderData.OpenSheetQRCode">
  67. <view v-if="v.writeoffState==1" class="detailedName">
  68. <view class="redPoint"></view>
  69. <view class="code">{{v.qrCode}}</view>
  70. <view class="quanState">待使用</view>
  71. </view>
  72. <view v-if="v.writeoffState==3" class="detailedName">
  73. <view class="redPoint"></view>
  74. <view class="code old">{{v.qrCode}}</view>
  75. <view class="quanState2">已使用</view>
  76. </view>
  77. <image src="../../static/img/icon_erweima.png" mode="" style="width: 36rpx;height: 36rpx;"
  78. v-if="v.writeoffState==1" @click="isShowMa=true"></image>
  79. </view>
  80. </view>
  81. </view>
  82. <!-- 实付款 -->
  83. <view class="money">
  84. <view class="informationNum">实付款:</view>
  85. <view class="informationNum" style="color: #FF0000;font-weight: bold;">¥{{orderData.data.realMoney}}</view>
  86. </view>
  87. <!-- 订单信息 -->
  88. <view class="information">
  89. <view class="detailedTitle">订单信息</view>
  90. <view class="informationLine" v-if="orderData.data.plateNumber">
  91. <view class="informationTxt">车牌号:</view>
  92. <view class="informationNum">{{orderData.data.plateNumber}}</view>
  93. </view>
  94. <view class="informationLine" v-if="orderData.data.customerName">
  95. <view class="informationTxt">联系人:</view>
  96. <view class="informationNum">{{orderData.data.customerName}}</view>
  97. </view>
  98. <view class="informationLine" v-if="orderData.data.mobilePhone">
  99. <view class="informationTxt">手机号:</view>
  100. <view class="informationNum">{{orderData.data.mobilePhone}}</view>
  101. </view>
  102. <view class="informationLine" v-if="orderData.data.unit">
  103. <view class="informationTxt">单位:</view>
  104. <view class="informationNum">{{orderData.data.unit}}</view>
  105. </view>
  106. <view class="informationLine">
  107. <view class="informationTxt">报名时间:</view>
  108. <view class="informationNum">{{orderData.data.createTime}}</view>
  109. </view>
  110. <view class="informationLine">
  111. <view class="informationTxt">报名门店:</view>
  112. <view class="informationNum">{{orderData.shopInfo.shopName}}</view>
  113. </view>
  114. <view class="informationLine">
  115. <view class="informationTxt">订单单号:</view>
  116. <view class="informationNum">{{orderData.data.code}}<span class="codeCopy"
  117. @click="copy(orderData.data.code)">复制</span></view>
  118. </view>
  119. </view>
  120. <!-- 支付信息 -->
  121. <view class="information">
  122. <view class="detailedTitle">支付信息</view>
  123. <view class="informationLine">
  124. <view class="informationTxt">支付状态:</view>
  125. <view class="informationNum" v-if="orderData.data.payState==1">未支付</view>
  126. <view class="informationNum" v-if="orderData.data.payState==2">已支付</view>
  127. </view>
  128. <view class="informationLine">
  129. <view class="informationTxt">支付方式:</view>
  130. <view class="informationNum" v-if="orderData.data.payType==1">在线支付</view>
  131. <view class="informationNum" v-if="orderData.data.payType==2">-</view>
  132. </view>
  133. <view class="informationLine">
  134. <view class="informationTxt">支付时间:</view>
  135. <view class="informationNum">{{orderData.data.payTime?orderData.data.payTime:'-'}}</view>
  136. </view>
  137. </view>
  138. <!-- 核销信息 -->
  139. <view class="information" v-if="orderData.data.sheetState == 3">
  140. <view class="detailedTitle">核销信息</view>
  141. <view class="informationLine">
  142. <view class="informationTxt">核销状态:</view>
  143. <view class="informationNum" v-if="orderData.data.writeoffState==1">未核销</view>
  144. <view class="informationNum" v-if="orderData.data.writeoffState==2">部分核销</view>
  145. <view class="informationNum" v-if="orderData.data.writeoffState==3">已核销</view>
  146. </view>
  147. <view class="informationLine">
  148. <view class="informationTxt">核销时间:</view>
  149. <view class="informationNum">{{orderData.data.writeoffTime?orderData.data.writeoffTime:'-'}}</view>
  150. </view>
  151. <view class="informationLine">
  152. <view class="informationTxt">核销门店:</view>
  153. <view class="informationNum"></view>
  154. </view>
  155. </view>
  156. <view style="height: 50rpx;background-color: #F4F5F7;"></view>
  157. <!-- 待付款 -->
  158. <view class="bottom" v-if="orderData.data.sheetState == 1">
  159. <view v-if="iOSInfo.indexOf('Q030')!=-1||!iOSInfo" class="cancel" @click="cancelBespeak">取消订单</view>
  160. </view>
  161. <!-- 待服务 -->
  162. <view class="bottom" v-if="orderData.data.sheetState == 2">
  163. <view v-if="(iOSInfo.indexOf('Q030')!=-1||!iOSInfo) && (orderData.data.payType==2) && (orderData.data.writeoffState==1)" class="cancel" @click="cancelBespeak">取消订单</view>
  164. <view v-if="(iOSInfo.indexOf('Q031')!=-1||!iOSInfo) && (orderData.data.payType==1) && (orderData.data.payState==2)" class="defer" @click="isShowTui=true">退款</view>
  165. <view v-if="iOSInfo.indexOf('Q032')!=-1||!iOSInfo" class="defer" @click="goHeXiao">核销</view>
  166. </view>
  167. <!-- 券码 -->
  168. <view class="maBox" v-if="isShowMa==true" @click="isShowMa=false">
  169. <view class="querenMa">
  170. <view class="maTop">
  171. <view class="maTitle">请到店出示券码即可开始服务</view>
  172. <image @click="isShowMa=false" src="../../static/img/icon_delete.png" mode=""
  173. style="width: 26rpx;height: 26rpx;margin-left: 10rpx;"></image>
  174. </view>
  175. <swiper class="swiper" circular :autoplay="false" :indicator-dots="true" indicator-color="#CCCCCC"
  176. indicator-active-color="#D53533">
  177. <swiper-item v-for="(item,index) in quanMaList">
  178. <view class="swiper-item">
  179. <view class="maCode">{{item}}</view>
  180. <view class="maBoximg">
  181. <tki-qrcode cid="qrcode1" ref="qrcode" :val="item" :size="400" :unit="unit"
  182. :pdground="pdground" :icon="icon" :iconSize="iconsize" :lv="lv" :onval="onval"
  183. :loadMake="loadMake" :usingComponents="true" @result="qrR" />
  184. </view>
  185. </view>
  186. </swiper-item>
  187. </swiper>
  188. </view>
  189. </view>
  190. <!-- 退款原因 -->
  191. <view class="tuikuanBox" v-if="isShowTui==true">
  192. <view class="tuikuan">
  193. <view class="tuiTop">
  194. <view class="tuiTitle">退款</view>
  195. <image @click="isShowTui=false" src="../../static/img/icon_close.png" mode=""
  196. style="width: 26rpx; height: 26rpx;"></image>
  197. </view>
  198. <view class="contLine">
  199. <view class="contlineLeft">
  200. <image src="../../static/img/icon_star.png" mode="" class="star"></image>
  201. 退款原因
  202. </view>
  203. <view class="contlineRight carModelRight" @click="">
  204. <picker class="carModel" @change="bindChange" mode="selector" :value="index"
  205. :range="tuicauseList" range-key="contents">
  206. <view class="uni-input">{{tuicauseList[index].contents}}</view>
  207. <!-- <view class="uni-input noColor" v-else>请选择</view> -->
  208. </picker>
  209. <image src="../../static/img/little_rightArrow.png" mode="" class="contlineRightJt"></image>
  210. </view>
  211. </view>
  212. <view class="contLine">
  213. <view class="contlineLeft">
  214. <image src="../../static/img/icon_star.png" mode="" class="star"></image>
  215. 退款金额
  216. </view>
  217. <view class="contlineRight carModelRight" @click="cktime">
  218. <span class="carModel">{{orderData.data.realMoney}}</span>
  219. </view>
  220. </view>
  221. <view class="contLine">
  222. <view class="contlineLeft">
  223. <image src="" mode="" class="star"></image>
  224. 补充描述
  225. </view>
  226. <view class="contlineRight">
  227. <textarea placeholder-style="color:#999999" placeholder="请输入" v-model="tuikuanContent"
  228. class="contlineRightInput" maxlength="-1" auto-height="true" @confirm="feedDone" />
  229. </view>
  230. </view>
  231. <view class="tuiBtns">
  232. <view class="btn" @click="isShowTui=false">取消</view>
  233. <view class="btn2" @click="goTui">确认退款</view>
  234. </view>
  235. </view>
  236. </view>
  237. </view>
  238. </template>
  239. <script>
  240. import tkiQrcode from "@/components/tki-qrcode/tki-qrcode.vue"
  241. export default {
  242. components: {
  243. tkiQrcode
  244. },
  245. data() {
  246. return {
  247. id: '',
  248. iStatusBarHeight: '',
  249. orderData: '',
  250. onval: true, // val值变化时自动重新生成二维码
  251. loadMake: true, // 组件加载完成后自动生成二维码
  252. size: 500,
  253. qrcodeShow: false,
  254. qrcodeTop: '-100vh',
  255. qrcodeTopVal: '',
  256. ifShow: false,
  257. val: '二维码', // 要生成的二维码值
  258. unit: 'upx', // 单位
  259. background: '#b4e9e2', // 背景色
  260. foreground: '#309286', // 前景色
  261. pdground: '#262637', // 角标色
  262. icon: '', // 二维码图标
  263. iconsize: 40, // 二维码图标大小
  264. lv: 3, // 二维码容错级别 , 一般不用设置,默认就行
  265. src: '', // 二维码生成后的图片地址或base64
  266. isShowMa: false,
  267. quanMaList: [],
  268. isShowTui: false,
  269. tuicauseList: [],
  270. tuikuanContent: '',
  271. index: 0,
  272. iOSInfo:'',
  273. }
  274. },
  275. onLoad(opt) {
  276. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  277. this.id = opt.id
  278. if (this.id) {
  279. this.getData()
  280. }
  281. this.getTuiKuanData()
  282. var qxnum = uni.getStorageSync("quanxian");
  283. if (qxnum == 1) {
  284. this.iOSInfo = JSON.parse(JSON.stringify(window.iOSInfo));
  285. }else if(qxnum==2){
  286. window.getAndroid=this.getAndroid;
  287. }
  288. },
  289. methods: {
  290. getAndroid(e){
  291. this.iOSInfo=e
  292. },
  293. goTui() {
  294. let yuanyin = this.tuicauseList[this.index].contents
  295. if (!yuanyin) {
  296. uni.showToast({
  297. title: '请选择退款原因',
  298. icon: 'none',
  299. duration: 3000
  300. });
  301. return false;
  302. }
  303. uni.showLoading({
  304. title: '加载中'
  305. })
  306. var that = this
  307. this.$http('openH5Indent/reimburse', {
  308. id: this.id,
  309. refundReason: yuanyin,
  310. refundComment: this.tuikuanContent,
  311. realMoney: this.orderData.data.realMoney
  312. }, 'GET').then(res => {
  313. uni.hideLoading();
  314. // var list = res.data.Items
  315. // var list = res.data
  316. console.log("result+=", res);
  317. if (res.code == 0) {
  318. that.isShowTui = false
  319. uni.showToast({
  320. title: '退款成功',
  321. icon: 'none',
  322. duration: 2000
  323. });
  324. setTimeout(function() {
  325. that.getData();
  326. }, 1000);
  327. }
  328. })
  329. },
  330. bindChange(e) {
  331. console.log(e);
  332. this.index = e.detail.value
  333. },
  334. feedDone(e) {
  335. this.tuikuanContent = e.target.value
  336. },
  337. // 核销
  338. goHeXiao() {
  339. //app交互
  340. var standalone = window.navigator.standalone
  341. var userAgent = window.navigator.userAgent.toLowerCase()
  342. var safari = /safari/.test(userAgent)
  343. var ios = /iphone|ipod|ipad|mac/.test(userAgent)
  344. var android = /android/.test(userAgent)
  345. if (ios) {
  346. if (true) { //!standalone&& !safari
  347. window.webkit.messageHandlers.goHeXiao.postMessage({
  348. "id": this.id ? this.id : ''
  349. })
  350. }
  351. } else if (android) {
  352. window.android.writeoff(this.id)
  353. }
  354. },
  355. getTuiKuanData() {
  356. uni.showLoading({
  357. title: '加载中'
  358. });
  359. this.$http('openH5Indent/getOpenReason', {
  360. // id: this.id,
  361. }, 'GET').then(res => {
  362. uni.hideLoading();
  363. this.tuicauseList = res.data;
  364. })
  365. },
  366. goDetail(id) {
  367. console.log('id--', id);
  368. uni.navigateTo({
  369. url: '../addjk/activityDetail?id=' + id
  370. })
  371. },
  372. pay() {
  373. this.$http('openMallOrder/unifiedPay', {
  374. sheetId: this.id
  375. }, 'POST').then(res => {
  376. if (res.code == 0) {
  377. this.requestPayment(res.data)
  378. } else {
  379. uni.showToast({
  380. title: res.msg,
  381. icon: 'none',
  382. duration: 3000
  383. });
  384. }
  385. })
  386. },
  387. requestPayment(res) {
  388. var payInfo = res;
  389. //console.log(payInfo)
  390. //console.log(String(Date.now()))
  391. var that = this;
  392. uni.requestPayment({
  393. provider: 'wxpay',
  394. //timeStamp: String(Date.now()),
  395. timeStamp: payInfo.timeStamp,
  396. nonceStr: payInfo.nonceStr,
  397. package: payInfo.package,
  398. signType: payInfo.signType,
  399. paySign: payInfo.paySign,
  400. appid: payInfo.appId,
  401. success: function(res) {
  402. console.log('success:' + JSON.stringify(res));
  403. uni.showToast({
  404. title: '支付成功',
  405. icon: 'none',
  406. duration: 2000
  407. });
  408. that.getData()
  409. },
  410. fail: function(err) {
  411. console.log(err)
  412. uni.showToast({
  413. title: '支付失败',
  414. icon: 'none',
  415. duration: 2000
  416. });
  417. }
  418. });
  419. },
  420. copy(txt) {
  421. uni.setClipboardData({
  422. data: txt,
  423. success: function() {
  424. uni.showToast({
  425. title: '复制成功',
  426. icon: 'none',
  427. duration: 2000
  428. });
  429. }
  430. });
  431. },
  432. upTime() {
  433. uni.showLoading({
  434. title: '加载中'
  435. })
  436. var that = this
  437. this.$http('openH5Indent/carOwner/updateTimeOfAppointment', {
  438. id: this.id,
  439. shopId: this.orderData.shopInfo.id,
  440. billDate: this.billDate
  441. }, 'POST').then(res => {
  442. uni.hideLoading();
  443. // var list = res.data.Items
  444. var list = res.data
  445. console.log("result+=", res.data);
  446. uni.showToast({
  447. title: '延期成功',
  448. icon: 'none',
  449. duration: 2000
  450. });
  451. setTimeout(function() {
  452. that.getData();
  453. }, 1000);
  454. })
  455. },
  456. cancelBespeak() {
  457. var that = this
  458. uni.showModal({
  459. title: '提示',
  460. content: '是否取消该订单',
  461. cancelText: '否',
  462. confirmText: '是',
  463. success: function(res) {
  464. if (res.confirm) {
  465. uni.showLoading({
  466. title: '加载中'
  467. })
  468. that.$http('openH5Indent/updateSheetState', {
  469. id: that.id,
  470. }, 'POST').then(res => {
  471. uni.hideLoading();
  472. // var list = res.data.Items
  473. uni.showToast({
  474. title: '取消成功',
  475. icon: 'none',
  476. duration: 2000
  477. });
  478. setTimeout(function() {
  479. that.getData();
  480. }, 1000);
  481. })
  482. } else if (res.cancel) {
  483. }
  484. }
  485. });
  486. },
  487. map() {
  488. console.log("打开地图")
  489. var that = this;
  490. if (!that.orderData.shopInfo.lat || !that.orderData.shopInfo.lng) {
  491. uni.showToast({
  492. title: '该店铺未设置定位',
  493. icon: 'none',
  494. duration: 3000
  495. });
  496. } else {
  497. uni.openLocation({
  498. latitude: Number(that.orderData.shopInfo.lat),
  499. longitude: Number(that.orderData.shopInfo.lng),
  500. name: that.orderData.shopInfo.shopName,
  501. address: that.orderData.shopInfo.provinceName + that.orderData.shopInfo.cityName + that
  502. .orderData.shopInfo.areaName + that.orderData.shopInfo.address,
  503. success: function() {
  504. console.log('success');
  505. },
  506. fail(err) {
  507. console.log(err)
  508. }
  509. });
  510. }
  511. },
  512. call() {
  513. uni.makePhoneCall({
  514. phoneNumber: this.orderData.shopInfo.mobilePhone
  515. });
  516. },
  517. getData() {
  518. uni.showLoading({
  519. title: '加载中'
  520. });
  521. this.$http('openH5Indent/queryOpenSheet', {
  522. id: this.id,
  523. }, 'GET').then(res => {
  524. uni.hideLoading();
  525. this.orderData = res.data;
  526. if (this.quanMaList) {
  527. this.quanMaList = [];
  528. }
  529. let maList = this.orderData.OpenSheetQRCode;
  530. if (maList) {
  531. maList.forEach(item => {
  532. if (item.writeoffState == 1) {
  533. this.quanMaList.push(item.qrCode);
  534. }
  535. })
  536. }
  537. console.log('可用券码--', this.quanMaList);
  538. })
  539. },
  540. goback() {
  541. uni.navigateBack({
  542. delta: 1
  543. })
  544. },
  545. gohome() {
  546. uni.switchTab({
  547. url: '../../index/index'
  548. })
  549. },
  550. },
  551. onPullDownRefresh() {
  552. this.getData()
  553. setTimeout(function() {
  554. uni.stopPullDownRefresh();
  555. }, 1000);
  556. },
  557. }
  558. </script>
  559. <style scoped>
  560. .box {
  561. min-height: 100vh;
  562. background: #F4F5F7;
  563. padding-bottom: 135rpx;
  564. }
  565. .zdyNavBox {
  566. width: 100vw;
  567. background: #FFFFFF;
  568. position: fixed;
  569. top: 0;
  570. left: 0;
  571. z-index: 9999999;
  572. }
  573. .zdyNav {
  574. height: 44px;
  575. display: flex;
  576. justify-content: space-between;
  577. align-items: center;
  578. }
  579. .backImg {
  580. width: 44rpx;
  581. height: 44rpx;
  582. margin-left: 10rpx;
  583. margin-right: 20rpx;
  584. }
  585. .homeImg {
  586. width: 44rpx;
  587. height: 44rpx;
  588. }
  589. .zdyNavLeft {
  590. display: flex;
  591. align-items: center;
  592. }
  593. .zdyNavTitle {
  594. height: 44px;
  595. background: #FFFFFF;
  596. text-align: center;
  597. font-size: 34rpx;
  598. line-height: 44px;
  599. }
  600. .top {
  601. height: 190rpx;
  602. background-color: #FF0000;
  603. }
  604. .orderState {
  605. display: flex;
  606. justify-content: center;
  607. align-items: center;
  608. padding-top: 40rpx;
  609. }
  610. .SheetState {
  611. display: flex;
  612. justify-content: center;
  613. font-size: 36rpx;
  614. font-weight: 500;
  615. color: #FFFFFF;
  616. margin-left: 15rpx;
  617. }
  618. .timeEditImg {
  619. width: 25rpx;
  620. height: 25rpx;
  621. padding-left: 20rpx;
  622. }
  623. .shopBoximg {
  624. width: 40rpx;
  625. height: 40rpx;
  626. }
  627. .shopRightImg {
  628. width: 44rpx;
  629. height: 45rpx;
  630. }
  631. .shopsx {
  632. width: 1px;
  633. height: 50rpx;
  634. background: #EEEEEE;
  635. margin-top: 30rpx;
  636. margin-left: 28rpx;
  637. }
  638. .shopBox {
  639. display: flex;
  640. padding: 30rpx 20rpx;
  641. margin: 0rpx 24rpx;
  642. margin-top: -60rpx;
  643. background-color: #FFFFFF;
  644. border-radius: 10rpx;
  645. }
  646. .shopCont {
  647. width: 405rpx;
  648. padding-left: 20rpx;
  649. }
  650. .shopName {
  651. font-size: 30rpx;
  652. font-weight: bold;
  653. color: #3C3C3C;
  654. line-height: 42rpx;
  655. }
  656. .Address {
  657. color: #999999;
  658. font-size: 24rpx;
  659. margin-top: 10rpx;
  660. }
  661. .shopRihgtTxt {
  662. color: #999999;
  663. font-size: 24rpx;
  664. }
  665. .shopRightBox {
  666. padding-left: 28rpx;
  667. }
  668. .detailedTitle {
  669. padding: 23rpx 20rpx;
  670. display: flex;
  671. text-align: center;
  672. align-content: flex-start;
  673. border-bottom: 1rpx solid #EEEEEE;
  674. font-size: 30rpx;
  675. font-weight: bold;
  676. color: #3C3C3C;
  677. }
  678. .detailedLine {
  679. display: flex;
  680. padding: 16rpx 20rpx;
  681. justify-content: space-between;
  682. align-items: center;
  683. }
  684. .detailedImg {
  685. width: 120rpx;
  686. height: 120rpx;
  687. border-radius: 10rpx;
  688. }
  689. .detailedName {
  690. display: flex;
  691. align-items: center;
  692. }
  693. .code {
  694. font-size: 26rpx;
  695. color: #333333;
  696. font-weight: bold;
  697. width: 180rpx
  698. }
  699. .old {
  700. color: #999999;
  701. font-weight: 400;
  702. text-decoration: line-through;
  703. }
  704. .redPoint {
  705. width: 10rpx;
  706. height: 10rpx;
  707. background: #FF0000;
  708. border-radius: 10rpx;
  709. margin-right: 10rpx;
  710. }
  711. .quanState {
  712. font-size: 22rpx;
  713. color: #F19D01;
  714. padding: 0 10rpx;
  715. border: 1rpx solid #F19D01;
  716. border-radius: 4rpx;
  717. margin-left: 20rpx;
  718. }
  719. .quanState2 {
  720. font-size: 22rpx;
  721. color: #999999;
  722. padding: 0 10rpx;
  723. border: 1rpx solid #DDDDDD;
  724. border-radius: 4rpx;
  725. margin-left: 20rpx;
  726. }
  727. .information {
  728. background: #FFFFFF;
  729. border-radius: 10rpx;
  730. margin: 20rpx 24rpx;
  731. padding-bottom: 15rpx;
  732. }
  733. .informationLine {
  734. display: flex;
  735. padding: 15rpx 20rpx;
  736. }
  737. .informationLine2 {
  738. display: flex;
  739. justify-content: space-between;
  740. font-size: 26rpx;
  741. padding: 20rpx;
  742. align-items: center;
  743. padding-bottom: 0;
  744. }
  745. .salePrice {
  746. padding-left: 20rpx;
  747. padding-top: 15rpx;
  748. font-size: 26rpx;
  749. font-weight: 500;
  750. color: #333333;
  751. line-height: 45rpx;
  752. }
  753. .money {
  754. background: #FFFFFF;
  755. border-radius: 10rpx;
  756. margin: 20rpx 24rpx;
  757. display: flex;
  758. justify-content: space-between;
  759. font-size: 26rpx;
  760. padding: 30rpx 20rpx;
  761. }
  762. .informationTxt {
  763. width: 190rpx;
  764. font-size: 26rpx;
  765. color: #999999;
  766. }
  767. .line {
  768. height: 20rpx;
  769. background-color: #FFFFFF;
  770. border-bottom: 1rpx solid #EEEEEE;
  771. }
  772. .goodsName {
  773. width: 70%;
  774. color: #333333;
  775. font-size: 26rpx;
  776. }
  777. .huodong {
  778. display: flex;
  779. align-items: center;
  780. }
  781. .goodsName3 {
  782. color: #333333;
  783. font-size: 26rpx;
  784. }
  785. .goodsName2 {
  786. padding: 20rpx 20rpx 15rpx;
  787. color: #333333;
  788. font-size: 26rpx;
  789. }
  790. .informationNum {
  791. color: #333333;
  792. font-size: 26rpx;
  793. }
  794. .codeCopy {
  795. width: 77rpx;
  796. height: 36rpx;
  797. background: #F4F5F7;
  798. border-radius: 22rpx;
  799. font-size: 24rpx;
  800. color: #333333;
  801. text-align: center;
  802. line-height: 33rpx;
  803. padding: 0 15rpx;
  804. margin-left: 20rpx;
  805. }
  806. .bottom {
  807. display: flex;
  808. justify-content: flex-end;
  809. padding: 20rpx;
  810. background-color: #FFFFFF;
  811. align-items: center;
  812. height: 98rpx;
  813. width: 100vw;
  814. position: fixed;
  815. bottom: 0rpx;
  816. padding-bottom: constant(safe-area-inset-bottom);
  817. padding-bottom: env(safe-area-inset-bottom);
  818. }
  819. .cancel {
  820. color: #3C3C3C;
  821. font-size: 28rpx;
  822. width: 150rpx;
  823. height: 56rpx;
  824. border-radius: 36rpx;
  825. border: 1rpx solid #DDDDDD;
  826. text-align: center;
  827. line-height: 56rpx;
  828. margin-right: 40rpx;
  829. }
  830. .defer {
  831. color: #D53533;
  832. font-size: 28rpx;
  833. width: 150rpx;
  834. height: 56rpx;
  835. border-radius: 36rpx;
  836. border: 1rpx solid #D53533;
  837. text-align: center;
  838. line-height: 56rpx;
  839. margin-right: 40rpx;
  840. }
  841. .itemBox {
  842. margin: 20rpx;
  843. border-radius: 10rpx;
  844. border: 2rpx solid #EEEEEE;
  845. }
  846. .itemTop {
  847. padding: 18rpx 20rpx;
  848. padding-right: 0;
  849. background-color: #FFEFD5;
  850. display: flex;
  851. justify-content: space-between;
  852. align-content: center;
  853. }
  854. .topTitle {
  855. width: 104rpx;
  856. font-size: 26rpx;
  857. color: #333333;
  858. margin-right: 20rpx;
  859. text-align: right;
  860. }
  861. .leftItem {
  862. font-size: 26rpx;
  863. color: #333333;
  864. margin-right: 20rpx;
  865. flex-grow: 1;
  866. /* 隐藏文字显示 ...不换行 */
  867. overflow: hidden;
  868. text-overflow: ellipsis;
  869. white-space: nowrap;
  870. }
  871. .itemContent {
  872. padding: 20rpx;
  873. padding-right: 0;
  874. background-color: #FFFFFF;
  875. display: flex;
  876. justify-content: space-between;
  877. align-content: center;
  878. }
  879. .maBox {
  880. width: 100%;
  881. height: 100vh;
  882. background: rgba(0, 0, 0, 0.4);
  883. position: fixed;
  884. left: 0;
  885. top: 0;
  886. z-index: 9999;
  887. }
  888. .querenMa {
  889. width: 578;
  890. height: 640rpx;
  891. background: #ffffff;
  892. margin: 0 86rpx;
  893. margin-top: 50%;
  894. border-radius: 24rpx;
  895. }
  896. .maTop {
  897. display: flex;
  898. justify-content: space-between;
  899. align-items: center;
  900. padding: 30rpx 20rpx 15rpx;
  901. }
  902. .maTitle {
  903. color: #666666;
  904. font-size: 26rpx;
  905. text-align: center;
  906. padding-left: 100rpx;
  907. }
  908. .swiper {
  909. width: 100%;
  910. height: 85%;
  911. background: #FFFFFF;
  912. }
  913. .swiper-item {
  914. width: 100%;
  915. height: 100%;
  916. }
  917. .maCode {
  918. font-size: 30rpx;
  919. font-weight: 500;
  920. color: #333333;
  921. line-height: 42rpx;
  922. margin-bottom: 40rpx;
  923. text-align: center;
  924. }
  925. .maBoximg {
  926. width: 400rpx;
  927. height: 400rpx;
  928. margin-left: 86rpx;
  929. }
  930. .tuikuanBox {
  931. width: 100%;
  932. height: 100vh;
  933. background: rgba(0, 0, 0, 0.4);
  934. position: fixed;
  935. left: 0;
  936. top: 0;
  937. z-index: 999;
  938. }
  939. .tuikuan {
  940. width: 638rpx;
  941. height: 664rpx;
  942. background: #ffffff;
  943. margin: 0 36rpx;
  944. margin-top: 50%;
  945. border-radius: 24rpx;
  946. padding: 30rpx 20rpx;
  947. }
  948. .tuiTop {
  949. display: flex;
  950. justify-content: space-between;
  951. margin-bottom: 36rpx;
  952. }
  953. .tuiTitle {
  954. width: 56rpx;
  955. height: 40rpx;
  956. font-size: 28rpx;
  957. font-weight: 500;
  958. color: #3C3C3C;
  959. line-height: 40rpx;
  960. }
  961. .contLine {
  962. display: flex;
  963. justify-content: space-between;
  964. font-size: 28rpx;
  965. padding: 30rpx 0;
  966. border-bottom: 1px solid #EEEEEE;
  967. }
  968. .contlineLeft {
  969. color: #666666;
  970. line-height: 40rpx;
  971. align-items: center;
  972. }
  973. .star {
  974. width: 14rpx;
  975. height: 14rpx;
  976. padding-bottom: 5rpx;
  977. }
  978. .carModel {
  979. width: 350rpx;
  980. text-align: left;
  981. }
  982. .noColor {
  983. color: #CCCCCC;
  984. }
  985. .carModelRight {
  986. display: flex;
  987. justify-content: flex-start;
  988. align-items: center;
  989. }
  990. .contlineRight {
  991. color: #333333;
  992. line-height: 40rpx;
  993. width: 400rpx;
  994. text-align: right;
  995. }
  996. .contlineRightInput {
  997. color: #333333;
  998. text-align: left;
  999. font-size: 28rpx;
  1000. min-height: 182rpx;
  1001. width: 400rpx;
  1002. }
  1003. .contlineRightJt {
  1004. width: 30rpx;
  1005. height: 30rpx;
  1006. }
  1007. .tuiBtns {
  1008. display: flex;
  1009. padding: 40rpx 20rpx 10rpx;
  1010. }
  1011. .btn {
  1012. width: 288rpx;
  1013. height: 98rpx;
  1014. background: #F4F5F7;
  1015. border-radius: 10rpx;
  1016. margin-right: 22rpx;
  1017. font-size: 30rpx;
  1018. font-weight: 500;
  1019. color: #3C3C3C;
  1020. line-height: 98rpx;
  1021. text-align: center;
  1022. }
  1023. .btn2 {
  1024. width: 288rpx;
  1025. height: 98rpx;
  1026. background: #3F90F7;
  1027. border-radius: 10rpx;
  1028. font-size: 30rpx;
  1029. font-weight: 500;
  1030. color: #FFFFFF;
  1031. line-height: 98rpx;
  1032. text-align: center;
  1033. }
  1034. </style>