rescueOrderOrderDetail.vue 37 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624
  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="4"></homenav>
  18. <view class="top" :style="{background:'#'+themeColor}">
  19. <view class="orderState">
  20. <image src="../../static/img/icon_order_def.png" mode="" style="width: 44rpx;height: 44rpx;"></image>
  21. <view class="SheetState" v-if="orderData.openShopHelpSheet.sheetState == 0">待确认</view>
  22. <view class="SheetState" v-if="orderData.openShopHelpSheet.sheetState == 1">已接单</view>
  23. <view class="SheetState" v-if="orderData.openShopHelpSheet.sheetState == 2">已出发</view>
  24. <view class="SheetState" v-if="orderData.openShopHelpSheet.sheetState == 3">已完成</view>
  25. <view class="SheetState" v-if="orderData.openShopHelpSheet.sheetState == 4">已取消</view>
  26. <view class="SheetState" v-if="orderData.openShopHelpSheet.sheetState == 5">已评价</view>
  27. </view>
  28. </view>
  29. <!-- 拼团信息 -->
  30. <!-- 店铺信息 -->
  31. <view class="shopBox" ><!-- :class="{shopBoxpt:orderData.data.sheetState == 5}" -->
  32. <image src="../../static/img/icon_store.png" mode="" class="shopBoximg"></image>
  33. <view class="shopCont">
  34. <view class="shopName">{{orderData.shopInfo.shopName}}</view>
  35. <view class="Address">
  36. {{orderData.shopInfo.provinceName}}{{orderData.shopInfo.cityName}}{{orderData.shopInfo.areaName}}{{orderData.shopInfo.address}}
  37. </view>
  38. </view>
  39. <view class="shopRightBox" @click="map">
  40. <image src="../../static/img/icon_ditu.png" mode="" class="shopRightImg"></image>
  41. <view class="shopRihgtTxt">地图</view>
  42. </view>
  43. <view class="shopsx"></view>
  44. <view class="shopRightBox" @click="call">
  45. <image src="../../static/img/icon_phone.png" mode="" class="shopRightImg"></image>
  46. <view class="shopRihgtTxt">电话</view>
  47. </view>
  48. </view>
  49. <!-- 救援信息 -->
  50. <view class="information">
  51. <view class="detailedTitle">救援信息</view>
  52. <view class="informationLine">
  53. <view class="informationTxt">救援单号:</view>
  54. <view class="informationNum">{{orderData.openShopHelpSheet.code}}<span class="codeCopy"
  55. @click="copy(orderData.openShopHelpSheet.code)">复制</span></view>
  56. </view>
  57. <view class="informationLine">
  58. <view class="informationTxt">救援时间:</view>
  59. <view class="informationNum" v-if="orderData.openShopHelpSheet.orderType==1">立刻</view>
  60. <view class="informationNum" v-else>{{orderData.openShopHelpSheet.hTime}}</view>
  61. </view>
  62. <view class="informationLine">
  63. <view class="informationTxt">救援类型:</view>
  64. <view class="informationNum2" v-if="orderData.openShopHelpSheet.helpType==1">搭电</view>
  65. <view class="informationNum2" v-if="orderData.openShopHelpSheet.helpType==2">拖车</view>
  66. <view class="informationNum2" v-if="orderData.openShopHelpSheet.helpType==3">换胎</view>
  67. <view class="informationNum2" v-if="orderData.openShopHelpSheet.helpType==4">未知原因</view>
  68. <view class="informationNum2">-</view>
  69. <view class="informationNum2" v-if="orderData.openShopHelpSheet.hscene==1">地面</view>
  70. <view class="informationNum2" v-if="orderData.openShopHelpSheet.hscene==2">车库</view>
  71. <view class="informationNum2" v-if="orderData.openShopHelpSheet.hscene==3">其他</view>
  72. </view>
  73. <!-- <view class="informationLine" v-if="orderData.openShopHelpSheet.plateNumber">
  74. <view class="informationTxt">车牌号:</view>
  75. <view class="informationNum">{{orderData.openShopHelpSheet.plateNumber}}</view>
  76. </view>
  77. <view class="informationLine">
  78. <view class="informationTxt">车型:</view>
  79. <view class="informationNum">{{orderData.openShopHelpSheet.carModel}}</view>
  80. </view>
  81. <view class="informationLine">
  82. <view class="informationTxt">救援联系人:</view>
  83. <view class="informationNum">{{orderData.openShopHelpSheet.customerName}}/{{orderData.openShopHelpSheet.mobilePhone}}</view>
  84. </view> -->
  85. <view class="informationLine" >
  86. <view class="informationTxt">起点:</view>
  87. <view class="informationNum">{{orderData.openShopHelpSheet.hStartAddress}}</view>
  88. </view>
  89. <view class="informationLine" v-if="orderData.openShopHelpSheet.helpType==2">
  90. <view class="informationTxt">终点:</view>
  91. <view class="informationNum">{{orderData.openShopHelpSheet.hEndAddress}}</view>
  92. </view>
  93. </view>
  94. <!-- 支付信息 -->
  95. <view class="information">
  96. <view class="detailedTitle">订单信息</view>
  97. <view class="informationLine">
  98. <view class="informationTxt">下单时间:</view>
  99. <view class="informationNum" >{{orderData.openShopHelpSheet.createTime}}</view>
  100. </view>
  101. <view class="informationLine">
  102. <view class="informationTxt">下单人:</view>
  103. <view class="informationNum" >{{orderData.openUser.nickName|| '未知'}}/{{orderData.openUser.mobilePhone}}</view>
  104. </view>
  105. <view class="informationLine" v-if="orderData.openShopHelpSheet.confirmTime">
  106. <view class="informationTxt">确认时间:</view>
  107. <view class="informationNum" >{{orderData.openShopHelpSheet.confirmTime}}</view>
  108. </view>
  109. <view class="informationLine" v-if="orderData.openShopHelpSheet.confirmOperator">
  110. <view class="informationTxt">确认人:</view>
  111. <view class="informationNum" >{{orderData.openShopHelpSheet.confirmOperator}}</view>
  112. </view>
  113. <view class="informationLine" v-if="orderData.openShopHelpSheet.evaluateTime">
  114. <view class="informationTxt">评价时间:</view>
  115. <view class="informationNum">{{orderData.openShopHelpSheet.evaluateTime}}</view>
  116. </view>
  117. <view class="informationLine" v-if="orderData.openShopHelpSheet.goingOperator">
  118. <view class="informationTxt">出发人:</view>
  119. <view class="informationNum" >{{orderData.openShopHelpSheet.goingOperator}}</view>
  120. </view>
  121. <view class="informationLine" v-if="orderData.openShopHelpSheet.finishTime">
  122. <view class="informationTxt">完成时间:</view>
  123. <view class="informationNum" >{{orderData.openShopHelpSheet.finishTime}}</view>
  124. </view>
  125. <view class="informationLine" v-if="orderData.openShopHelpSheet.finishOperator">
  126. <view class="informationTxt">完成人:</view>
  127. <view class="informationNum" >{{orderData.openShopHelpSheet.finishOperator}}</view>
  128. </view>
  129. <view class="informationLine" v-if="orderData.openShopHelpSheet.finishComment">
  130. <view class="informationTxt">完成备注:</view>
  131. <view class="informationNum" >{{orderData.openShopHelpSheet.finishComment}}</view>
  132. </view>
  133. <view class="informationLine" v-if="orderData.openShopHelpSheet.evaluateComment">
  134. <view class="informationTxt">评价内容:</view>
  135. <view class="informationNum">{{orderData.openShopHelpSheet.evaluateComment}}</view>
  136. </view>
  137. <view class="informationLine" v-if="orderData.openShopHelpSheet.goingTime">
  138. <view class="informationTxt">出发时间:</view>
  139. <view class="informationNum" >{{orderData.openShopHelpSheet.goingTime}}</view>
  140. </view>
  141. <view class="informationLine" v-if="orderData.openShopHelpSheet.cancelTime">
  142. <view class="informationTxt">取消时间:</view>
  143. <view class="informationNum">{{orderData.openShopHelpSheet.cancelTime}}</view>
  144. </view>
  145. <view class="informationLine" v-if="orderData.openShopHelpSheet.cancelOperator">
  146. <view class="informationTxt">取消人:</view>
  147. <view class="informationNum" >{{orderData.openShopHelpSheet.cancelOperator}}</view>
  148. </view>
  149. <view class="informationLine" v-if="orderData.openShopHelpSheet.cancelComment">
  150. <view class="informationTxt">取消备注:</view>
  151. <view class="informationNum" >{{orderData.openShopHelpSheet.cancelComment}}</view>
  152. </view>
  153. </view>
  154. <view style="height: 50rpx;background-color: #F4F5F7;"></view>
  155. <view class="bottom" v-if="orderData.openShopHelpSheet.sheetState != 5">
  156. <!-- <view class="cancel" @click="cancelBespeak" v-if="orderData.data.groupType==1">取消订单</view> -->
  157. <view class="cancel" v-if="orderData.openShopHelpSheet.sheetState == 0" @click="cancelBespeak" >取消订单</view>
  158. <!-- --> <view class="defer" v-if="orderData.openShopHelpSheet.sheetState == 3||orderData.openShopHelpSheet.sheetState == 1||orderData.openShopHelpSheet.sheetState == 2" :style="{border:'1rpx solid #'+themeColor,color:'#'+themeColor}" @click="orderevaluate">评价</view>
  159. <!-- <view class="defer" v-if="orderData.openShopHelpSheet.sheetState == 5" :style="{border:'1rpx solid #'+themeColor,color:'#'+themeColor}" @click="seeevaluate">查看评价</view> -->
  160. </view>
  161. <!-- 手机号授权 -->
  162. <view class="authorizBox" v-if="authorizShow" @click="authorizShow=false">
  163. <view class="authorizCont" @click.stop="">
  164. <view class="authorizName">{{wxOpenData.miniAppName}}</view>
  165. <view class="authorizMs">您好,欢迎访问本店,授权手机号登录能获取我们最新的促销活动哦~</view>
  166. <button class="authorizContbutton" type="default" open-type="getPhoneNumber" @getphonenumber="decryptPhoneNumber">授权</button>
  167. </view>
  168. <view style="text-align: center;padding-top: 56rpx;">
  169. <image src="../../../static/timg/icon_guanbi@2x.png" mode="" class="authorizCloseImg"></image>
  170. </view>
  171. </view>
  172. <view class="authorizBox" v-if="evaluateShow">
  173. <view class="evaluateBox">
  174. <view class="evaluateTitle">评价</view>
  175. <view class="textareaBox">
  176. <textarea placeholder-style="color:#999999" placeholder="说说哪里满意,帮大家选择~" v-model="evaluateComment"
  177. class="textareaCont" maxlength="-1" auto-height="true" />
  178. </view>
  179. <view class="evaluateBtnBox">
  180. <view class="evaluatecancel cancel" @click="evaluatecancel">取消</view>
  181. <view class="evaluateDetermine defer" @click="evaluateDetermine">确定</view>
  182. </view>
  183. </view>
  184. </view>
  185. <view class="authorizBox" v-if="evaluateContShow">
  186. <view class="evaluateBox">
  187. <view class="evaluateTitle">查看评价</view>
  188. <view class="textareaBox">
  189. <view class="evaluateCont">
  190. {{orderData.openShopHelpSheet.evaluateComment}}
  191. <view class="evaluateTime">{{orderData.openShopHelpSheet.evaluateTime}}</view>
  192. </view>
  193. </view>
  194. <view class="evaluateBtnBox">
  195. <view class="evaluateDetermine defer" @click="evaluatexs">确定</view>
  196. </view>
  197. </view>
  198. </view>
  199. </view>
  200. </template>
  201. <script>
  202. import tkiQrcode from "@/components/tki-qrcode/tki-qrcode.vue"
  203. import homenav from "@/components/homenav/nav.vue"
  204. export default {
  205. components: {
  206. tkiQrcode,homenav
  207. },
  208. data() {
  209. return {
  210. id: '',
  211. iStatusBarHeight:'',
  212. orderData: '',
  213. onval: true, // val值变化时自动重新生成二维码
  214. loadMake: true, // 组件加载完成后自动生成二维码
  215. size: 500,
  216. qrcodeShow: false,
  217. qrcodeTop: '-100vh',
  218. qrcodeTopVal: '',
  219. ifShow: false,
  220. val: '二维码', // 要生成的二维码值
  221. unit: 'upx', // 单位
  222. background: '#b4e9e2', // 背景色
  223. foreground: '#309286', // 前景色
  224. pdground: '#262637', // 角标色
  225. icon: '', // 二维码图标
  226. iconsize: 40, // 二维码图标大小
  227. lv: 3, // 二维码容错级别 , 一般不用设置,默认就行
  228. src: '', // 二维码生成后的图片地址或base64
  229. isShowMa: false,
  230. quanMaList:[],
  231. themeColor:'',
  232. authorizShow:false,
  233. userInfo:'',
  234. ext:'',
  235. wxOpenData:'',
  236. dh:'',
  237. dm:'',
  238. ds:'',
  239. seeTyshow:false,
  240. isShowTui:false,
  241. index:0,
  242. tuicauseList: [],
  243. tuikuanContent: '',
  244. swiperIndex:0,
  245. evaluateComment:'',
  246. evaluateShow:false,
  247. evaluateContShow:false,
  248. }
  249. },
  250. //0拼团取消1拼团失败 2拼团中3拼团成功4自动成团 groupState
  251. onLoad(opt) {
  252. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  253. this.id = opt.id
  254. this.themeColor = uni.getStorageSync("themeColor");
  255. this.userInfo=this.$store.state.userInfo;
  256. this.ext=this.$common.getExtStoreId();
  257. if(this.userInfo){
  258. if (this.id) {
  259. this.getData();
  260. this.getTuiKuanData()
  261. }
  262. }else{
  263. this.$common.automaticlogin().then(val => {
  264. this.userInfo=this.$store.state.userInfo;
  265. this.wxOpenData=this.$store.state.wxOpenData;
  266. this.themeColor = uni.getStorageSync("themeColor");
  267. if (this.id) {
  268. this.getData();
  269. this.getTuiKuanData()
  270. }
  271. if(!this.userInfo){
  272. this.authorizShow=true
  273. }
  274. })
  275. }
  276. },
  277. methods: {
  278. orderevaluate(){
  279. this.evaluateShow=true;
  280. },
  281. seeevaluate(){
  282. this.evaluateContShow=true
  283. },
  284. evaluatexs(){
  285. this.evaluateContShow=false
  286. },
  287. evaluatecancel(){
  288. this.evaluateShow=false;
  289. },
  290. evaluateDetermine(){
  291. this.$http('openShopHelpSheetOrder/appraiseShop', {
  292. id:this.id,evaluateComment:this.evaluateComment,
  293. },'POST').then(res => {
  294. this.evaluateShow=false
  295. if(res.code==0){
  296. uni.showToast({
  297. title: '评价成功',
  298. icon: 'none',
  299. duration: 3000
  300. });
  301. this.getData();
  302. }else{
  303. uni.showToast({
  304. title: res.msg,
  305. icon: 'none',
  306. duration: 3000
  307. });
  308. }
  309. })
  310. },
  311. isShowTuiHide(){
  312. this.isShowTui=false;
  313. },
  314. bindChange(e) {
  315. console.log(e);
  316. this.index = e.detail.value
  317. },
  318. getTuiKuanData() {
  319. console.log("退款原因")
  320. this.$http('openMallOrder/getOpenReason', {
  321. // id: this.id,
  322. }, 'GET').then(res => {
  323. this.tuicauseList = res.data;
  324. })
  325. },
  326. goTui(){
  327. var that=this;
  328. uni.showLoading({
  329. title: '加载中'
  330. })
  331. let yuanyin = this.tuicauseList[this.index].contents
  332. that.$http('openMallOrder/cancelOrder', {
  333. realMoney:that.orderData.data.realMoney,
  334. sheetId: that.id,
  335. refundReason:yuanyin,
  336. refundComment:this.tuikuanContent,
  337. }, 'POST').then(res => {
  338. uni.hideLoading();
  339. // var list = res.data.Items
  340. this.isShowTui=false;
  341. uni.showToast({
  342. title: '取消成功',
  343. icon: 'none',
  344. duration: 2000
  345. });
  346. setTimeout(function() {
  347. that.getData();
  348. }, 1000);
  349. })
  350. },
  351. cancelOrder(){
  352. this.isShowTui=true;
  353. },
  354. seeTyHide(){
  355. this.seeTyshow=false;
  356. },
  357. seeTyshowBtn(){
  358. this.seeTyshow=true;
  359. },
  360. decryptPhoneNumber: function(e) {
  361. console.log(e);
  362. this.code=e.detail.code
  363. this.wxPhoneLogin()
  364. this.authorizShow=false;
  365. },
  366. wxPhoneLogin(){
  367. var that=this;
  368. this.$http('miniApp2/sys/wxPhoneLogin', {
  369. appId:this.ext.appId,
  370. unionId:this.ext.unionId,
  371. code:this.code,
  372. openId:this.wxOpenData.openid
  373. },'POST').then(res => {
  374. var data = res.data;
  375. if(data.newCustomer){
  376. uni.showModal({
  377. title: '提示',
  378. content: data.newCustomerMsg,
  379. success: function(resTK) {
  380. }
  381. });
  382. var token=res.data.token
  383. data.loginInfo={}
  384. data.loginInfo.token=token
  385. this.$store.commit('mutationswxOpenData', data);
  386. return false;
  387. }
  388. if(data.loginInfo){
  389. this.userInfo=data.loginInfo.openUser;
  390. this.wxOpenData=data.loginInfo;
  391. this.$store.commit('mutationswxOpenData', data)
  392. this.$store.commit('mutationsuserInfo', this.userInfo)
  393. this.getData()
  394. }
  395. })
  396. },
  397. isShowMaSHow(index){
  398. this.swiperIndex=index
  399. this.isShowMa=true
  400. },
  401. isShowMaHide(){
  402. this.isShowMa=false
  403. },
  404. goDetail(id) {
  405. console.log('id--',id);
  406. uni.navigateTo({
  407. url: '../../activity/jkDetail?id=' + id
  408. })
  409. },
  410. pay(){
  411. this.$http('openMallOrder/unifiedPay', {
  412. sheetId:this.id
  413. },'POST').then(res => {
  414. if(res.code==0){
  415. this.requestPayment(res.data)
  416. }else{
  417. uni.showToast({
  418. title: res.msg,
  419. icon: 'none',
  420. duration: 3000
  421. });
  422. }
  423. })
  424. },
  425. requestPayment(res){
  426. var payInfo=res;
  427. //console.log(payInfo)
  428. //console.log(String(Date.now()))
  429. var that=this;
  430. uni.requestPayment({
  431. provider: 'wxpay',
  432. //timeStamp: String(Date.now()),
  433. timeStamp: payInfo.timeStamp,
  434. nonceStr: payInfo.nonceStr,
  435. package:payInfo.package,
  436. signType: payInfo.signType,
  437. paySign: payInfo.paySign,
  438. appid:payInfo.appId,
  439. success: function (res) {
  440. console.log('success:' + JSON.stringify(res));
  441. uni.showToast({
  442. title: '支付成功',
  443. icon:'none',
  444. duration: 2000
  445. });
  446. that.getData()
  447. },
  448. fail: function (err) {
  449. console.log(err)
  450. uni.showToast({
  451. title: '支付失败',
  452. icon:'none',
  453. duration: 2000
  454. });
  455. }
  456. });
  457. },
  458. copy(txt) {
  459. uni.setClipboardData({
  460. data: txt,
  461. success: function() {
  462. uni.showToast({
  463. title: '复制成功',
  464. icon: 'none',
  465. duration: 2000
  466. });
  467. }
  468. });
  469. },
  470. upTime() {
  471. uni.showLoading({
  472. title: '加载中'
  473. })
  474. var that = this
  475. this.$http('openreservation/carOwner/updateTimeOfAppointment', {
  476. id: this.id,
  477. shopId: this.orderData.shopInfo.id,
  478. billDate: this.billDate
  479. }, 'POST').then(res => {
  480. uni.hideLoading();
  481. // var list = res.data.Items
  482. var list = res.data
  483. console.log("result+=", res.data);
  484. uni.showToast({
  485. title: '延期成功',
  486. icon: 'none',
  487. duration: 2000
  488. });
  489. setTimeout(function() {
  490. that.getData();
  491. }, 1000);
  492. })
  493. },
  494. cancelBespeak(){
  495. var that = this
  496. uni.showModal({
  497. title: '提示',
  498. content: '是否取消该订单',
  499. cancelText:'否',
  500. confirmText:'是',
  501. success: function (res) {
  502. if (res.confirm) {
  503. uni.showLoading({
  504. title: '加载中'
  505. })
  506. that.$http('openShopHelpSheetOrder/cancelOrder', {
  507. id: that.id,
  508. }, 'POST').then(res => {
  509. uni.hideLoading();
  510. // var list = res.data.Items
  511. uni.showToast({
  512. title: '取消成功',
  513. icon: 'none',
  514. duration: 2000
  515. });
  516. setTimeout(function() {
  517. that.getData();
  518. }, 1000);
  519. })
  520. } else if (res.cancel) {
  521. }
  522. }
  523. });
  524. },
  525. map() {
  526. console.log("打开地图")
  527. var that = this;
  528. if (!that.orderData.shopInfo.lat || !that.orderData.shopInfo.lng) {
  529. uni.showToast({
  530. title: '该店铺未设置定位',
  531. icon: 'none',
  532. duration: 3000
  533. });
  534. } else {
  535. uni.openLocation({
  536. latitude: Number(that.orderData.shopInfo.lat),
  537. longitude: Number(that.orderData.shopInfo.lng),
  538. name: that.orderData.shopInfo.shopName,
  539. address: that.orderData.shopInfo.provinceName + that.orderData.shopInfo.cityName + that
  540. .orderData.shopInfo.areaName + that.orderData.shopInfo.address,
  541. success: function() {
  542. console.log('success');
  543. },
  544. fail(err) {
  545. console.log(err)
  546. }
  547. });
  548. }
  549. },
  550. call() {
  551. uni.makePhoneCall({
  552. phoneNumber: this.orderData.shopInfo.mobilePhone
  553. });
  554. },
  555. getData() {
  556. uni.showLoading({
  557. title: '加载中'
  558. });
  559. this.$http('openShopHelpSheetOrder/getOpenShopHelpSheetOrderInfo', {
  560. id: this.id,
  561. }, 'GET').then(res => {
  562. uni.hideLoading();
  563. this.orderData = res.data;
  564. if (this.quanMaList) {
  565. this.quanMaList = [];
  566. }
  567. let maList = this.orderData.OpenSheetQRCode;
  568. if (maList) {
  569. maList.forEach(item =>{
  570. if (item.writeoffState==1) {
  571. this.quanMaList.push(item.qrCode);
  572. }
  573. })
  574. }
  575. //this.clock()
  576. console.log('可用券码--',this.quanMaList);
  577. })
  578. },
  579. getData2() {
  580. uni.showLoading({
  581. title: '加载中'
  582. });
  583. this.$http('openOrderManagement/queryOpenSheet', {
  584. id: this.id,
  585. }, 'GET').then(res => {
  586. uni.hideLoading();
  587. this.orderData = res.data;
  588. if (this.quanMaList) {
  589. this.quanMaList = [];
  590. }
  591. let maList = this.orderData.OpenSheetQRCode;
  592. if (maList) {
  593. maList.forEach(item =>{
  594. if (item.writeoffState==1) {
  595. this.quanMaList.push(item.qrCode);
  596. }
  597. })
  598. }
  599. })
  600. },
  601. clock(){
  602. let _this = this
  603. let today = new Date() // 当前时间
  604. let h = today.getHours()
  605. let m = today.getMinutes()
  606. let s = today.getSeconds()
  607. let startTime = new Date(_this.orderData.openGroup.endTime.replace(/-/g, '/')) // 结束时间
  608. if (Number(new Date(_this.orderData.openGroup.endTime).getTime()) < Number(new Date().getTime())) {
  609. //this.activityNoOpen = true
  610. this.dh=0;
  611. this.dm=0;
  612. this.ds=0;
  613. _this.getData2();
  614. return false
  615. }
  616. let stopH = startTime.getHours()
  617. let stopM = startTime.getMinutes()
  618. let stopS = startTime.getSeconds()
  619. let shenyu = startTime.getTime() - today.getTime() // 倒计时毫秒数
  620. //console.log(shenyu)
  621. let shengyuD = parseInt(shenyu / (60 * 60 * 24 * 1000)) // 转换为天
  622. // let D = parseInt(shenyu) - parseInt(shengyuD * 60 * 60 * 24 * 1000)// 除去天的毫秒数
  623. let D = parseInt(shenyu)
  624. let shengyuH = parseInt(D / (60 * 60 * 1000)) // 除去天的毫秒数转换成小时
  625. let H = D - shengyuH * 60 * 60 * 1000 // 除去天、小时的毫秒数
  626. let shengyuM = parseInt(H / (60 * 1000)) // 除去天的毫秒数转换成分钟
  627. let M = H - shengyuM * 60 * 1000// 除去天、小时、分的毫秒数
  628. let S = parseInt((shenyu - shengyuD * 60 * 60 * 24 * 1000 - shengyuH * 60 * 60 * 1000 - shengyuM * 60 * 1000) / 1000)// 除去天、小时、分的毫秒数转化为秒
  629. //console.log(S)
  630. // this.daojishi = '报名倒计时:' + shengyuD + '天' + shengyuH + '小时' + shengyuM + '分' + S + '秒'
  631. // setTimeout("clock()",500);
  632. this.dh=shengyuH;
  633. this.dm=shengyuM;
  634. this.ds=S;
  635. if(this.dh<10){
  636. this.dh='0'+this.dh
  637. }
  638. if(this.dm<10){
  639. this.dm='0'+this.dm
  640. }
  641. if(this.ds<10){
  642. this.ds='0'+this.ds
  643. }
  644. setTimeout(_this.clock, 1000)
  645. },
  646. goback() {
  647. uni.navigateBack({
  648. delta: 1
  649. })
  650. },
  651. gohome(){
  652. uni.switchTab({
  653. url:'../../index/index'
  654. })
  655. },
  656. },
  657. onPullDownRefresh() {
  658. this.getData()
  659. setTimeout(function() {
  660. uni.stopPullDownRefresh();
  661. }, 1000);
  662. },
  663. onShareAppMessage(res) {
  664. console.log(this.userInfo)
  665. var img='';
  666. /* if(this.info.ImgList.length>0){
  667. img=this.info.ImgList[0].url
  668. } */
  669. return {
  670. title: this.orderData.data.sheetContent,
  671. //imageUrl:this.mainImg,
  672. imageUrl:'http://dmsphoto.66km.com.cn/thFiles/83074F71-F5C9-4C8E-B23F-2D195788960B.png',
  673. path: 'pages/subPack/jkDetail?id=' + this.orderData.openSheetDetail[0].itemId+'&shareId='+this.userInfo.openId+'&groupID='+this.orderData.data.groupID+'&shareName='+this.userInfo.nickName,
  674. success(res){
  675. uni.showToast({
  676. title:'分享成功'
  677. })
  678. },
  679. fail(res){
  680. uni.showToast({
  681. title:'分享失败',
  682. icon:'none',
  683. duration: 3000
  684. })
  685. }
  686. }
  687. },
  688. }
  689. </script>
  690. <style scoped>
  691. .evaluateBox{
  692. width: 600rpx;
  693. height: 600rpx;
  694. margin-top: 30vh;
  695. margin-left: 75rpx;
  696. background: #ffffff;
  697. border-radius: 16rpx;
  698. }
  699. .evaluateCont{
  700. font-size: 30rpx;color: #333333;height: 300rpx;
  701. }
  702. .evaluateTime{
  703. font-size: 30rpx;color: #999999;padding-top: 24rpx;
  704. }
  705. .textareaBox{
  706. padding: 24rpx;
  707. }
  708. .evaluateTitle{
  709. color: #333333;
  710. line-height: 42rpx;
  711. font-size: 30rpx;
  712. padding-left: 24px;
  713. padding-top: 30rpx;
  714. }
  715. .evaluateBtnBox{
  716. display: flex;justify-content: space-around;padding-top: 30rpx;
  717. }
  718. .textareaCont {
  719. padding: 20rpx;
  720. min-height: 300rpx;
  721. width:512rpx ;
  722. border-radius: 10rpx;
  723. font-size: 28rpx;
  724. background: #eaeaea;
  725. }
  726. .groupStateIcon{
  727. width: 28rpx;height: 28rpx;
  728. }
  729. .groupStateTxt{
  730. font-weight: 400;padding-left: 8rpx;
  731. color: #3C3C3C;line-height: 28rpx;
  732. font-size: 26rpx;
  733. }
  734. .groupStateBox{
  735. display: flex;
  736. }
  737. .detailedTitle{
  738. display: flex;justify-content: space-between;
  739. }
  740. .grouptk{
  741. width: 638rpx;
  742. height: 750rpx;
  743. background: #FFFFFF;
  744. border-radius: 24rpx;
  745. margin-top: 300rpx;
  746. margin-left: 56rpx;
  747. }
  748. .grouptkLIneLeft{
  749. display: flex;
  750. }
  751. .groupTz{
  752. border-radius: 15rpx;padding: 0 10rpx;margin-right: 8rpx;
  753. border: 1rpx solid #FF9D00;color: #FF9D00;font-size: 22rpx;
  754. }
  755. .groupTy{
  756. border-radius: 15rpx;padding: 0 10rpx;margin-right: 8rpx;
  757. border: 1rpx solid #764D49;color: #764D49;font-size: 22rpx;
  758. }
  759. .grouptkLIne{
  760. display: flex;padding: 15rpx 24rpx;
  761. justify-content: space-between;font-weight: 400;
  762. color: #3C3C3C;font-size: 26rpx;line-height: 32rpx;
  763. }
  764. .grouptk .maTitle{
  765. padding-left: 4rpx;
  766. color: #333333;font-weight: 500;
  767. }
  768. .ptCont{
  769. width: 702rpx;
  770. height: 297rpx;
  771. background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%);
  772. border-radius: 10rpx;
  773. margin-left: 24rpx;
  774. margin-top: -60rpx;
  775. }
  776. .ptTimeBox{
  777. display: flex;font-weight: 400;justify-content: center;padding-top: 24rpx;
  778. }
  779. .ptTimeTxt{
  780. font-weight: 400;font-size: 24rpx;line-height: 42rpx;
  781. color: #764D49;padding-right: 18rpx;
  782. }
  783. .ptdd{
  784. font-size: 24rpx;padding:0 8rpx;
  785. line-height: 42rpx;
  786. font-weight: 400;
  787. color: #764D49;
  788. }
  789. .ptTime{
  790. width: 42rpx;font-size: 24rpx;
  791. height: 42rpx;text-align: center;line-height: 42rpx;
  792. background: #FF0000;
  793. border-radius: 6rpx;
  794. font-weight: 500;
  795. color: #FFFFFF;
  796. }
  797. .DiffBNumber{
  798. color: #764D49;font-size: 24rpx;text-align: center;padding-top:16rpx;padding-bottom: 30rpx;
  799. }
  800. .ptmobilePhoneLine{
  801. display: flex;font-weight: 400;justify-content: center;
  802. color: #764D49;font-size: 26rpx;padding-top:20rpx;
  803. }
  804. .vipIcon{
  805. width: 32rpx;height: 32rpx;margin-right: 8rpx;
  806. }
  807. .seeTy{
  808. width: 260rpx;line-height: 62rpx;text-align: center;
  809. height: 62rpx;color: #FF0000;
  810. border-radius: 36rpx;font-size: 26rpx;
  811. border: 2rpx solid #FF0000;
  812. margin-right: 15rpx;
  813. }
  814. .ptBtnBox{
  815. display: flex;
  816. justify-content: center;
  817. }
  818. .yqhypt{
  819. width: 260rpx;color: #FFFFFF;line-height: 66rpx;text-align: center;
  820. height: 66rpx;font-size: 26rpx;
  821. background: linear-gradient(132deg, #FD5C05 0%, #FD0323 100%);
  822. border-radius: 36rpx;
  823. margin-left: 15rpx;
  824. }
  825. .box {
  826. min-height: 100vh;
  827. background: #F4F5F7;
  828. padding-bottom: 135rpx;
  829. }
  830. .zdyNavBox{
  831. width: 100vw;
  832. background: #FFFFFF;
  833. position: fixed;
  834. top: 0;
  835. left: 0;
  836. z-index: 9999999;
  837. }
  838. .zdyNav{
  839. height: 44px;
  840. display: flex;
  841. justify-content: space-between;
  842. align-items: center;
  843. }
  844. .backImg{
  845. width: 44rpx;
  846. height: 44rpx;
  847. margin-left: 10rpx;
  848. margin-right: 20rpx;
  849. }
  850. .homeImg{
  851. width: 44rpx;
  852. height: 44rpx;
  853. }
  854. .zdyNavLeft{
  855. display: flex;
  856. align-items: center;
  857. }
  858. .zdyNavTitle{
  859. width: 100vw;
  860. height: 44px;
  861. background: #FFFFFF;
  862. text-align: center;
  863. font-size: 34rpx;
  864. line-height: 44px;
  865. }
  866. .top {
  867. height: 190rpx;
  868. background: #FF0000;
  869. }
  870. .orderState {
  871. display: flex;
  872. justify-content: center;
  873. align-items: center;
  874. padding-top: 40rpx;
  875. }
  876. .SheetState {
  877. display: flex;
  878. justify-content: center;
  879. font-size: 36rpx;
  880. font-weight: 500;
  881. color: #FFFFFF;
  882. margin-left: 15rpx;
  883. }
  884. .timeEditImg {
  885. width: 25rpx;
  886. height: 25rpx;
  887. padding-left: 20rpx;
  888. }
  889. .shopBoximg {
  890. width: 40rpx;
  891. height: 40rpx;
  892. }
  893. .shopRightImg {
  894. width: 44rpx;
  895. height: 45rpx;
  896. }
  897. .shopsx {
  898. width: 1px;
  899. height: 50rpx;
  900. background: #EEEEEE;
  901. margin-top: 30rpx;
  902. margin-left: 28rpx;
  903. }
  904. .shopBox {
  905. display: flex;
  906. padding: 30rpx 20rpx;
  907. margin: 0rpx 24rpx;
  908. margin-top: -60rpx;
  909. background-color: #FFFFFF;
  910. border-radius: 10rpx;
  911. }
  912. .shopCont {
  913. width: 405rpx;
  914. padding-left: 20rpx;
  915. }
  916. .shopName {
  917. font-size: 30rpx;
  918. font-weight: bold;
  919. color: #3C3C3C;
  920. line-height: 42rpx;
  921. }
  922. .Address {
  923. color: #999999;
  924. font-size: 24rpx;
  925. margin-top: 10rpx;
  926. }
  927. .shopRihgtTxt {
  928. color: #999999;
  929. font-size: 24rpx;
  930. }
  931. .shopRightBox {
  932. padding-left: 28rpx;
  933. }
  934. .detailedTitle {
  935. padding: 23rpx 20rpx;
  936. display: flex;
  937. text-align: center;
  938. align-content: flex-start;
  939. border-bottom: 1rpx solid #EEEEEE;
  940. font-size: 30rpx;
  941. font-weight: bold;
  942. color: #3C3C3C;
  943. }
  944. .detailedLine {
  945. display: flex;
  946. padding: 16rpx 20rpx;
  947. justify-content: space-between;
  948. align-items: center;
  949. }
  950. .detailedImg {
  951. width: 120rpx;
  952. height: 120rpx;
  953. border-radius: 10rpx;
  954. }
  955. .detailedName {
  956. display: flex;
  957. align-items: center;
  958. }
  959. .code {
  960. font-size: 26rpx;
  961. color: #333333;
  962. font-weight: bold;
  963. width: 180rpx
  964. }
  965. .old {
  966. color: #999999;
  967. font-weight: 400;
  968. text-decoration: line-through;
  969. }
  970. .redPoint {
  971. width: 10rpx;
  972. height: 10rpx;
  973. background: #FF0000;
  974. border-radius: 10rpx;
  975. margin-right: 10rpx;
  976. }
  977. .quanState {
  978. font-size: 22rpx;
  979. color: #F19D01;
  980. padding: 0 10rpx;
  981. border: 1rpx solid #F19D01;
  982. border-radius: 4rpx;
  983. margin-left: 20rpx;
  984. }
  985. .quanState2{
  986. font-size: 22rpx;
  987. color: #999999;
  988. padding: 0 10rpx;
  989. border: 1rpx solid #DDDDDD;
  990. border-radius: 4rpx;
  991. margin-left: 20rpx;
  992. }
  993. .information {
  994. background: #FFFFFF;
  995. border-radius: 10rpx;
  996. margin: 20rpx 24rpx;
  997. padding-bottom: 15rpx;
  998. }
  999. .informationLine {
  1000. display: flex;
  1001. padding: 15rpx 20rpx;
  1002. }
  1003. .informationLine2 {
  1004. display: flex;
  1005. justify-content: space-between;
  1006. font-size: 26rpx;
  1007. padding: 20rpx;
  1008. align-items: center;
  1009. padding-bottom: 0;
  1010. }
  1011. .salePrice {
  1012. padding-left: 20rpx;
  1013. padding-top: 15rpx;
  1014. font-size: 26rpx;
  1015. font-weight: 500;
  1016. color: #333333;
  1017. line-height: 45rpx;
  1018. }
  1019. .money {
  1020. background: #FFFFFF;
  1021. border-radius: 10rpx;
  1022. margin: 20rpx 24rpx;
  1023. display: flex;
  1024. justify-content: space-between;
  1025. font-size: 26rpx;
  1026. padding: 30rpx 20rpx;
  1027. }
  1028. .informationTxt {
  1029. width: 190rpx;
  1030. font-size: 26rpx;
  1031. color: #999999;
  1032. }
  1033. .line {
  1034. height: 20rpx;
  1035. background-color: #FFFFFF;
  1036. border-bottom: 1rpx solid #EEEEEE;
  1037. }
  1038. .goodsName {
  1039. width: 70%;
  1040. color: #333333;
  1041. font-size: 26rpx;
  1042. }
  1043. .huodong{
  1044. display: flex;
  1045. align-items: center;
  1046. }
  1047. .goodsName3{
  1048. color: #333333;
  1049. font-size: 26rpx;
  1050. }
  1051. .goodsName2{
  1052. padding: 20rpx 20rpx 15rpx;
  1053. color: #333333;
  1054. font-size: 26rpx;
  1055. }
  1056. .informationNum {
  1057. color: #333333;
  1058. font-size: 26rpx;
  1059. width: 500rpx;
  1060. }
  1061. .informationNum2{
  1062. color: #333333;
  1063. font-size: 26rpx;
  1064. }
  1065. .codeCopy {
  1066. width: 77rpx;
  1067. height: 36rpx;
  1068. background: #F4F5F7;
  1069. border-radius: 22rpx;
  1070. font-size: 24rpx;
  1071. color: #333333;
  1072. text-align: center;
  1073. line-height: 33rpx;
  1074. padding: 0 15rpx;
  1075. margin-left: 20rpx;
  1076. }
  1077. .orderBottom {
  1078. width: 750rpx;
  1079. height: 98rpx;
  1080. background: #FFFFFF;
  1081. position: fixed;
  1082. left: 0;
  1083. bottom: 0;
  1084. display: flex;
  1085. justify-content: flex-end;
  1086. }
  1087. .bottom {
  1088. display: flex;
  1089. justify-content: flex-end;
  1090. padding: 20rpx;
  1091. background-color: #FFFFFF;
  1092. align-items: center;
  1093. height: 98rpx;
  1094. width: 100vw;
  1095. position: fixed;
  1096. bottom: 0rpx;
  1097. padding-bottom: constant(safe-area-inset-bottom);
  1098. padding-bottom: env(safe-area-inset-bottom);
  1099. }
  1100. .cancel {
  1101. color: #3C3C3C;
  1102. font-size: 28rpx;
  1103. width: 150rpx;
  1104. height: 56rpx;
  1105. border-radius: 36rpx;
  1106. border: 1rpx solid #DDDDDD;
  1107. text-align: center;
  1108. line-height: 56rpx;
  1109. margin-right: 40rpx;
  1110. }
  1111. .evaluatecancel{
  1112. width: 200rpx;
  1113. }
  1114. .defer {
  1115. color: #D53533;
  1116. font-size: 28rpx;
  1117. width: 150rpx;
  1118. height: 56rpx;
  1119. border-radius: 36rpx;
  1120. border: 1rpx solid #D53533;
  1121. text-align: center;
  1122. line-height: 56rpx;
  1123. margin-right: 40rpx;
  1124. }
  1125. .evaluateDetermine{
  1126. width: 200rpx;
  1127. }
  1128. .itemBox {
  1129. margin: 20rpx;
  1130. border-radius: 10rpx;
  1131. border: 2rpx solid #EEEEEE;
  1132. }
  1133. .itemTop {
  1134. padding: 18rpx 20rpx;
  1135. padding-right: 0;
  1136. background-color: #FFEFD5;
  1137. display: flex;
  1138. justify-content: space-between;
  1139. align-content: center;
  1140. }
  1141. .topTitle {
  1142. width: 104rpx;
  1143. font-size: 26rpx;
  1144. color: #333333;
  1145. margin-right: 20rpx;
  1146. text-align: right;
  1147. }
  1148. .leftItem {
  1149. font-size: 26rpx;
  1150. color: #333333;
  1151. margin-right: 20rpx;
  1152. flex-grow: 1;
  1153. /* 隐藏文字显示 ...不换行 */
  1154. overflow: hidden;
  1155. text-overflow: ellipsis;
  1156. white-space: nowrap;
  1157. }
  1158. .itemContent {
  1159. padding: 20rpx;
  1160. padding-right: 0;
  1161. background-color: #FFFFFF;
  1162. display: flex;
  1163. justify-content: space-between;
  1164. align-content: center;
  1165. }
  1166. .maBox {
  1167. width: 100%;
  1168. height: 100vh;
  1169. background: rgba(0, 0, 0, 0.4);
  1170. position: fixed;
  1171. left: 0;
  1172. top: 0;
  1173. z-index: 9999;
  1174. }
  1175. .querenMa {
  1176. width: 578;
  1177. height: 640rpx;
  1178. background: #ffffff;
  1179. margin: 0 86rpx;
  1180. margin-top: 50%;
  1181. border-radius: 24rpx;
  1182. }
  1183. .maTop {
  1184. display: flex;
  1185. justify-content: space-between;
  1186. align-items: center;
  1187. padding: 30rpx 20rpx 15rpx;
  1188. }
  1189. .maTitle {
  1190. color: #666666;
  1191. font-size: 26rpx;
  1192. text-align: center;
  1193. padding-left: 100rpx;
  1194. }
  1195. .swiper{
  1196. width: 100%;
  1197. height: 85%;
  1198. background: #FFFFFF;
  1199. }
  1200. .swiper-item{
  1201. width: 100%;
  1202. height: 100%;
  1203. }
  1204. .maCode {
  1205. font-size: 30rpx;
  1206. font-weight: 500;
  1207. color: #333333;
  1208. line-height: 42rpx;
  1209. margin-bottom: 40rpx;
  1210. text-align: center;
  1211. }
  1212. .maBoximg {
  1213. width: 400rpx;
  1214. height: 400rpx;
  1215. margin-left: 86rpx;
  1216. }
  1217. .authorizBox{
  1218. width: 100vw;
  1219. height: 100vh;
  1220. background: rgba(0, 0, 0, 0.5);
  1221. position: fixed;
  1222. top: 0;
  1223. left: 0;
  1224. }
  1225. .authorizCont{
  1226. margin-top: 30vh;
  1227. width: 564rpx;
  1228. height: 408rpx;
  1229. background: #FFFFFF;
  1230. border-radius: 24rpx;
  1231. margin-left: 93rpx;
  1232. position: relative;
  1233. }
  1234. .authorizCloseImg{
  1235. width: 62rpx;
  1236. height: 62rpx;
  1237. }
  1238. .sqLogoBox{
  1239. width: 180rpx;
  1240. height: 180rpx;
  1241. background: #FFFFFF;
  1242. border-radius: 90rpx;
  1243. text-align: center;
  1244. position: absolute;
  1245. top: -50rpx;
  1246. left: 192rpx;
  1247. }
  1248. .authorizName{
  1249. color: #333333;
  1250. line-height: 42rpx;
  1251. font-size: 30rpx;
  1252. text-align: center;
  1253. padding-top: 58rpx;
  1254. }
  1255. .authorizMs{
  1256. color: #999999;
  1257. line-height: 36rpx;
  1258. font-size: 26rpx;
  1259. width: 452rpx;
  1260. padding-top: 24rpx;
  1261. text-align: center;
  1262. margin-left: 56rpx;
  1263. }
  1264. .authorizContbutton{
  1265. width: 422rpx;
  1266. height: 88rpx;
  1267. background: #D53533;
  1268. border-radius: 44rpx;
  1269. line-height: 88rpx;
  1270. text-align: center;
  1271. font-size:30rpx;
  1272. color: #FFFFFF;
  1273. margin-top: 62rpx;
  1274. margin-left:71rpx;
  1275. }
  1276. .shopBoxpt{
  1277. margin-top: 20rpx;
  1278. }
  1279. button::after{
  1280. border: none;
  1281. }
  1282. button{
  1283. position: relative;
  1284. display: block;
  1285. margin-left: 0;
  1286. margin-right: 0;
  1287. padding-left: 0px;
  1288. padding-right: 0px;
  1289. box-sizing: border-box;
  1290. // font-size: 18px;
  1291. text-align: center;
  1292. text-decoration: none;
  1293. // line-height: 1;
  1294. line-height: 1.35;
  1295. // border-radius: 5px;
  1296. -webkit-tap-highlight-color: transparent;
  1297. overflow: hidden;
  1298. color: #000000;
  1299. background-color: #fff;
  1300. height: 100%;
  1301. }
  1302. .tuikuanBox {
  1303. width: 100%;
  1304. height: 100vh;
  1305. background: rgba(0, 0, 0, 0.4);
  1306. position: fixed;
  1307. left: 0;
  1308. top: 0;
  1309. z-index: 999;
  1310. }
  1311. .tuikuan {
  1312. width: 638rpx;
  1313. height: 664rpx;
  1314. background: #ffffff;
  1315. margin: 0 36rpx;
  1316. margin-top: 50%;
  1317. border-radius: 24rpx;
  1318. padding: 30rpx 20rpx;
  1319. }
  1320. .tuiTop {
  1321. display: flex;
  1322. justify-content: space-between;
  1323. margin-bottom: 36rpx;
  1324. }
  1325. .tuiTitle {
  1326. width: 56rpx;
  1327. height: 40rpx;
  1328. font-size: 28rpx;
  1329. font-weight: 500;
  1330. color: #3C3C3C;
  1331. line-height: 40rpx;
  1332. }
  1333. .contLine {
  1334. display: flex;
  1335. justify-content: space-between;
  1336. font-size: 28rpx;
  1337. padding: 30rpx 0;
  1338. border-bottom: 1px solid #EEEEEE;
  1339. }
  1340. .contlineLeft {
  1341. color: #666666;
  1342. line-height: 40rpx;
  1343. align-items: center;
  1344. }
  1345. .star {
  1346. width: 14rpx;
  1347. height: 14rpx;
  1348. padding-bottom: 5rpx;
  1349. }
  1350. .carModel {
  1351. width: 350rpx;
  1352. text-align: left;
  1353. }
  1354. .noColor {
  1355. color: #CCCCCC;
  1356. }
  1357. .carModelRight {
  1358. display: flex;
  1359. justify-content: flex-start;
  1360. align-items: center;
  1361. }
  1362. .contlineRight {
  1363. color: #333333;
  1364. line-height: 40rpx;
  1365. width: 400rpx;
  1366. text-align: right;
  1367. }
  1368. .contlineRightInput {
  1369. color: #333333;
  1370. text-align: left;
  1371. font-size: 28rpx;
  1372. min-height: 182rpx;
  1373. width: 400rpx;
  1374. }
  1375. .contlineRightJt {
  1376. width: 30rpx;
  1377. height: 30rpx;
  1378. }
  1379. .tuiBtns {
  1380. display: flex;justify-content: space-around;
  1381. padding: 40rpx 20rpx 10rpx;
  1382. }
  1383. .btn {
  1384. width: 250rpx;
  1385. height: 70rpx;
  1386. background: #F4F5F7;
  1387. border-radius: 10rpx;
  1388. font-size: 28rpx;
  1389. font-weight: 500;
  1390. color: #3C3C3C;
  1391. line-height: 70rpx;
  1392. text-align: center;
  1393. }
  1394. .btn2 {
  1395. width: 250rpx;
  1396. height: 70rpx;
  1397. background: #3F90F7;
  1398. border-radius: 10rpx;
  1399. font-size: 28rpx;
  1400. font-weight: 500;
  1401. color: #FFFFFF;
  1402. line-height: 70rpx;
  1403. text-align: center;
  1404. }
  1405. .writeoffLine{
  1406. display: flex;justify-content: space-between;
  1407. color: #999999;font-size: 24rpx;
  1408. line-height: 33rpx;padding-top: 8rpx;
  1409. }
  1410. .writeoffLineBox{
  1411. padding: 0 20rpx;
  1412. }
  1413. .detailedLineBox .detailedLine{
  1414. padding-bottom: 0rpx;
  1415. }
  1416. .writeoffXx .informationNum{
  1417. width: 500rpx;
  1418. }
  1419. .detailedLineBox{
  1420. padding-bottom: 10rpx;
  1421. }
  1422. </style>