mallOrderDetail.vue 27 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250
  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="isShowMaSHow"></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. isShowMaSHow(){
  297. this.isShowMa=true
  298. },
  299. getAndroid(e){
  300. this.iOSInfo=e
  301. },
  302. goTui() {
  303. let yuanyin = this.tuicauseList[this.index].contents
  304. if (!yuanyin) {
  305. uni.showToast({
  306. title: '请选择退款原因',
  307. icon: 'none',
  308. duration: 3000
  309. });
  310. return false;
  311. }
  312. uni.showLoading({
  313. title: '加载中'
  314. })
  315. var that = this
  316. this.$http('openH5Indent/reimburse', {
  317. id: this.id,
  318. refundReason: yuanyin,
  319. refundComment: this.tuikuanContent,
  320. realMoney: this.orderData.data.realMoney
  321. }, 'GET').then(res => {
  322. uni.hideLoading();
  323. // var list = res.data.Items
  324. // var list = res.data
  325. console.log("result+=", res);
  326. if (res.code == 0) {
  327. that.isShowTui = false
  328. uni.showToast({
  329. title: '退款成功',
  330. icon: 'none',
  331. duration: 2000
  332. });
  333. setTimeout(function() {
  334. that.getData();
  335. }, 1000);
  336. }
  337. })
  338. },
  339. bindChange(e) {
  340. console.log(e);
  341. this.index = e.detail.value
  342. },
  343. feedDone(e) {
  344. this.tuikuanContent = e.target.value
  345. },
  346. // 核销
  347. goHeXiao() {
  348. console.log(this.id)
  349. //app交互
  350. var standalone = window.navigator.standalone
  351. var userAgent = window.navigator.userAgent.toLowerCase()
  352. var safari = /safari/.test(userAgent)
  353. var ios = /iphone|ipod|ipad|mac/.test(userAgent)
  354. var android = /android/.test(userAgent)
  355. if (ios) {
  356. if (true) { //!standalone&& !safari
  357. window.webkit.messageHandlers.goHeXiao.postMessage({
  358. "id": this.id ? this.id : ''
  359. })
  360. }
  361. } else if (android) {
  362. window.android.writeoff(this.id)
  363. }
  364. },
  365. getTuiKuanData() {
  366. uni.showLoading({
  367. title: '加载中'
  368. });
  369. this.$http('openH5Indent/getOpenReason', {
  370. // id: this.id,
  371. }, 'GET').then(res => {
  372. uni.hideLoading();
  373. this.tuicauseList = res.data;
  374. })
  375. },
  376. pay() {
  377. this.$http('openMallOrder/unifiedPay', {
  378. sheetId: this.id
  379. }, 'POST').then(res => {
  380. if (res.code == 0) {
  381. this.requestPayment(res.data)
  382. } else {
  383. uni.showToast({
  384. title: res.msg,
  385. icon: 'none',
  386. duration: 3000
  387. });
  388. }
  389. })
  390. },
  391. requestPayment(res) {
  392. var payInfo = res;
  393. //console.log(payInfo)
  394. //console.log(String(Date.now()))
  395. var that = this;
  396. uni.requestPayment({
  397. provider: 'wxpay',
  398. //timeStamp: String(Date.now()),
  399. timeStamp: payInfo.timeStamp,
  400. nonceStr: payInfo.nonceStr,
  401. package: payInfo.package,
  402. signType: payInfo.signType,
  403. paySign: payInfo.paySign,
  404. appid: payInfo.appId,
  405. success: function(res) {
  406. console.log('success:' + JSON.stringify(res));
  407. uni.showToast({
  408. title: '支付成功',
  409. icon: 'none',
  410. duration: 2000
  411. });
  412. that.getData()
  413. },
  414. fail: function(err) {
  415. console.log(err)
  416. uni.showToast({
  417. title: '支付失败',
  418. icon: 'none',
  419. duration: 2000
  420. });
  421. }
  422. });
  423. },
  424. copy(txt) {
  425. uni.setClipboardData({
  426. data: txt,
  427. success: function() {
  428. uni.showToast({
  429. title: '复制成功',
  430. icon: 'none',
  431. duration: 2000
  432. });
  433. }
  434. });
  435. },
  436. upTime() {
  437. uni.showLoading({
  438. title: '加载中'
  439. })
  440. var that = this
  441. this.$http('openH5Indent/carOwner/updateTimeOfAppointment', {
  442. id: this.id,
  443. shopId: this.orderData.shopInfo.id,
  444. billDate: this.billDate
  445. }, 'POST').then(res => {
  446. uni.hideLoading();
  447. // var list = res.data.Items
  448. var list = res.data
  449. console.log("result+=", res.data);
  450. uni.showToast({
  451. title: '延期成功',
  452. icon: 'none',
  453. duration: 2000
  454. });
  455. setTimeout(function() {
  456. that.getData();
  457. }, 1000);
  458. })
  459. },
  460. cancelBespeak() {
  461. var that = this
  462. uni.showModal({
  463. title: '提示',
  464. content: '是否取消该订单',
  465. cancelText: '否',
  466. confirmText: '是',
  467. success: function(res) {
  468. if (res.confirm) {
  469. uni.showLoading({
  470. title: '加载中'
  471. })
  472. that.$http('openH5Indent/updateSheetState', {
  473. id: that.id,
  474. }, 'POST').then(res => {
  475. uni.hideLoading();
  476. // var list = res.data.Items
  477. uni.showToast({
  478. title: '取消成功',
  479. icon: 'none',
  480. duration: 2000
  481. });
  482. setTimeout(function() {
  483. that.getData();
  484. }, 1000);
  485. })
  486. } else if (res.cancel) {
  487. }
  488. }
  489. });
  490. },
  491. map() {
  492. console.log("打开地图")
  493. var that = this;
  494. if (!that.orderData.shopInfo.lat || !that.orderData.shopInfo.lng) {
  495. uni.showToast({
  496. title: '该店铺未设置定位',
  497. icon: 'none',
  498. duration: 3000
  499. });
  500. } else {
  501. uni.openLocation({
  502. latitude: Number(that.orderData.shopInfo.lat),
  503. longitude: Number(that.orderData.shopInfo.lng),
  504. name: that.orderData.shopInfo.shopName,
  505. address: that.orderData.shopInfo.provinceName + that.orderData.shopInfo.cityName + that
  506. .orderData.shopInfo.areaName + that.orderData.shopInfo.address,
  507. success: function() {
  508. console.log('success');
  509. },
  510. fail(err) {
  511. console.log(err)
  512. }
  513. });
  514. }
  515. },
  516. call() {
  517. uni.makePhoneCall({
  518. phoneNumber: this.orderData.shopInfo.mobilePhone
  519. });
  520. },
  521. getData() {
  522. uni.showLoading({
  523. title: '加载中'
  524. });
  525. this.$http('openH5Indent/queryOpenSheet', {
  526. id: this.id,
  527. }, 'GET').then(res => {
  528. uni.hideLoading();
  529. this.orderData = res.data;
  530. if (this.quanMaList) {
  531. this.quanMaList = [];
  532. }
  533. let maList = this.orderData.OpenSheetQRCode;
  534. if (maList) {
  535. maList.forEach(item => {
  536. if (item.writeoffState == 1) {
  537. this.quanMaList.push(item.qrCode);
  538. }
  539. })
  540. }
  541. console.log('可用券码--', this.quanMaList);
  542. })
  543. },
  544. goback() {
  545. uni.navigateBack({
  546. delta: 1
  547. })
  548. },
  549. },
  550. onPullDownRefresh() {
  551. this.getData()
  552. setTimeout(function() {
  553. uni.stopPullDownRefresh();
  554. }, 1000);
  555. },
  556. }
  557. </script>
  558. <style scoped>
  559. .box {
  560. min-height: 100vh;
  561. background: #F4F5F7;
  562. padding-bottom: 135rpx;
  563. }
  564. .zdyNavBox {
  565. width: 100vw;
  566. background: #FFFFFF;
  567. position: fixed;
  568. top: 0;
  569. left: 0;
  570. z-index: 9999999;
  571. }
  572. .zdyNav {
  573. height: 44px;
  574. display: flex;
  575. justify-content: space-between;
  576. align-items: center;
  577. }
  578. .backImg {
  579. width: 44rpx;
  580. height: 44rpx;
  581. margin-left: 10rpx;
  582. margin-right: 20rpx;
  583. }
  584. .homeImg {
  585. width: 44rpx;
  586. height: 44rpx;
  587. }
  588. .zdyNavLeft {
  589. display: flex;
  590. align-items: center;
  591. }
  592. .zdyNavTitle {
  593. height: 44px;
  594. background: #FFFFFF;
  595. text-align: center;
  596. font-size: 34rpx;
  597. line-height: 44px;
  598. }
  599. .top {
  600. height: 190rpx;
  601. background-color: #FF0000;
  602. }
  603. .orderState {
  604. display: flex;
  605. justify-content: center;
  606. align-items: center;
  607. padding-top: 40rpx;
  608. }
  609. .SheetState {
  610. display: flex;
  611. justify-content: center;
  612. font-size: 36rpx;
  613. font-weight: 500;
  614. color: #FFFFFF;
  615. margin-left: 15rpx;
  616. }
  617. .timeEditImg {
  618. width: 25rpx;
  619. height: 25rpx;
  620. padding-left: 20rpx;
  621. }
  622. .shopBoximg {
  623. width: 40rpx;
  624. height: 40rpx;
  625. }
  626. .shopRightImg {
  627. width: 44rpx;
  628. height: 45rpx;
  629. }
  630. .shopsx {
  631. width: 1px;
  632. height: 50rpx;
  633. background: #EEEEEE;
  634. margin-top: 30rpx;
  635. margin-left: 28rpx;
  636. }
  637. .shopBox {
  638. display: flex;
  639. padding: 30rpx 20rpx;
  640. margin: 0rpx 24rpx;
  641. margin-top: -60rpx;
  642. background-color: #FFFFFF;
  643. border-radius: 10rpx;
  644. }
  645. .shopCont {
  646. width: 405rpx;
  647. padding-left: 20rpx;
  648. }
  649. .shopName {
  650. font-size: 30rpx;
  651. font-weight: bold;
  652. color: #3C3C3C;
  653. line-height: 42rpx;
  654. }
  655. .Address {
  656. color: #999999;
  657. font-size: 24rpx;
  658. margin-top: 10rpx;
  659. }
  660. .shopRihgtTxt {
  661. color: #999999;
  662. font-size: 24rpx;
  663. }
  664. .shopRightBox {
  665. padding-left: 28rpx;
  666. }
  667. .detailedTitle {
  668. padding: 23rpx 20rpx;
  669. display: flex;
  670. text-align: center;
  671. align-content: flex-start;
  672. border-bottom: 1rpx solid #EEEEEE;
  673. font-size: 30rpx;
  674. font-weight: bold;
  675. color: #3C3C3C;
  676. }
  677. .detailedLine {
  678. display: flex;
  679. padding: 16rpx 20rpx;
  680. justify-content: space-between;
  681. align-items: center;
  682. }
  683. .detailedImg {
  684. width: 120rpx;
  685. height: 120rpx;
  686. border-radius: 10rpx;
  687. }
  688. .detailedName {
  689. display: flex;
  690. align-items: center;
  691. }
  692. .code {
  693. font-size: 26rpx;
  694. color: #333333;
  695. font-weight: bold;
  696. width: 180rpx
  697. }
  698. .old {
  699. color: #999999;
  700. font-weight: 400;
  701. text-decoration: line-through;
  702. }
  703. .redPoint {
  704. width: 10rpx;
  705. height: 10rpx;
  706. background: #FF0000;
  707. border-radius: 10rpx;
  708. margin-right: 10rpx;
  709. }
  710. .quanState {
  711. font-size: 22rpx;
  712. color: #F19D01;
  713. padding: 0 10rpx;
  714. border: 1rpx solid #F19D01;
  715. border-radius: 4rpx;
  716. margin-left: 20rpx;
  717. }
  718. .quanState2 {
  719. font-size: 22rpx;
  720. color: #999999;
  721. padding: 0 10rpx;
  722. border: 1rpx solid #DDDDDD;
  723. border-radius: 4rpx;
  724. margin-left: 20rpx;
  725. }
  726. .information {
  727. background: #FFFFFF;
  728. border-radius: 10rpx;
  729. margin: 20rpx 24rpx;
  730. padding-bottom: 15rpx;
  731. }
  732. .informationLine {
  733. display: flex;
  734. padding: 15rpx 20rpx;
  735. }
  736. .informationLine2 {
  737. display: flex;
  738. justify-content: space-between;
  739. font-size: 26rpx;
  740. padding: 0 20rpx;
  741. }
  742. .salePrice {
  743. font-size: 26rpx;
  744. font-weight: 500;
  745. color: #333333;
  746. line-height: 45rpx;
  747. }
  748. .money {
  749. background: #FFFFFF;
  750. border-radius: 10rpx;
  751. margin: 20rpx 24rpx;
  752. display: flex;
  753. justify-content: space-between;
  754. font-size: 26rpx;
  755. padding: 30rpx 20rpx;
  756. }
  757. .informationTxt {
  758. width: 190rpx;
  759. font-size: 26rpx;
  760. color: #999999;
  761. }
  762. .line {
  763. height: 20rpx;
  764. background-color: #FFFFFF;
  765. border-bottom: 1rpx solid #EEEEEE;
  766. }
  767. .goodsName {
  768. padding: 20rpx 20rpx 15rpx;
  769. color: #333333;
  770. font-size: 26rpx;
  771. }
  772. .informationNum {
  773. color: #333333;
  774. font-size: 26rpx;
  775. }
  776. .codeCopy {
  777. width: 77rpx;
  778. height: 36rpx;
  779. background: #F4F5F7;
  780. border-radius: 22rpx;
  781. font-size: 24rpx;
  782. color: #333333;
  783. text-align: center;
  784. line-height: 33rpx;
  785. padding: 0 15rpx;
  786. margin-left: 20rpx;
  787. }
  788. .bottom {
  789. display: flex;
  790. justify-content: flex-end;
  791. padding: 20rpx;
  792. background-color: #FFFFFF;
  793. align-items: center;
  794. height: 98rpx;
  795. width: 100vw;
  796. position: fixed;
  797. bottom: 0rpx;
  798. padding-bottom: constant(safe-area-inset-bottom);
  799. padding-bottom: env(safe-area-inset-bottom);
  800. }
  801. .cancel {
  802. color: #3C3C3C;
  803. font-size: 28rpx;
  804. width: 150rpx;
  805. height: 56rpx;
  806. border-radius: 36rpx;
  807. border: 1rpx solid #DDDDDD;
  808. text-align: center;
  809. line-height: 56rpx;
  810. margin-right: 40rpx;
  811. }
  812. .defer {
  813. color: #D53533;
  814. font-size: 28rpx;
  815. width: 150rpx;
  816. height: 56rpx;
  817. border-radius: 36rpx;
  818. border: 1rpx solid #D53533;
  819. text-align: center;
  820. line-height: 56rpx;
  821. margin-right: 40rpx;
  822. }
  823. .itemBox {
  824. margin: 20rpx;
  825. border-radius: 10rpx;
  826. border: 2rpx solid #EEEEEE;
  827. }
  828. .itemTop {
  829. padding: 18rpx 20rpx;
  830. padding-right: 0;
  831. background-color: #FFEFD5;
  832. display: flex;
  833. justify-content: space-between;
  834. align-content: center;
  835. }
  836. .topTitle {
  837. width: 104rpx;
  838. font-size: 26rpx;
  839. color: #333333;
  840. margin-right: 20rpx;
  841. text-align: right;
  842. }
  843. .leftItem {
  844. font-size: 26rpx;
  845. color: #333333;
  846. margin-right: 20rpx;
  847. flex-grow: 1;
  848. /* 隐藏文字显示 ...不换行 */
  849. overflow: hidden;
  850. text-overflow: ellipsis;
  851. white-space: nowrap;
  852. }
  853. .itemContent {
  854. padding: 20rpx;
  855. padding-right: 0;
  856. background-color: #FFFFFF;
  857. display: flex;
  858. justify-content: space-between;
  859. align-content: center;
  860. }
  861. .maBox {
  862. width: 100%;
  863. height: 100vh;
  864. background: rgba(0, 0, 0, 0.4);
  865. position: fixed;
  866. left: 0;
  867. top: 0;
  868. z-index: 9999;
  869. }
  870. .querenMa {
  871. width: 578rpx;
  872. height: 640rpx;
  873. background: #ffffff;
  874. margin: 0 86rpx;
  875. margin-top: 50%;
  876. border-radius: 24rpx;
  877. }
  878. .maTop {
  879. display: flex;
  880. justify-content: space-between;
  881. align-items: center;
  882. padding: 30rpx 20rpx 15rpx;
  883. }
  884. .maTitle {
  885. color: #666666;
  886. font-size: 26rpx;
  887. text-align: center;
  888. padding-left: 100rpx;
  889. }
  890. .swiper {
  891. width: 100%;
  892. height: 85%;
  893. background: #FFFFFF;
  894. }
  895. .swiper-item {
  896. width: 100%;
  897. height: 100%;
  898. }
  899. .maCode {
  900. font-size: 30rpx;
  901. font-weight: 500;
  902. color: #333333;
  903. line-height: 42rpx;
  904. margin-bottom: 40rpx;
  905. text-align: center;
  906. }
  907. .maBoximg {
  908. width: 400rpx;
  909. height: 400rpx;
  910. margin-left: 86rpx;
  911. }
  912. .tuikuanBox {
  913. width: 100%;
  914. height: 100vh;
  915. background: rgba(0, 0, 0, 0.4);
  916. position: fixed;
  917. left: 0;
  918. top: 0;
  919. z-index: 999;
  920. }
  921. .tuikuan {
  922. width: 638rpx;
  923. height: 664rpx;
  924. background: #ffffff;
  925. margin: 0 36rpx;
  926. margin-top: 50%;
  927. border-radius: 24rpx;
  928. padding: 30rpx 20rpx;
  929. }
  930. .tuiTop {
  931. display: flex;
  932. justify-content: space-between;
  933. margin-bottom: 36rpx;
  934. }
  935. .tuiTitle {
  936. width: 56rpx;
  937. height: 40rpx;
  938. font-size: 28rpx;
  939. font-weight: 500;
  940. color: #3C3C3C;
  941. line-height: 40rpx;
  942. }
  943. .contLine {
  944. display: flex;
  945. justify-content: space-between;
  946. font-size: 28rpx;
  947. padding: 30rpx 0;
  948. border-bottom: 1px solid #EEEEEE;
  949. }
  950. .contlineLeft {
  951. color: #666666;
  952. line-height: 40rpx;
  953. align-items: center;
  954. }
  955. .star {
  956. width: 14rpx;
  957. height: 14rpx;
  958. padding-bottom: 5rpx;
  959. }
  960. .carModel {
  961. width: 350rpx;
  962. text-align: left;
  963. }
  964. .noColor {
  965. color: #CCCCCC;
  966. }
  967. .carModelRight {
  968. display: flex;
  969. justify-content: flex-start;
  970. align-items: center;
  971. }
  972. .contlineRight {
  973. color: #333333;
  974. line-height: 40rpx;
  975. width: 400rpx;
  976. text-align: right;
  977. }
  978. .contlineRightInput {
  979. color: #333333;
  980. text-align: left;
  981. font-size: 28rpx;
  982. min-height: 182rpx;
  983. width: 400rpx;
  984. }
  985. .contlineRightJt {
  986. width: 30rpx;
  987. height: 30rpx;
  988. }
  989. .tuiBtns {
  990. display: flex;
  991. padding: 40rpx 20rpx 10rpx;
  992. }
  993. .btn {
  994. width: 288rpx;
  995. height: 98rpx;
  996. background: #F4F5F7;
  997. border-radius: 10rpx;
  998. margin-right: 22rpx;
  999. font-size: 30rpx;
  1000. font-weight: 500;
  1001. color: #3C3C3C;
  1002. line-height: 98rpx;
  1003. text-align: center;
  1004. }
  1005. .btn2 {
  1006. width: 288rpx;
  1007. height: 98rpx;
  1008. background: #3F90F7;
  1009. border-radius: 10rpx;
  1010. font-size: 30rpx;
  1011. font-weight: 500;
  1012. color: #FFFFFF;
  1013. line-height: 98rpx;
  1014. text-align: center;
  1015. }
  1016. </style>