paintOrderDetail.vue 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827
  1. <template>
  2. <view class="box">
  3. <!-- 自定义导航 -->
  4. <!-- <view class="zdyNavBox">
  5. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  6. <view class="zdyNav">
  7. <view class="zdyNavLeft">
  8. <image src="../../../static/img/nav_icon_back.png" mode="aspectFit" class="backImg" @click="goback"></image>
  9. <image src="../../../static/img/nav_icon_home.png" mode="" class="homeImg" @click="gohome"></image>
  10. </view>
  11. <view class="zdyNavTitle">订单详情</view>
  12. <view style="width: 100px;"></view>
  13. </view>
  14. </view>
  15. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  16. <view style="height: 44px;"></view> -->
  17. <homenav :iStatusBarHeight="iStatusBarHeight" :title="'订单详情'" :cj="3"></homenav>
  18. <view class="shuaxin" v-if="orderData.data.sheetState == 1 &&sx" @click="shuaxinFn">
  19. 如果支付状态未及时更新,请点击 <span style="color: #3F90F7;">刷新</span>
  20. </view>
  21. <view class="topBox">
  22. <view class="top" >
  23. <view class="orderState">
  24. <view class="SheetState" v-if="orderData.data.sheetState == 1">待付款</view>
  25. <view class="SheetState" v-if="orderData.data.sheetState == 2">待服务</view>
  26. <view class="SheetState" v-if="orderData.data.sheetState == 3">已完成</view>
  27. <view class="SheetState" v-if="orderData.data.sheetState == 4">已取消</view>
  28. </view>
  29. </view>
  30. </view>
  31. <!-- 店铺信息 -->
  32. <view class="shopBox">
  33. <image src="../../../static/img/icon_store.png" mode="" class="shopBoximg"></image>
  34. <view class="shopCont">
  35. <view class="shopName">{{orderData.shopInfo.shopName}}</view>
  36. <view class="Address">
  37. {{orderData.shopInfo.provinceName}}{{orderData.shopInfo.cityName}}{{orderData.shopInfo.areaName}}{{orderData.shopInfo.address}}
  38. </view>
  39. </view>
  40. <view class="shopRightBox" @click="map">
  41. <image src="../../../static/img/icon_ditu.png" mode="" class="shopRightImg"></image>
  42. <view class="shopRihgtTxt">地图</view>
  43. </view>
  44. <view class="shopsx"></view>
  45. <view class="shopRightBox" @click="call">
  46. <image src="../../../static/img/icon_phone.png" mode="" class="shopRightImg"></image>
  47. <view class="shopRihgtTxt">电话</view>
  48. </view>
  49. </view>
  50. <!-- 订单内容 -->
  51. <view class="information">
  52. <view class="detailedTitle detailedTitle2">订单内容</view>
  53. <view style="padding-bottom: 15rpx;" v-if="orderData.openSheetDetail.length>0" v-for="(item,index) in orderData.openSheetDetail" :key="index">
  54. <view class="informationLine2">
  55. <view class="goodsName">{{item.itemName}}</view>
  56. <view class="salePrice"><span class="informationNum">¥</span>{{item.salePrice}}</view>
  57. </view>
  58. </view>
  59. <!-- <view v-if="orderData.data.sheetState != 1 && orderData.data.sheetState != 4" class="line"></view> -->
  60. <view v-if="orderData.data.sheetState != 1 && orderData.data.sheetState != 4">
  61. <!-- <view class="goodsName2">
  62. 券码信息({{quanMaList.length?quanMaList.length:0}}张可用)
  63. </view>
  64. <view class="detailedLineBox" v-for="(v,index) in orderData.OpenSheetQRCode">
  65. <view class="detailedLine">
  66. <view v-if="v.writeoffState==1" class="detailedName">
  67. <view class="redPoint"></view>
  68. <view class="code">{{v.qrCode}}</view>
  69. <view class="quanState">待使用</view>
  70. </view>
  71. <view v-if="v.writeoffState==3" class="detailedName">
  72. <view class="redPoint"></view>
  73. <view class="code old" >{{v.qrCode}}</view>
  74. <view class="quanState2">已使用</view>
  75. </view>
  76. <image src="../../../static/img/icon_erweima.png" mode="" style="width: 36rpx;height: 36rpx;"
  77. v-if="v.writeoffState==1" @click="isShowMaSHow(index)"></image>
  78. </view>
  79. <view class="writeoffLineBox" v-if="v.writeoffState==3">
  80. <view class="writeoffLine">
  81. <view class="writeoffLineTxt">核销时间:{{v.writeoffTime}}</view>
  82. <view class="writeoffLineTxt">核销人:{{v.writeoffName}}</view>
  83. </view>
  84. <view class="writeoffLine">
  85. <view class="writeoffLineTxt">核销门店:{{v.writeoffShopName?v.writeoffShopName:''}}</view>
  86. </view>
  87. </view>
  88. </view> -->
  89. <view class="newCodeBox" v-if="sheetQRCodeList1.length>0" >
  90. <view class="newQrcode" >
  91. <swiper class="swiper" style="height: 400rpx;" circular :current='swiperIndex' :autoplay="false" :indicator-dots="true" indicator-color="#CCCCCC" indicator-active-color="#EC0F0A">
  92. <swiper-item v-for="(item,index) in sheetQRCodeList1" style="height: 400rpx;">
  93. <view class="swiper-item">
  94. <tki-qrcode cid="qrcode1" ref="qrcode" :val="item.qrCode" :size="300" :unit="unit"
  95. :pdground="pdground" :icon="icon" :iconSize="iconsize" :lv="lv" :onval="onval"
  96. :loadMake="loadMake" :usingComponents="true" @result="qrR" />
  97. </view>
  98. </swiper-item>
  99. </swiper>
  100. </view>
  101. <view class="newQrcodeTs" @click="qmshowFn">
  102. 待使用<span>{{orderData.unWriteoff}}</span>份券码
  103. <image src="../../../static/img2/jt1.png" mode="" class="jtImg1 dsyjt"></image>
  104. </view>
  105. </view>
  106. </view>
  107. </view>
  108. <view style="padding-left: 24rpx;padding-right: 24rpx;" v-if="orderData.writeoff!=0||orderData.refund!=0">
  109. <view class="ysyBox">
  110. <view class="ysyLeft" style="font-weight: 500;color: #222222;">
  111. <span v-if="orderData.writeoff!=0">已使用({{orderData.writeoff}})</span>
  112. <span v-if="orderData.writeoff!=0&&orderData.refund!=0">·</span>
  113. <span v-if="orderData.refund!=0">退款({{orderData.refund}})</span>
  114. </view>
  115. <view class="ysyRgiht" @click="sheetQRCode">
  116. <span style="color: #9A9A9A;padding-right: 16rpx;">查看详情</span>
  117. <image src="../../../static/img2/jt1.png" mode="" class="jtImg1"></image>
  118. </view>
  119. </view>
  120. </view>
  121. <!-- 实付款 -->
  122. <view class="money">
  123. <view class="informationNum">实付款:</view>
  124. <view class="informationNum" style="color: #EC0F0A;font-weight: bold;">¥{{orderData.data.realMoney}}</view>
  125. </view>
  126. <!-- 订单信息 -->
  127. <view class="information">
  128. <!-- <view class="detailedTitle">订单信息</view> -->
  129. <view class="informationLine">
  130. <view class="informationTxt">车牌号:</view>
  131. <view class="informationNum">{{orderData.data.plateNumber}}</view>
  132. </view>
  133. <view class="informationLine">
  134. <view class="informationTxt">车型:</view>
  135. <view class="informationNum" style="width: 480rpx;">{{orderData.data.carModel}}</view>
  136. </view>
  137. <view class="informationLine">
  138. <view class="informationTxt">联系人:</view>
  139. <view class="informationNum">{{orderData.data.customerName}}</view>
  140. </view>
  141. <view class="informationLine">
  142. <view class="informationTxt">手机号:</view>
  143. <view class="informationNum">{{orderData.data.mobilePhone}}</view>
  144. </view>
  145. <view class="informationLine">
  146. <view class="informationTxt">预约时间:</view>
  147. <view class="informationNum">{{orderData.data.hTime}}</view>
  148. </view>
  149. <view class="informationLine">
  150. <view class="informationTxt">订单单号:</view>
  151. <view class="informationNum">{{orderData.data.code}}<span class="codeCopy"
  152. @click="copy(orderData.data.code)">复制</span></view>
  153. </view>
  154. <view class="informationLine">
  155. <view class="informationTxt">下单人:</view>
  156. <view class="informationNum">{{orderData.data.userMobilePhone}}</view>
  157. </view>
  158. <view class="informationLine">
  159. <view class="informationTxt">下单时间:</view>
  160. <view class="informationNum">{{orderData.data.createTime}}</view>
  161. </view>
  162. <view class="informationLine NoBorder">
  163. <view class="informationTxt">订单类型:</view>
  164. <view class="informationNum" style="width: 480rpx;">钣喷</view>
  165. </view>
  166. </view>
  167. <!-- 支付信息 -->
  168. <view class="information">
  169. <!-- <view class="detailedTitle">支付信息</view> -->
  170. <view class="informationLine">
  171. <view class="informationTxt">支付状态:</view>
  172. <view class="informationNum" v-if="orderData.data.payState==1">未支付</view>
  173. <view class="informationNum" v-if="orderData.data.payState==2">已支付</view>
  174. </view>
  175. <view class="informationLine">
  176. <view class="informationTxt">支付方式:</view>
  177. <view class="informationNum" v-if="orderData.data.payType==1">在线支付</view>
  178. <view class="informationNum" v-if="orderData.data.payType==2">线下支付</view>
  179. </view>
  180. <view class="informationLine NoBorder">
  181. <view class="informationTxt">支付时间:</view>
  182. <view class="informationNum">{{orderData.data.payTime?orderData.data.payTime:'-'}}</view>
  183. </view>
  184. </view>
  185. <!-- 核销信息 -->
  186. <view class="information writeoffXx" v-if="orderData.data.sheetState == 3">
  187. <!-- <view class="detailedTitle">核销信息</view> -->
  188. <view class="informationLine">
  189. <view class="informationTxt">核销状态:</view>
  190. <view class="informationNum" v-if="orderData.data.writeoffState==1">未核销</view>
  191. <view class="informationNum" v-if="orderData.data.writeoffState==2">部分核销</view>
  192. <view class="informationNum" v-if="orderData.data.writeoffState==3">已核销</view>
  193. </view>
  194. <view class="informationLine">
  195. <view class="informationTxt">核销时间:</view>
  196. <view class="informationNum">{{orderData.data.writeoffTime?orderData.data.writeoffTime:'-'}} {{orderData.data.writeoffName}}</view>
  197. </view>
  198. <view class="informationLine NoBorder">
  199. <view class="informationTxt">核销门店:</view>
  200. <view class="informationNum">{{orderData.data.writeoffShopName?orderData.data.writeoffShopName:'-'}}</view>
  201. </view>
  202. </view>
  203. <view style="height: 50rpx;background-color: #F4F5F7;"></view>
  204. <view class="bottom" v-if="orderData.data.sheetState == 1">
  205. <view class="cancel" @click="cancelBespeak">取消订单</view>
  206. <view class="defer" @click="pay">立即支付</view>
  207. <!-- :style="{border:'1rpx solid #'+themeColor,color:'#'+themeColor}" -->
  208. </view>
  209. <view class="bottom" v-if="orderData.data.sheetState == 2||orderData.data.sheetState == 5">
  210. <view class="cancel" @click="cancelOrder" v-if="orderData.data.payState==2">退款</view>
  211. <view class="cancel" @click="cancelBespeak" v-else>取消订单</view>
  212. </view>
  213. <!-- 券码 -->
  214. <view class="maBox" v-if="isShowMa==true" @click="isShowMaHide">
  215. <view class="querenMa">
  216. <view class="maTop">
  217. <view class="maTitle">请到店出示券码即可开始服务</view>
  218. <image @click="isShowMaHide" src="../../../static/img/icon_delete.png" mode=""
  219. style="width: 26rpx;height: 26rpx;margin-left: 10rpx;"></image>
  220. </view>
  221. <swiper class="swiper" circular :current='swiperIndex' :autoplay="false" :indicator-dots="true" indicator-color="#CCCCCC" indicator-active-color="#EC0F0A">
  222. <swiper-item v-for="(item,index) in quanMaList">
  223. <view class="swiper-item">
  224. <view class="maCode">{{item}}</view>
  225. <view class="maBoximg">
  226. <tki-qrcode cid="qrcode1" ref="qrcode" :val="item" :size="400" :unit="unit"
  227. :pdground="pdground" :icon="icon" :iconSize="iconsize" :lv="lv" :onval="onval"
  228. :loadMake="loadMake" :usingComponents="true" @result="qrR" />
  229. </view>
  230. </view>
  231. </swiper-item>
  232. </swiper>
  233. </view>
  234. </view>
  235. <!-- 手机号授权 -->
  236. <view class="authorizBox" v-if="authorizShow" @click="authorizShow=false">
  237. <view class="authorizCont" @click.stop="">
  238. <view class="authorizName">{{wxOpenData.miniAppName}}</view>
  239. <view class="authorizMs">未注册的手机号登录后将自动创建会员账号,如果您不同意授权获取手机号,会影响您使用我们的产品和服务。</view>
  240. <button class="authorizContbutton" type="default" open-type="getPhoneNumber" @getphonenumber="decryptPhoneNumber">授权</button>
  241. </view>
  242. <view style="text-align: center;padding-top: 56rpx;">
  243. <image src="../../../static/timg/icon_guanbi@2x.png" mode="" class="authorizCloseImg"></image>
  244. </view>
  245. </view>
  246. <!-- 退款原因 -->
  247. <view class="tuikuanBox" v-if="isShowTui==true">
  248. <view class="tuikuan">
  249. <view class="tuiTop">
  250. <view class="tuiTitle">退款</view>
  251. <image @click="isShowTuiHide" src="../../../static/img/icon_delete.png" mode=""
  252. style="width: 26rpx; height: 26rpx;"></image>
  253. </view>
  254. <view class="contLine">
  255. <view class="contlineLeft">
  256. <image src="../../static/img/icon_star.png" mode="" class="star"></image>
  257. 退款原因
  258. </view>
  259. <view class="contlineRight carModelRight" @click="">
  260. <picker class="carModel" @change="bindChange" mode="selector" :value="index"
  261. :range="tuicauseList" range-key="contents">
  262. <view class="uni-input">{{tuicauseList[index].contents}}</view>
  263. <!-- <view class="uni-input noColor" v-else>请选择</view> -->
  264. </picker>
  265. <image src="../../static/img/little_rightArrow.png" mode="" class="contlineRightJt"></image>
  266. </view>
  267. </view>
  268. <view class="contLine">
  269. <view class="contlineLeft">
  270. <image src="../../static/img/icon_star.png" mode="" class="star"></image>
  271. 退款金额
  272. </view>
  273. <view class="contlineRight carModelRight" @click="cktime">
  274. <span class="carModel">{{orderData.data.realMoney}}</span>
  275. </view>
  276. </view>
  277. <view class="contLine">
  278. <view class="contlineLeft">
  279. <image src="" mode="" class="star"></image>
  280. 补充描述
  281. </view>
  282. <view class="contlineRight">
  283. <textarea placeholder-style="color:#999999" placeholder="请输入" v-model="tuikuanContent"
  284. class="contlineRightInput" maxlength="-1" auto-height="true" @confirm="feedDone" />
  285. </view>
  286. </view>
  287. <view class="tuiBtns">
  288. <view class="btn" @click="isShowTuiHide">取消</view>
  289. <view class="btn2" @click="goTui">确认退款</view>
  290. </view>
  291. </view>
  292. </view>
  293. <view class="tkBox" v-if="qmShow">
  294. <view class="tkContBox">
  295. <view class="tkTop">
  296. <view style="width: 22rpx;"></view>
  297. <view class="tkTitle">券码信息({{orderData.unWriteoff}})</view>
  298. <image @click="qmHide" src="../../../static/img2/chahao.png" mode="" class="chahaoIMg"></image>
  299. </view>
  300. <view class="tkLineBox">
  301. <view class="tkLine" v-for="(item,index) in sheetQRCodeList1">
  302. <view class="tkLineLeft">
  303. <span style="color: #9A9A9A;">券码</span>
  304. <span style="color: #222222;padding-left: 66rpx;">{{item.qrCode}}</span>
  305. </view>
  306. <view class="tkLineRight" style="color: #576B95;" @click="copy(item.qrCode)">复制</view>
  307. </view>
  308. </view>
  309. </view>
  310. </view>
  311. <view class="tkBox" v-if="syShow">
  312. <view class="tkContBox2">
  313. <view class="tkTop">
  314. <view style="width: 22rpx;"></view>
  315. <view class="tkTitle">详情</view>
  316. <image @click="syHide" src="../../../static/img2/chahao.png" mode="" class="chahaoIMg"></image>
  317. </view>
  318. <view class="tklineBox2">
  319. <view class="tkline2" v-for="(item,index) in sheetQRCodeList">
  320. <view class="tklineTop2">
  321. <view class="tkZt">
  322. <span v-if="item.orderType==3||item.orderType==1">已使用</span>
  323. <span v-if="item.orderType==2">未使用</span>
  324. <span v-if="item.refundState==0"></span>
  325. <span v-if="item.refundState==1">·退款中</span>
  326. <span v-if="item.refundState==2">·退款成功</span>
  327. <span v-if="item.refundState==3">·退款拒绝</span>
  328. <span v-if="item.refundState==4">·退款失败</span>
  329. </view>
  330. <view class="tkSeeD" @click="refundDetail(item)" v-if="item.orderType!=1">
  331. <span>退款详情</span>
  332. <image src="../../../static/img2/jt1.png" mode="" class="jtImg1"></image>
  333. </view>
  334. <view class="tkSeeD" @click="goSh(item)" v-if="item.orderType==1">
  335. <span>申请售后</span>
  336. <image src="../../../static/img2/jt1.png" mode="" class="jtImg1"></image>
  337. </view>
  338. </view>
  339. <view class="tkRow">
  340. <view class="tlRowLeft" v-if="item.orderType==3||item.orderType==1">使用份数</view>
  341. <view class="tlRowLeft" v-else>退款份数</view>
  342. <view style="color: #222222;" v-if="item.orderType==3||item.orderType==1">1份</view>
  343. <view style="color: #222222;" v-else>{{item.couponCount}}份</view>
  344. </view>
  345. <view class="tkRow" v-if="item.orderType==3||item.orderType==1">
  346. <view class="tlRowLeft">消费门店</view>
  347. <view style="color: #222222;">{{item.writeoffShopName?item.writeoffShopName:''}}</view>
  348. </view>
  349. <view class="tkRow" v-if="item.orderType==3||item.orderType==1">
  350. <view class="tlRowLeft">消费时间</view>
  351. <view style="color: #222222;">{{item.writeoffTime?item.writeoffTime:''}}</view>
  352. </view>
  353. <view class="tkRow" v-if="item.orderType==1">
  354. <view class="tlRowLeft">券&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;号</view>
  355. <view style="color: #222222;" class="xiahuaxian">{{item.qrCode}}</view>
  356. </view>
  357. <view class="tkRow" v-if="item.orderType==3">
  358. <view class="tlRowLeft">券&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;号</view>
  359. <view style="color: #222222;" class="xiahuaxian">{{item.couponCode}}</view>
  360. </view>
  361. <view class="tkRow" v-if="item.orderType==2">
  362. <view class="tlRowLeft">退款金额</view>
  363. <view style="color: #222222;">{{item.money?item.money:''}}</view>
  364. </view>
  365. <view class="tkRow" v-if="item.orderType==2">
  366. <view class="tlRowLeft">退款方式</view>
  367. <view style="color: #222222;">原路返回</view>
  368. </view>
  369. <view class="tkRow" v-if="item.orderType==2">
  370. <view class="tlRowLeft">到账时间</view>
  371. <view style="color: #222222;">{{item.refundTime?item.refundTime:''}}</view>
  372. </view>
  373. <view class="tkRow" v-if="item.orderType==2">
  374. <view class="tlRowLeft">券&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;号</view>
  375. <view style="color: #222222;" class="xiahuaxian">{{item.couponCode}}</view>
  376. </view>
  377. </view>
  378. <nodata v-if="sheetQRCodeList.length==0"></nodata>
  379. </view>
  380. </view>
  381. </view>
  382. <view class="tkBox" v-if="xsShow">
  383. <view class="tkContBox">
  384. <view class="tkTop">
  385. <view style="width: 22rpx;"></view>
  386. <view class="tkTitle">申请售后</view>
  387. <image @click="xsHide" src="../../../static/img2/chahao.png" mode="" class="chahaoIMg"></image>
  388. </view>
  389. <view class="zxSj">
  390. <view class="zxSjleft">
  391. <view class="zxTitle">咨询商家</view>
  392. <view class="zxTitle2">联系商家,提高退款效率</view>
  393. </view>
  394. <view class="zxSjRgiht" @click="call">
  395. <image src="/static/timg/wgcall.png" mode="" class="zxCallImg"></image>
  396. </view>
  397. </view>
  398. <view class="zkRefund" @click="goshFn">
  399. <span>已与商家协商一致,发起退款</span>
  400. <image src="../../../static/img2/jt1.png" mode="" class="jtImg1"></image>
  401. </view>
  402. </view>
  403. </view>
  404. </view>
  405. </template>
  406. <script>
  407. import tkiQrcode from "@/components/tki-qrcode/tki-qrcode.vue"
  408. import homenav from "@/components/homenav/nav.vue"
  409. import nodata from '@/components/nodata/nodata.vue'
  410. export default {
  411. components: {
  412. tkiQrcode,homenav,nodata
  413. },
  414. data() {
  415. return {
  416. id: '',
  417. iStatusBarHeight:'',
  418. orderData: '',
  419. onval: true, // val值变化时自动重新生成二维码
  420. loadMake: true, // 组件加载完成后自动生成二维码
  421. size: 500,
  422. qrcodeShow: false,
  423. qrcodeTop: '-100vh',
  424. qrcodeTopVal: '',
  425. ifShow: false,
  426. val: '二维码', // 要生成的二维码值
  427. unit: 'upx', // 单位
  428. background: '#b4e9e2', // 背景色
  429. foreground: '#309286', // 前景色
  430. pdground: '#262637', // 角标色
  431. icon: '', // 二维码图标
  432. iconsize: 40, // 二维码图标大小
  433. lv: 3, // 二维码容错级别 , 一般不用设置,默认就行
  434. src: '', // 二维码生成后的图片地址或base64
  435. isShowMa: false,
  436. quanMaList:[],
  437. themeColor:'',
  438. authorizShow:false,
  439. userInfo:'',
  440. ext:'',
  441. wxOpenData:'',
  442. isShowTui:false,
  443. index:0,
  444. tuicauseList: [],
  445. tuikuanContent: '',
  446. swiperIndex:0,
  447. sxNum:'',
  448. sx:'',
  449. qmShow:false,
  450. syShow:false,
  451. sheetQRCodeList:[],
  452. xsShow:false,
  453. sheetQRCodeList1:'',
  454. shItem:'',
  455. }
  456. },
  457. onLoad(opt) {
  458. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  459. this.id = opt.id
  460. this.themeColor = uni.getStorageSync("themeColor");
  461. this.userInfo=this.$store.state.userInfo;
  462. this.ext=this.$common.getExtStoreId();
  463. if(this.userInfo){
  464. if (this.id) {
  465. this.getData();
  466. this.getTuiKuanData()
  467. }
  468. }else{
  469. this.$common.automaticlogin().then(val => {
  470. this.userInfo=this.$store.state.userInfo;
  471. this.wxOpenData=this.$store.state.wxOpenData;
  472. this.themeColor = uni.getStorageSync("themeColor");
  473. if (this.id) {
  474. this.getData();
  475. this.getTuiKuanData()
  476. }
  477. if(!this.userInfo){
  478. this.authorizShow=true
  479. }
  480. })
  481. }
  482. this.sx=opt.sx
  483. },
  484. methods: {
  485. getsheetQRCode(){
  486. this.$http('openOrderManagement/sheetQRCodeList', {
  487. type:1,
  488. sheetID: this.id,
  489. }, 'GET').then(res => {
  490. })
  491. },
  492. sheetQRCode(){
  493. uni.showLoading({
  494. title: '加载中'
  495. })
  496. this.$http('openOrderManagement/sheetQRCodeList', {
  497. type:2,
  498. sheetID: this.id,
  499. }, 'GET').then(res => {
  500. uni.hideLoading();
  501. this.syShow=true;
  502. this.sheetQRCodeList=res.data
  503. })
  504. },
  505. qmshowFn(){
  506. uni.showLoading({
  507. title: '加载中'
  508. })
  509. this.$http('openOrderManagement/sheetQRCodeList', {
  510. type:1,
  511. sheetID: this.id,
  512. }, 'GET').then(res => {
  513. uni.hideLoading();
  514. this.qmShow=true;
  515. this.sheetQRCodeList1=res.data
  516. })
  517. },
  518. qmHide(){
  519. this.qmShow=false
  520. },
  521. syHide(){
  522. this.syShow=false;
  523. },
  524. shuaxinFn(){
  525. this.sxNum=1
  526. this.getData();
  527. //this.getTuiKuanData()
  528. },
  529. cancelOrder(){
  530. //this.isShowTui=true;
  531. uni.navigateTo({
  532. url:'../../subPack/refund?type=1&id='+this.id
  533. })
  534. },
  535. goSh(item){
  536. this.shItem=item
  537. var that=this
  538. uni.setStorage({
  539. key: 'shData',
  540. data: item,
  541. success: function () {
  542. that.xsShow=true
  543. }
  544. });
  545. },
  546. goshFn(){
  547. uni.navigateTo({
  548. url:'../../subPack/refund?type=2&id='+this.id
  549. })
  550. },
  551. refundDetail(item){
  552. uni.navigateTo({
  553. url:'../../subPack/refundDetail?id='+item.id
  554. })
  555. },
  556. xsHide(){
  557. this.xsShow=false
  558. },
  559. shuaxinFn(){
  560. this.sxNum=1
  561. this.getData();
  562. //this.getTuiKuanData()
  563. },
  564. /* cancelOrder(){
  565. this.isShowTui=true;
  566. }, */
  567. goTui(){
  568. var that=this;
  569. uni.showLoading({
  570. title: '加载中'
  571. })
  572. let yuanyin = this.tuicauseList[this.index].contents
  573. that.$http('openMallOrder/cancelOrder', {
  574. realMoney:that.orderData.data.realMoney,
  575. sheetId: that.id,
  576. refundReason:yuanyin,
  577. refundComment:this.tuikuanContent,
  578. }, 'POST').then(res => {
  579. uni.hideLoading();
  580. // var list = res.data.Items
  581. this.isShowTui=false;
  582. if(res.code==0){
  583. uni.showToast({
  584. title: '取消成功',
  585. icon: 'none',
  586. duration: 2000
  587. });
  588. setTimeout(function() {
  589. that.getData();
  590. }, 1000);
  591. }else{
  592. uni.showToast({
  593. title: res.msg,
  594. icon: 'none',
  595. duration: 3000
  596. });
  597. }
  598. })
  599. },
  600. isShowTuiHide(){
  601. this.isShowTui=false;
  602. },
  603. bindChange(e) {
  604. console.log(e);
  605. this.index = e.detail.value
  606. },
  607. getTuiKuanData() {
  608. console.log("退款原因")
  609. this.$http('openMallOrder/getOpenReason', {
  610. // id: this.id,
  611. }, 'GET').then(res => {
  612. this.tuicauseList = res.data;
  613. })
  614. },
  615. isShowMaSHow(index){
  616. this.swiperIndex=index
  617. this.isShowMa=true
  618. },
  619. isShowMaHide(){
  620. this.isShowMa=false
  621. },
  622. decryptPhoneNumber: function(e) {
  623. console.log(e);
  624. this.code=e.detail.code
  625. this.wxPhoneLogin()
  626. this.authorizShow=false;
  627. },
  628. wxPhoneLogin(){
  629. var that=this;
  630. this.$http('miniApp2/sys/wxPhoneLogin', {
  631. appId:this.ext.appId,
  632. unionId:this.ext.unionId,
  633. code:this.code,
  634. openId:this.wxOpenData.openid
  635. },'POST').then(res => {
  636. var data = res.data;
  637. if(data.loginInfo){
  638. this.userInfo=data.loginInfo.openUser;
  639. this.wxOpenData=data.loginInfo;
  640. this.$store.commit('mutationswxOpenData', data)
  641. this.$store.commit('mutationsuserInfo', this.userInfo)
  642. this.getData()
  643. }
  644. })
  645. },
  646. pay(){
  647. this.$http('openMallOrder/unifiedPay', {
  648. sheetId:this.id
  649. },'POST').then(res => {
  650. if(res.code==0){
  651. this.requestPayment(res.data)
  652. }else{
  653. uni.showToast({
  654. title: res.msg,
  655. icon: 'none',
  656. duration: 3000
  657. });
  658. }
  659. })
  660. },
  661. requestPayment(res){
  662. var payInfo=res;
  663. //console.log(payInfo)
  664. //console.log(String(Date.now()))
  665. var that=this;
  666. uni.requestPayment({
  667. provider: 'wxpay',
  668. //timeStamp: String(Date.now()),
  669. timeStamp: payInfo.timeStamp,
  670. nonceStr: payInfo.nonceStr,
  671. package:payInfo.package,
  672. signType: payInfo.signType,
  673. paySign: payInfo.paySign,
  674. appid:payInfo.appId,
  675. success: function (res) {
  676. console.log('success:' + JSON.stringify(res));
  677. uni.showToast({
  678. title: '支付成功',
  679. icon:'none',
  680. duration: 2000
  681. });
  682. that.getData()
  683. },
  684. fail: function (err) {
  685. console.log(err)
  686. uni.showToast({
  687. title: '支付失败',
  688. icon:'none',
  689. duration: 2000
  690. });
  691. }
  692. });
  693. },
  694. copy(txt) {
  695. uni.setClipboardData({
  696. data: txt,
  697. success: function() {
  698. uni.showToast({
  699. title: '复制成功',
  700. icon: 'none',
  701. duration: 2000
  702. });
  703. }
  704. });
  705. },
  706. upTime() {
  707. uni.showLoading({
  708. title: '加载中'
  709. })
  710. var that = this
  711. this.$http('openreservation/carOwner/updateTimeOfAppointment', {
  712. id: this.id,
  713. shopId: this.orderData.shopInfo.id,
  714. billDate: this.billDate
  715. }, 'POST').then(res => {
  716. uni.hideLoading();
  717. // var list = res.data.Items
  718. var list = res.data
  719. console.log("result+=", res.data);
  720. uni.showToast({
  721. title: '延期成功',
  722. icon: 'none',
  723. duration: 2000
  724. });
  725. setTimeout(function() {
  726. that.getData();
  727. }, 1000);
  728. })
  729. },
  730. cancelBespeak(){
  731. var that = this
  732. uni.showModal({
  733. title: '提示',
  734. content: '是否取消该订单',
  735. cancelText:'否',
  736. confirmText:'是',
  737. success: function (res) {
  738. if (res.confirm) {
  739. uni.showLoading({
  740. title: '加载中'
  741. })
  742. that.$http('openOrderManagement/updateSheetState', {
  743. id: that.id,
  744. }, 'POST').then(res => {
  745. uni.hideLoading();
  746. // var list = res.data.Items
  747. if(res.code==0){
  748. uni.showToast({
  749. title: '取消成功',
  750. icon: 'none',
  751. duration: 2000
  752. });
  753. setTimeout(function() {
  754. that.getData();
  755. }, 1000);
  756. }else{
  757. uni.showToast({
  758. title: res.msg,
  759. icon: 'none',
  760. duration: 3000
  761. });
  762. }
  763. })
  764. } else if (res.cancel) {
  765. }
  766. }
  767. });
  768. },
  769. map() {
  770. console.log("打开地图")
  771. var that = this;
  772. if (!that.orderData.shopInfo.lat || !that.orderData.shopInfo.lng) {
  773. uni.showToast({
  774. title: '该店铺未设置定位',
  775. icon: 'none',
  776. duration: 3000
  777. });
  778. } else {
  779. uni.openLocation({
  780. latitude: Number(that.orderData.shopInfo.lat),
  781. longitude: Number(that.orderData.shopInfo.lng),
  782. name: that.orderData.shopInfo.shopName,
  783. address: that.orderData.shopInfo.provinceName + that.orderData.shopInfo.cityName + that
  784. .orderData.shopInfo.areaName + that.orderData.shopInfo.address,
  785. success: function() {
  786. console.log('success');
  787. },
  788. fail(err) {
  789. console.log(err)
  790. }
  791. });
  792. }
  793. },
  794. call() {
  795. uni.makePhoneCall({
  796. phoneNumber:this.shItem.mobilePhone// this.orderData.shopInfo.mobilePhone
  797. });
  798. },
  799. getData() {
  800. uni.showLoading({
  801. title: '加载中'
  802. });
  803. this.$http('openOrderManagement/queryOpenSheet', {
  804. id: this.id,
  805. }, 'GET').then(res => {
  806. uni.hideLoading();
  807. this.orderData = res.data;
  808. if (this.quanMaList) {
  809. this.quanMaList = [];
  810. }
  811. let maList = this.orderData.OpenSheetQRCode;
  812. if (maList) {
  813. maList.forEach(item =>{
  814. if (item.writeoffState==1) {
  815. this.quanMaList.push(item.qrCode);
  816. }
  817. })
  818. }
  819. if(this.sx&&this.sxNum){
  820. uni.showToast({
  821. title: '刷新成功',
  822. icon: 'none',
  823. duration: 3000
  824. });
  825. }
  826. console.log('可用券码--',this.quanMaList);
  827. })
  828. this.$http('openOrderManagement/sheetQRCodeList', {
  829. type:1,
  830. sheetID: this.id,
  831. }, 'GET').then(res => {
  832. this.sheetQRCodeList1=res.data
  833. })
  834. },
  835. goback() {
  836. uni.navigateBack({
  837. delta: 1
  838. })
  839. },
  840. gohome(){
  841. uni.switchTab({
  842. url:'../../index/index'
  843. })
  844. },
  845. },
  846. onPullDownRefresh() {
  847. this.getData()
  848. setTimeout(function() {
  849. uni.stopPullDownRefresh();
  850. }, 1000);
  851. },
  852. }
  853. </script>
  854. <style scoped>
  855. .box {
  856. min-height: 100vh;
  857. background: #F4F5F7;
  858. padding-bottom: 135rpx;
  859. }
  860. .zdyNavBox{
  861. width: 100vw;
  862. background: #FFFFFF;
  863. position: fixed;
  864. top: 0;
  865. left: 0;
  866. z-index: 9999999;
  867. }
  868. .zdyNav{
  869. height: 44px;
  870. display: flex;
  871. justify-content: space-between;
  872. align-items: center;
  873. }
  874. .backImg{
  875. width: 44rpx;
  876. height: 44rpx;
  877. margin-left: 10rpx;
  878. margin-right: 20rpx;
  879. }
  880. .homeImg{
  881. width: 44rpx;
  882. height: 44rpx;
  883. }
  884. .zdyNavLeft{
  885. display: flex;
  886. align-items: center;
  887. }
  888. .zdyNavTitle{
  889. width: 100vw;
  890. height: 44px;
  891. background: #FFFFFF;
  892. text-align: center;
  893. font-size: 34rpx;
  894. line-height: 44px;
  895. }
  896. .topBox{
  897. padding: 24rpx;
  898. }
  899. .top {
  900. height: 100rpx;
  901. background: #FFFFFF;
  902. border-radius: 11rpx;
  903. text-align: center;
  904. line-height: 100rpx;
  905. font-weight: 500;
  906. font-size: 30rpx;
  907. color: #EC0F0A;
  908. line-height: 100rpx;
  909. }
  910. .orderState {
  911. display: flex;
  912. justify-content: center;
  913. align-items: center;
  914. }
  915. /* .SheetState {
  916. display: flex;
  917. justify-content: center;
  918. font-size: 36rpx;
  919. font-weight: 500;
  920. color: #FFFFFF;
  921. margin-left: 15rpx;
  922. }
  923. */
  924. .timeEditImg {
  925. width: 25rpx;
  926. height: 25rpx;
  927. padding-left: 20rpx;
  928. }
  929. .shopBoximg {
  930. width: 40rpx;
  931. height: 40rpx;
  932. }
  933. .shopRightImg {
  934. width: 44rpx;
  935. height: 45rpx;
  936. }
  937. .shopsx {
  938. width: 1px;
  939. height: 50rpx;
  940. background: #EEEEEE;
  941. margin-top: 30rpx;
  942. margin-left: 28rpx;
  943. }
  944. .shopBox {
  945. display: flex;
  946. padding: 30rpx 20rpx;
  947. margin: 0rpx 24rpx;
  948. /* margin-top: -60rpx; */
  949. background-color: #FFFFFF;
  950. border-radius: 10rpx;
  951. }
  952. .shopCont {
  953. width: 405rpx;
  954. padding-left: 20rpx;
  955. }
  956. .shopName {
  957. font-size: 30rpx;
  958. font-weight: bold;
  959. color: #3C3C3C;
  960. line-height: 42rpx;
  961. }
  962. .Address {
  963. color: #999999;
  964. font-size: 24rpx;
  965. margin-top: 10rpx;
  966. }
  967. .shopRihgtTxt {
  968. color: #999999;
  969. font-size: 24rpx;
  970. }
  971. .shopRightBox {
  972. padding-left: 28rpx;
  973. }
  974. .detailedTitle {
  975. padding: 23rpx 20rpx;
  976. display: flex;
  977. text-align: center;
  978. align-content: flex-start;
  979. border-bottom: 1rpx solid #EEEEEE;
  980. font-size: 30rpx;
  981. font-weight: bold;
  982. color: #3C3C3C;
  983. }
  984. .detailedLine {
  985. display: flex;
  986. padding: 16rpx 20rpx;
  987. justify-content: space-between;
  988. align-items: center;
  989. }
  990. .detailedImg {
  991. width: 120rpx;
  992. height: 120rpx;
  993. border-radius: 10rpx;
  994. }
  995. .detailedName {
  996. display: flex;
  997. align-items: center;
  998. }
  999. .code {
  1000. font-size: 26rpx;
  1001. color: #333333;
  1002. font-weight: bold;
  1003. width: 180rpx
  1004. }
  1005. .old {
  1006. color: #999999;
  1007. font-weight: 400;
  1008. text-decoration: line-through;
  1009. }
  1010. .redPoint {
  1011. width: 10rpx;
  1012. height: 10rpx;
  1013. background: #EC0F0A;
  1014. border-radius: 10rpx;
  1015. margin-right: 10rpx;
  1016. }
  1017. .quanState {
  1018. font-size: 22rpx;
  1019. color: #F19D01;
  1020. padding: 0 10rpx;
  1021. border: 1rpx solid #F19D01;
  1022. border-radius: 4rpx;
  1023. margin-left: 20rpx;
  1024. }
  1025. .quanState2{
  1026. font-size: 22rpx;
  1027. color: #999999;
  1028. padding: 0 10rpx;
  1029. border: 1rpx solid #DDDDDD;
  1030. border-radius: 4rpx;
  1031. margin-left: 20rpx;
  1032. }
  1033. .information {
  1034. background: #FFFFFF;
  1035. border-radius: 10rpx;
  1036. margin: 20rpx 24rpx;
  1037. padding-bottom: 15rpx;
  1038. }
  1039. .information{
  1040. padding: 0 20rpx;
  1041. }
  1042. .informationLine {
  1043. display: flex;
  1044. justify-content: space-between;
  1045. padding:20rpx 0rpx;
  1046. border-bottom: 1px solid #EEEEEE;
  1047. color: #222222;
  1048. }
  1049. .informationLine2 {
  1050. display: flex;
  1051. justify-content: space-between;
  1052. font-size: 26rpx;
  1053. padding: 20rpx 0;
  1054. }
  1055. .salePrice {
  1056. font-size: 26rpx;
  1057. font-weight: 500;
  1058. color: #333333;
  1059. line-height: 45rpx;
  1060. }
  1061. .money {
  1062. background: #FFFFFF;
  1063. border-radius: 10rpx;
  1064. margin: 20rpx 24rpx;
  1065. display: flex;
  1066. justify-content: space-between;
  1067. font-size: 26rpx;
  1068. padding: 30rpx 20rpx;
  1069. }
  1070. .informationTxt {
  1071. width: 190rpx;
  1072. font-size: 26rpx;
  1073. color: #999999;
  1074. }
  1075. .line {
  1076. height: 20rpx;
  1077. background-color: #FFFFFF;
  1078. border-bottom: 1rpx solid #EEEEEE;
  1079. }
  1080. .goodsName {
  1081. width: 80%;
  1082. color: #333333;
  1083. font-size: 26rpx;
  1084. }
  1085. .goodsName2{
  1086. padding: 20rpx 20rpx 15rpx;
  1087. color: #333333;
  1088. font-size: 26rpx;
  1089. }
  1090. .informationNum {
  1091. color: #333333;
  1092. font-size: 26rpx;
  1093. text-align: right;
  1094. }
  1095. .codeCopy {
  1096. width: 77rpx;
  1097. height: 36rpx;
  1098. background: #F4F5F7;
  1099. border-radius: 22rpx;
  1100. font-size: 24rpx;
  1101. color: #333333;
  1102. text-align: center;
  1103. line-height: 33rpx;
  1104. padding: 0 15rpx;
  1105. margin-left: 20rpx;
  1106. }
  1107. .orderBottom {
  1108. width: 750rpx;
  1109. height: 98rpx;
  1110. background: #FFFFFF;
  1111. position: fixed;
  1112. left: 0;
  1113. bottom: 0;
  1114. display: flex;
  1115. justify-content: flex-end;
  1116. }
  1117. .bottom {
  1118. display: flex;
  1119. justify-content: flex-end;
  1120. padding: 20rpx;
  1121. background-color: #FFFFFF;
  1122. /* align-items: center; */
  1123. height: 98rpx;
  1124. width: 100vw;
  1125. position: fixed;
  1126. bottom: 0rpx;
  1127. padding-bottom: constant(safe-area-inset-bottom);
  1128. padding-bottom: env(safe-area-inset-bottom);
  1129. }
  1130. .cancel {
  1131. color: #3C3C3C;
  1132. font-size: 28rpx;
  1133. width: 130rpx;
  1134. height: 56rpx;
  1135. border-radius: 8rpx;
  1136. border: 2rpx solid #DDDDDD;
  1137. text-align: center;
  1138. line-height: 56rpx;
  1139. margin-right: 40rpx;
  1140. }
  1141. .defer {
  1142. color: #EC0F0A;
  1143. font-size: 28rpx;
  1144. width: 130rpx;
  1145. height: 56rpx;
  1146. border-radius: 8rpx;
  1147. border: 2rpx solid #EC0F0A;
  1148. text-align: center;
  1149. line-height: 56rpx;
  1150. margin-right: 40rpx;
  1151. }
  1152. .itemBox {
  1153. margin: 20rpx;
  1154. border-radius: 10rpx;
  1155. border: 2rpx solid #EEEEEE;
  1156. }
  1157. .itemTop {
  1158. padding: 18rpx 20rpx;
  1159. padding-right: 0;
  1160. background-color: #FFEFD5;
  1161. display: flex;
  1162. justify-content: space-between;
  1163. align-content: center;
  1164. }
  1165. .topTitle {
  1166. width: 104rpx;
  1167. font-size: 26rpx;
  1168. color: #333333;
  1169. margin-right: 20rpx;
  1170. text-align: right;
  1171. }
  1172. .leftItem {
  1173. font-size: 26rpx;
  1174. color: #333333;
  1175. margin-right: 20rpx;
  1176. flex-grow: 1;
  1177. /* 隐藏文字显示 ...不换行 */
  1178. overflow: hidden;
  1179. text-overflow: ellipsis;
  1180. white-space: nowrap;
  1181. }
  1182. .itemContent {
  1183. padding: 20rpx;
  1184. padding-right: 0;
  1185. background-color: #FFFFFF;
  1186. display: flex;
  1187. justify-content: space-between;
  1188. align-content: center;
  1189. }
  1190. .maBox {
  1191. width: 100%;
  1192. height: 100vh;
  1193. background: rgba(0, 0, 0, 0.4);
  1194. position: fixed;
  1195. left: 0;
  1196. top: 0;
  1197. z-index: 9999;
  1198. }
  1199. .querenMa {
  1200. width: 578;
  1201. height: 640rpx;
  1202. background: #ffffff;
  1203. margin: 0 86rpx;
  1204. margin-top: 50%;
  1205. border-radius: 24rpx;
  1206. }
  1207. .maTop {
  1208. display: flex;
  1209. justify-content: space-between;
  1210. align-items: center;
  1211. padding: 30rpx 20rpx 15rpx;
  1212. }
  1213. .maTitle {
  1214. color: #666666;
  1215. font-size: 26rpx;
  1216. text-align: center;
  1217. padding-left: 100rpx;
  1218. }
  1219. .swiper{
  1220. width: 100%;
  1221. height: 85%;
  1222. background: #FFFFFF;
  1223. }
  1224. .swiper-item{
  1225. width: 100%;
  1226. height: 100%;
  1227. }
  1228. .maCode {
  1229. font-size: 30rpx;
  1230. font-weight: 500;
  1231. color: #333333;
  1232. line-height: 42rpx;
  1233. margin-bottom: 40rpx;
  1234. text-align: center;
  1235. }
  1236. .maBoximg {
  1237. width: 400rpx;
  1238. height: 400rpx;
  1239. margin-left: 86rpx;
  1240. }
  1241. .authorizBox{
  1242. width: 100vw;
  1243. height: 100vh;
  1244. background: rgba(0, 0, 0, 0.5);
  1245. position: fixed;
  1246. top: 0;
  1247. left: 0;
  1248. }
  1249. .authorizCont{
  1250. margin-top: 30vh;
  1251. width: 564rpx;
  1252. height: 408rpx;
  1253. background: #FFFFFF;
  1254. border-radius: 24rpx;
  1255. margin-left: 93rpx;
  1256. position: relative;
  1257. }
  1258. .authorizCloseImg{
  1259. width: 62rpx;
  1260. height: 62rpx;
  1261. }
  1262. .sqLogoBox{
  1263. width: 180rpx;
  1264. height: 180rpx;
  1265. background: #FFFFFF;
  1266. border-radius: 90rpx;
  1267. text-align: center;
  1268. position: absolute;
  1269. top: -50rpx;
  1270. left: 192rpx;
  1271. }
  1272. .authorizName{
  1273. color: #333333;
  1274. line-height: 42rpx;
  1275. font-size: 30rpx;
  1276. text-align: center;
  1277. padding-top: 58rpx;
  1278. }
  1279. .authorizMs{
  1280. color: #999999;
  1281. line-height: 36rpx;
  1282. font-size: 26rpx;
  1283. width: 452rpx;
  1284. padding-top: 24rpx;
  1285. text-align: center;
  1286. margin-left: 56rpx;
  1287. }
  1288. .authorizContbutton{
  1289. width: 422rpx;
  1290. height: 88rpx;
  1291. background: #EC0F0A;
  1292. border-radius: 44rpx;
  1293. line-height: 88rpx;
  1294. text-align: center;
  1295. font-size:30rpx;
  1296. color: #FFFFFF;
  1297. margin-top: 62rpx;
  1298. margin-left:71rpx;
  1299. }
  1300. .tuikuanBox {
  1301. width: 100%;
  1302. height: 100vh;
  1303. background: rgba(0, 0, 0, 0.4);
  1304. position: fixed;
  1305. left: 0;
  1306. top: 0;
  1307. z-index: 999;
  1308. }
  1309. .tuikuan {
  1310. width: 638rpx;
  1311. height: 720rpx;
  1312. background: #ffffff;
  1313. margin: 0 36rpx;
  1314. margin-top: 50%;
  1315. border-radius: 24rpx;
  1316. padding: 30rpx 20rpx;
  1317. }
  1318. .tuiTop {
  1319. display: flex;
  1320. justify-content: space-between;
  1321. margin-bottom: 36rpx;
  1322. }
  1323. .tuiTitle {
  1324. width: 56rpx;
  1325. height: 40rpx;
  1326. font-size: 28rpx;
  1327. font-weight: 500;
  1328. color: #3C3C3C;
  1329. line-height: 40rpx;
  1330. }
  1331. .contLine {
  1332. display: flex;
  1333. justify-content: space-between;
  1334. font-size: 28rpx;
  1335. padding: 30rpx 0;
  1336. border-bottom: 1px solid #EEEEEE;
  1337. }
  1338. .contlineLeft {
  1339. color: #666666;
  1340. line-height: 40rpx;
  1341. align-items: center;
  1342. }
  1343. .star {
  1344. width: 14rpx;
  1345. height: 14rpx;
  1346. padding-bottom: 5rpx;
  1347. }
  1348. .carModel {
  1349. width: 350rpx;
  1350. text-align: left;
  1351. }
  1352. .noColor {
  1353. color: #CCCCCC;
  1354. }
  1355. .carModelRight {
  1356. display: flex;
  1357. justify-content: flex-start;
  1358. align-items: center;
  1359. }
  1360. .contlineRight {
  1361. color: #333333;
  1362. line-height: 40rpx;
  1363. width: 400rpx;
  1364. text-align: right;
  1365. }
  1366. .contlineRightInput {
  1367. color: #333333;
  1368. text-align: left;
  1369. font-size: 28rpx;
  1370. min-height: 182rpx;
  1371. width: 400rpx;
  1372. }
  1373. .contlineRightJt {
  1374. width: 30rpx;
  1375. height: 30rpx;
  1376. }
  1377. .tuiBtns {
  1378. display: flex;justify-content: space-around;
  1379. padding: 40rpx 20rpx 10rpx;
  1380. }
  1381. .btn {
  1382. width: 250rpx;
  1383. height: 70rpx;
  1384. background: #F4F5F7;
  1385. border-radius: 10rpx;
  1386. font-size: 28rpx;
  1387. font-weight: 500;
  1388. color: #3C3C3C;
  1389. line-height: 70rpx;
  1390. text-align: center;
  1391. }
  1392. .btn2 {
  1393. width: 250rpx;
  1394. height: 70rpx;
  1395. background: #3F90F7;
  1396. border-radius: 10rpx;
  1397. font-size: 28rpx;
  1398. font-weight: 500;
  1399. color: #FFFFFF;
  1400. line-height: 70rpx;
  1401. text-align: center;
  1402. }
  1403. .writeoffLine{
  1404. display: flex;justify-content: space-between;
  1405. color: #999999;font-size: 24rpx;
  1406. line-height: 33rpx;padding-top: 8rpx;
  1407. }
  1408. .writeoffLineBox{
  1409. padding: 0 20rpx;
  1410. }
  1411. .detailedLineBox .detailedLine{
  1412. padding-bottom: 0rpx;
  1413. }
  1414. .writeoffXx .informationNum{
  1415. width: 500rpx;
  1416. }
  1417. .detailedLineBox{
  1418. padding-bottom: 10rpx;
  1419. }
  1420. .shuaxin{
  1421. color: #333333;
  1422. height: 72rpx;
  1423. background: #FDF7EB;
  1424. line-height: 72rpx;
  1425. padding-left: 24rpx;
  1426. font-size: 26rpx;
  1427. }
  1428. .newQrcode{
  1429. text-align: center;padding-top: 30rpx;
  1430. }
  1431. .newQrcodeTs{
  1432. font-size: 24rpx;
  1433. color: #222222;
  1434. }
  1435. .jtImg1{
  1436. width: 10rpx;height: 20rpx;
  1437. }
  1438. .newQrcodeTs {
  1439. text-align: center;
  1440. padding-top: 10rpx;
  1441. padding-bottom: 30rpx;
  1442. }
  1443. .ysyBox{
  1444. background: #ffffff;
  1445. border-radius: 16rpx;
  1446. display: flex;
  1447. justify-content: space-between;
  1448. font-size: 26rpx;
  1449. padding: 30rpx 24rpx;
  1450. }
  1451. .copyIcon{
  1452. width: 30rpx;height: 30rpx;
  1453. margin-top: 4rpx;margin-right: 6rpx;
  1454. }
  1455. .newQrcode .swiper-item{
  1456. text-align: center;
  1457. }
  1458. .chahaoIMg{
  1459. width: 22rpx;height: 22rpx;
  1460. margin-top: 4rpx;
  1461. }
  1462. .tkBox{
  1463. position: fixed;
  1464. background: rgba(0, 0, 0, 0.4);
  1465. width: 100%;height: 100%;
  1466. top: 0;
  1467. left: 0;
  1468. }
  1469. .tkContBox{
  1470. width: 750rpx;
  1471. height: 483rpx;
  1472. background: #F8F8F8;
  1473. border-radius: 28rpx 28rpx 0rpx 0rpx;
  1474. position: absolute;
  1475. left: 0;
  1476. bottom: 0;
  1477. padding-bottom: constant(safe-area-inset-bottom);
  1478. padding-bottom: env(safe-area-inset-bottom);
  1479. }
  1480. .tkContBox2{
  1481. width: 750rpx;
  1482. height: 60vh;
  1483. background: #F8F8F8;
  1484. border-radius: 28rpx 28rpx 0rpx 0rpx;
  1485. position: absolute;
  1486. left: 0;
  1487. bottom: 0;
  1488. padding-bottom: constant(safe-area-inset-bottom);
  1489. padding-bottom: env(safe-area-inset-bottom);
  1490. }
  1491. .tkTop{
  1492. display: flex;justify-content: space-between;
  1493. padding: 25rpx 40rpx 40rpx 40rpx;
  1494. font-weight: 500;
  1495. font-size: 28rpx;
  1496. color: #222222;
  1497. }
  1498. .tkLineBox{
  1499. background: #FFFFFF;
  1500. border-radius: 16rpx;
  1501. margin: 0 33rpx;
  1502. height: 380rpx;
  1503. overflow: scroll;
  1504. }
  1505. .tkLine{
  1506. display: flex;justify-content: space-between;
  1507. font-size: 26rpx;
  1508. padding: 24rpx 30rpx;
  1509. border-bottom: 1px solid #EEEEEE;
  1510. }
  1511. .tkLine:last-child {
  1512. border:none;
  1513. }
  1514. .tklineBox2{
  1515. padding:0 24rpx;
  1516. height: 55vh;
  1517. overflow: scroll;
  1518. }
  1519. .tkline2{
  1520. background: #FFFFFF;
  1521. border-radius: 16rpx;
  1522. padding: 32rpx 24rpx;
  1523. margin-bottom: 20rpx;
  1524. }
  1525. .tklineTop2{
  1526. display: flex;justify-content: space-between;
  1527. }
  1528. .tkZt{
  1529. font-weight: 500;
  1530. font-size: 28rpx;
  1531. color: #222222;
  1532. line-height: 40rpx;
  1533. }
  1534. .tkSeeD{
  1535. font-weight: 400;
  1536. font-size: 26rpx;
  1537. color: #9A9A9A;
  1538. line-height: 40rpx;
  1539. }
  1540. .tkSeeD .jtImg1{
  1541. margin-left: 4rpx;
  1542. }
  1543. .tkRow{
  1544. display: flex;
  1545. font-size: 26rpx;
  1546. padding-top: 18rpx;
  1547. }
  1548. .tlRowLeft{
  1549. color: #9A9A9A;width: 140rpx;
  1550. }
  1551. .zxSj{
  1552. background: #FFFFFF;
  1553. border-radius: 16rpx;
  1554. margin: 0 24rpx;
  1555. display: flex;justify-content: space-between;
  1556. }
  1557. .zxCallImg{
  1558. width: 34rpx;height: 34rpx;
  1559. }
  1560. .zxTitle{
  1561. font-weight: 500;
  1562. font-size: 28rpx;
  1563. color: #222222;
  1564. line-height: 40rpx;
  1565. }
  1566. .zxTitle2{
  1567. font-size: 24rpx;
  1568. color: #9A9A9A;
  1569. padding-top: 12rpx;
  1570. }
  1571. .zxSjleft{
  1572. padding: 32rpx;
  1573. }
  1574. .zxSjRgiht{
  1575. width: 79rpx;
  1576. height: 79rpx;
  1577. border: 2rpx solid #EEEEEE;
  1578. border-radius: 50%;
  1579. display: flex;
  1580. justify-content: center;
  1581. align-items: center;
  1582. margin-top: 32rpx;
  1583. margin-right: 32rpx;
  1584. }
  1585. .zkRefund{
  1586. display: flex;justify-content: center;
  1587. font-size: 24rpx;
  1588. color: #9A9A9A;
  1589. padding-top: 30rpx;
  1590. }
  1591. .zkRefund .jtImg1{
  1592. margin-left: 6rpx;margin-top: 6rpx;
  1593. }
  1594. .detailedTitle2{
  1595. padding: 23rpx 0;
  1596. }
  1597. .dsyjt{
  1598. margin-left: 10rpx;margin-top: 2rpx;
  1599. }
  1600. .NoBorder{
  1601. border: none;
  1602. }
  1603. .xiahuaxian{
  1604. text-decoration: line-through;
  1605. }
  1606. </style>