mallOrderDetail.vue 46 KB

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