mallOrderDetail.vue 27 KB

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