activityOrderDetail.vue 55 KB

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