order-info.vue 44 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589
  1. <template>
  2. <view class="order-info">
  3. <view class="jieshou-info-bg"></view>
  4. <view class="jieshou-info-header u-flex-col u-row-center">
  5. <view class="header-title u-flex" @click="showjinzhan = true" v-if="detail.stage == 'recommend'">
  6. <text class="text1" v-if="detail.recommend_status == 'pending'">待反馈</text>
  7. <text class="text1" v-if="detail.recommend_status == 'viewed'">待反馈</text>
  8. <text class="text1" v-if="detail.recommend_status == 'overdue'">反馈逾期</text>
  9. <text class="text1" v-if="detail.recommend_status == 'passed'">评估通过</text>
  10. <text class="text1" v-if="detail.recommend_status == 'interviewed'">发起面试</text>
  11. <text class="text1" v-if="detail.recommend_status == 'undetermined'">简历待定</text>
  12. <text class="text1" v-if="detail.recommend_status == 'failed'">已淘汰</text>
  13. <u-icon name="arrow-up-fill" style="transform: rotate(90deg) !important;" color="#fff" size="12"></u-icon>
  14. </view>
  15. <view class="header-title u-flex" @click="showjinzhan = true" v-if="detail.stage == 'failed'">
  16. <text class="text1" v-if="detail.failed_type == 'un_refused'">未淘汰</text>
  17. <text class="text1" v-if="detail.failed_type == 'assess_failed'">评估未通过</text>
  18. <text class="text1" v-if="detail.failed_type == 'interview_failed'">面试未通过</text>
  19. <text class="text1" v-if="detail.failed_type == 'give_up_interview'">放弃面试</text>
  20. <text class="text1" v-if="detail.failed_type == 'refuse_offer'">拒绝offer</text>
  21. <text class="text1" v-if="detail.failed_type == 'no_over'">未过保</text>
  22. <text class="text1" v-if="detail.failed_type == 'offer_failed'">offer阶段淘汰</text>
  23. <text class="text1" v-if="detail.failed_type == 'entry_failed'">入职阶段淘汰</text>
  24. <text class="text1" v-if="detail.failed_type == 'over_protected_failed'">过保阶段淘汰</text>
  25. <text class="text1" v-if="detail.failed_type == 'reject_interview'">拒绝面试</text>
  26. <u-icon name="arrow-up-fill" style="transform: rotate(90deg);" color="#fff" size="24"></u-icon>
  27. <text class="text2" v-if="detail.failed_type != 'un_refused'">已淘汰</text>
  28. </view>
  29. <view class="header-title u-flex" @click="showjinzhan = true" v-if="detail.stage == 'interview'">
  30. <text class="text1" v-if="detail.interview_status == 'pending'">未到达该阶段</text>
  31. <text class="text1" v-if="detail.interview_status == 'uninterviewed'">待面试</text>
  32. <text class="text1" v-if="detail.interview_status == 'interviewed'">已面试</text>
  33. <text class="text1" v-if="detail.interview_status == 'passed'">面试通过</text>
  34. <text class="text1" v-if="detail.interview_status == 'failed'">面试未通过</text>
  35. <text class="text1" v-if="detail.interview_status == 'accepted'">已接受面试</text>
  36. <text class="text1" v-if="detail.interview_status == 'refused'">已拒绝</text>
  37. <text class="text1" v-if="detail.interview_status == 'hire'">拟录用</text>
  38. <text class="text1" v-if="detail.interview_status == 'interview_finished'">面试已通过</text>
  39. <u-icon name="arrow-up-fill" style="transform: rotate(90deg);" color="#fff" size="24"></u-icon>
  40. <text class="text2" v-if="detail.interview_status == 'failed'">已淘汰</text>
  41. </view>
  42. <view class="header-title u-flex" @click="showjinzhan = true" v-if="detail.stage == 'offer'">
  43. <text class="text1" v-if="detail.offer_status == 'pending'">还未到达该阶段</text>
  44. <text class="text1" v-if="detail.offer_status == 'unissued'">待发放offer</text>
  45. <text class="text1" v-if="detail.offer_status == 'issued'">已发放offer</text>
  46. <text class="text1" v-if="detail.offer_status == 'accepted'">已接受</text>
  47. <text class="text1" v-if="detail.offer_status == 'rejected'">已拒绝</text>
  48. <text class="text1" v-if="detail.offer_status == 'failed'">已淘汰</text>
  49. <u-icon name="arrow-up-fill" style="transform: rotate(90deg);" color="#fff" size="24"></u-icon>
  50. <text class="text2" v-if="detail.offer_status == 'rejected'">已淘汰</text>
  51. <text class="dakuan-icon" v-if="detail.offer_status == 'accepted'">待打款</text>
  52. </view>
  53. <view class="header-title u-flex" @click="showjinzhan = true" v-if="detail.stage == 'entry'">
  54. <text class="text1" v-if="detail.entry_status == 'pending'">还未到达该阶段</text>
  55. <text class="text1" v-if="detail.entry_status == 'unentry'">未入职</text>
  56. <text class="text1" v-if="detail.entry_status == 'progressing'">未入职</text>
  57. <text class="text1" v-if="detail.entry_status == 'entry'">已入职</text>
  58. <text class="text1" v-if="detail.entry_status == 'failed'">已淘汰</text>
  59. <u-icon name="arrow-up-fill" style="transform: rotate(90deg);" color="#fff" size="24"></u-icon>
  60. </view>
  61. <view class="header-title u-flex" @click="showjinzhan = true" v-if="detail.stage == 'over_protected'">
  62. <text class="text1" v-if="detail.over_protected_status == 'pending'">还未到达该阶段</text>
  63. <text class="text1" v-if="detail.over_protected_status == 'progressing'">过保中</text>
  64. <text class="text1" v-if="detail.over_protected_status == 'passed'">已过保</text>
  65. <text class="text1" v-if="detail.over_protected_status == 'failed'">已淘汰</text>
  66. <u-icon name="arrow-up-fill" style="transform: rotate(90deg);" color="#fff" size="24"></u-icon>
  67. <text class="text2" v-if="detail.over_protected_status == 'failed'">已淘汰</text>
  68. <text class="dakuan-icon" v-if="detail.hr_pay_status == 'unpaid'">未支付</text>
  69. <text class="dakuan-icon" v-if="detail.hr_pay_status == 'paying'">支付中</text>
  70. <text class="dakuan-icon" v-if="detail.hr_pay_status == 'part'">部分支付</text>
  71. <text class="dakuan-icon" v-if="detail.hr_pay_status == 'paid'">已支付</text>
  72. <text class="dakuan-icon" v-if="detail.hr_pay_status == 'refunding'">退款中</text>
  73. <text class="dakuan-icon" v-if="detail.hr_pay_status == 'refunded'">已退款</text>
  74. <text class="dakuan-icon" v-if="detail.hr_pay_status == 'overdue'">已逾期</text>
  75. </view>
  76. <!-- status.状态:unpaid=未支付,paying=支付中,paid=已支付,refunding=退款中,refunded=已退款,overdue.已逾期, discount_amount.折扣金额 -->
  77. <view class="order-time">
  78. {{detail.updatetime || ''}}
  79. </view>
  80. <view class="header-jindu u-flex u-row-between">
  81. <view class="jindu-xian u-flex">
  82. <text v-for="(item,index) in jindu" :key="index"
  83. style="width: 25%;height: 100%;background-color: #fff;"></text>
  84. </view>
  85. <view class="jindu-item u-flex u-row-center" v-for="(item,index) in jindulist" :key="index"
  86. :class="{'jindu-item1' : index <= jindu}">
  87. <text></text>
  88. </view>
  89. </view>
  90. <view class="jindu-text u-flex u-row-between">
  91. <text :class="{text:jindu >= index}" v-for="(item,index) in jindulist" :key="index">{{item.name}}</text>
  92. </view>
  93. </view>
  94. <view class="mianshi-box" v-if="detail.stage == 'failed' && ['assess_failed'].includes(detail.failed_type)">
  95. <view class="mianshi-header u-flex u-row-between">
  96. <text class="text1">淘汰原因</text>
  97. </view>
  98. <view class="mianshi-item u-flex u-row-between" style="padding: 32rpx 0;">
  99. <text>{{detail.refused_reason}}</text>
  100. </view>
  101. </view>
  102. <view class="yiguobao-box u-flex-col u-col-center u-row-center"
  103. v-if="detail.stage == 'over_protected' && detail.over_protected_status == 'passed'">
  104. <image src="static/yiguobao.png" mode=""></image>
  105. <text>恭喜!您已过保</text>
  106. </view>
  107. <view class="mianshi-box" v-if="['issued','accepted','rejected'].includes(detail.offer_status) || detail.offer">
  108. <view class="mianshi-header u-flex u-row-between">
  109. <text class="text1">offer信息</text>
  110. <view v-if="detail.offer_status == 'issued'" class="mianshi-right u-flex u-row-center"
  111. style="background-color: #FFF9EB;">
  112. <text style="color: #F7B500;">待反馈</text>
  113. </view>
  114. <view v-if="detail.offer_status == 'accepted'" class="mianshi-right u-flex u-row-center"
  115. style="background-color: #F3FAF3;">
  116. <text style="color: #61BF60;">已通过</text>
  117. </view>
  118. <view v-if="detail.offer_status == 'rejected'" class="mianshi-right u-flex u-row-center"
  119. style="background-color: #FFEFF0;">
  120. <text style="color: #F2413A;">已拒绝</text>
  121. </view>
  122. </view>
  123. <view class="mianshi-item u-flex u-row-between">
  124. <text>任职岗位</text>
  125. <text>{{detail.job.job_name}}</text>
  126. </view>
  127. <view class="mianshi-item u-flex u-row-between">
  128. <text>入职时间</text>
  129. <text>{{detail.offer.entry_time}}</text>
  130. </view>
  131. <view class="mianshi-item u-flex u-row-between">
  132. <text>入职地址</text>
  133. <text>{{detail.offer.entry_address}}</text>
  134. </view>
  135. <view class="mianshi-item u-flex u-row-between">
  136. <text>入职薪资</text>
  137. <text>{{detail.offer.salary}}K·{{detail.offer.salary_type == 'year' ? '年薪' : '月薪'}}</text>
  138. </view>
  139. <view class="mianshi-item u-flex u-row-between">
  140. <text>福利待遇</text>
  141. <text>{{detail.offer.benefits}}</text>
  142. </view>
  143. </view>
  144. <swiper v-if="detail.interviews && detail.interviews.length > 0"
  145. @change="(e) => {mianshidetail = detail.interviews[e.detail.current]}"
  146. style="height: 250px;width: 702rpx;margin: 0 auto 20rpx auto;background-color: #fff;border-radius: 20rpx;"
  147. :indicator-dots="true" :interval="3000" :duration="1000">
  148. <swiper-item v-for="(item,index) in detail.interviews" :key="index">
  149. <view class="mianshi-box">
  150. <view class="mianshi-header u-flex u-row-between">
  151. <text class="text1">面试信息</text>
  152. <view v-if="item.status == 'failed'" class="mianshi-right u-flex u-row-center"
  153. style="background-color: #FCECEB;">
  154. <text style="color: #F2413A;">面试淘汰</text>
  155. </view>
  156. <view v-else class="mianshi-right u-flex u-row-center">
  157. <image src="static/mianshi.png" mode=""></image>
  158. <text>第{{item.period}}轮</text>
  159. </view>
  160. </view>
  161. <view class="mianshi-item u-flex u-row-between">
  162. <text>面试轮次</text>
  163. <text>{{item.period_sum}}轮</text>
  164. </view>
  165. <view class="mianshi-item u-flex u-row-between">
  166. <text>面试方式</text>
  167. <text>{{item.type == 'offline' ? '线下面试' : '线上面试'}}</text>
  168. </view>
  169. <view class="mianshi-item u-flex u-row-between">
  170. <text>面试时间</text>
  171. <text>{{item.interview_time}}</text>
  172. </view>
  173. <view class="mianshi-item u-flex u-row-between" v-if="item.type == 'offline'">
  174. <text>面试地点</text>
  175. <text>{{item.address}}</text>
  176. </view>
  177. <view class="mianshi-item u-flex u-row-between" v-else>
  178. <text>面试链接</text>
  179. <text>{{item.url}}</text>
  180. </view>
  181. <view class="mianshi-item u-flex u-row-between">
  182. <text>联系人</text>
  183. <text>{{item.contact_name}}</text>
  184. </view>
  185. <view class="mianshi-item u-flex u-row-between">
  186. <text>联系电话</text>
  187. <text>{{item.contact_mobile}}</text>
  188. </view>
  189. </view>
  190. </swiper-item>
  191. </swiper>
  192. <view class="mianshi-box">
  193. <view v-if="mianshidetail.status == 'failed'">
  194. <view class="mianshi-item u-flex u-row-between">
  195. <text>淘汰原因</text>
  196. <text>{{mianshidetail.refused_reason}}</text>
  197. </view>
  198. <view class="mianshi-item u-flex u-row-between">
  199. <text>推荐意见</text>
  200. <text>{{mianshidetail.recommend_opinion}}</text>
  201. </view>
  202. </view>
  203. </view>
  204. <view class="tuijian-box" v-if="detail.resume_recommend">
  205. <view class="tuijian-header u-flex u-row-between">
  206. <text>推荐信息</text>
  207. <text>推荐时间:{{detail.resume_recommend.createtime}}</text>
  208. </view>
  209. <view class="tuijian-item u-flex u-row-between">
  210. <text>推荐理由</text>
  211. <text>{{detail.resume_recommend.recommend_reason}}</text>
  212. </view>
  213. <view class="tuijian-item u-flex u-row-between">
  214. <text>求职理由</text>
  215. <text>{{detail.resume_recommend.job_reason}}</text>
  216. </view>
  217. <view class="tuijian-item u-flex u-row-between">
  218. <text>离职周期</text>
  219. <text>{{detail.resume_recommend.resign_period_text}}</text>
  220. </view>
  221. <view class="tuijian-item u-flex u-row-between">
  222. <text>目前薪资</text>
  223. <text>{{Number(detail.resume_recommend.current_salary)}}K/{{detail.resume_recommend.current_salary_type == 'month' ? '月' : '年'}}</text>
  224. </view>
  225. <view class="tuijian-item u-flex u-row-between">
  226. <text>期望薪资</text>
  227. <text>{{Number(detail.resume_recommend.expect_salary)}}K/{{detail.resume_recommend.expect_salary_type == 'month' ? '月' : '年'}}</text>
  228. </view>
  229. <view class="tuijian-item u-flex u-row-between">
  230. <text>可约面时间</text>
  231. <text>{{detail.resume_recommend.interview_time}}</text>
  232. </view>
  233. <view class="tuijian-user u-flex u-row-between" v-if="detail.recommend_info">
  234. <image :src="detail.recommend_info.avatar" class="user-img" mode=""></image>
  235. <view class="user-center u-flex-1 u-flex-col">
  236. <text>{{detail.recommend_info.username}}</text>
  237. <text>{{detail.recommend_info.type}}</text>
  238. </view>
  239. <text class="chat-btn">立即聊聊</text>
  240. </view>
  241. </view>
  242. <view class="jieshao-box">
  243. <!-- <view class="jieshao-user jieshao-user1 u-flex u-row-between">
  244. <view class="left u-flex-col">
  245. <text class="user-name">{{detail.resume.name || ''}}</text>
  246. <view class="user-tips1">
  247. {{detail.resume.province || ''}}·{{detail.resume.city || ''}}|{{detail.resume.experience || 0}}年|{{detail.resume.education_name || ''}} | {{detail.resume.salary || 0}}K/{{detail.resume.salary_type == 'year' ? '年' : '月'}}
  248. </view>
  249. </view>
  250. <view class="right">
  251. <image :src="detail.resume.avatar" class="img1" mode=""></image>
  252. <image v-if="detail.resume.sex == 'male'" src="../static/images/nan.png" class="sex" mode=""></image>
  253. <image v-if="detail.resume.sex == 'female'" src="../static/images/nv.png" class="sex" mode=""></image>
  254. </view>
  255. </view> -->
  256. <!-- <view class="u-flex item-other" v-if="detail.resume_job_experience[0]">
  257. <image src="../static/images/dizhi.png" mode=""></image>
  258. <text>{{detail.resume_job_experience[0].company_name}}·{{detail.resume_job_experience[0].job_name}}</text>
  259. </view>
  260. <view class="u-flex item-other" v-if="detail.resume_education_experience[0]">
  261. <image src="../static/images/zhiye.png" mode=""></image>
  262. <text>{{detail.resume_education_experience[0].name}}·{{detail.resume_education_experience[0].major}}</text>
  263. </view> -->
  264. <view class="content">
  265. <view class="u-flex u-row-between ">
  266. <view class="u-flex">
  267. <view class="font">{{detail.job.job_name}}</view>
  268. </view>
  269. <view class="money">{{detail.job.salary_min}}-{{detail.job.salary_max}}K
  270. <text v-if="detail.job.salary_structure">·{{detail.job.salary_structure}}</text>
  271. </view>
  272. </view>
  273. <view class="u-flex" style="margin: 16rpx 0 14rpx 0;">
  274. <text class="introduce">{{detail.company.name}}</text>
  275. <text class="introduce">{{detail.company.stage_name}}</text>
  276. <text class="introduce">{{detail.company.scale_name}}</text>
  277. </view>
  278. <view class="u-flex" style="margin-bottom: 24rpx;">
  279. <view class="tabs">
  280. {{detail.company.province}}{{detail.company.city}}
  281. </view>
  282. <view class="tabs">
  283. {{detail.job.education_name}}
  284. </view>
  285. <view class="tabs">
  286. {{detail.job.experience_name}}
  287. </view>
  288. </view>
  289. <view class="u-flex u-row-between u-col-center">
  290. <view class=" u-flex u-col-center">
  291. <image :src="detail.recommend_info.avatar" mode=""
  292. style="width: 50rpx;height: 50rpx;border-radius: 50%;">
  293. </image>
  294. <view class="" style="margin-left: 16rpx;">
  295. <text>{{detail.recommend_info.username}}</text>·
  296. <text>{{detail.recommend_info.type}}</text>
  297. </view>
  298. </view>
  299. </view>
  300. </view>
  301. <!-- <view class="bottom u-flex u-row-between">
  302. <text class="tou">{{detail.updatetime}}{{detail.updatetime?"投递":""}}</text>
  303. <text class="success">投递成功</text>
  304. </view> -->
  305. <!-- <view class="jieshao-user jieshao-user2 u-flex u-row-between" style="margin-top: 30rpx;">
  306. <view class="left u-flex-col">
  307. <text class="user-name">{{detail.job.job_name || ''}}</text>
  308. <view class="user-tips1">
  309. {{detail.job.work_province || ''}}·{{detail.job.work_city || ''}}|{{detail.job.experience_name || 0}}年|{{detail.job.education_name || ''}} | {{detail.job.salary_min || 0}}-{{detail.job.salary_max || 0}}K
  310. </view>
  311. </view>
  312. </view> -->
  313. <!-- <view class="u-flex item-other">
  314. <image src="static/address.png" mode=""></image>
  315. <text>{{detail.company.name || ''}}</text>
  316. </view>
  317. <view class="u-flex item-other">
  318. <image src="static/dingwei.png" mode=""></image>
  319. <text>{{detail.job.work_city || ''}}</text>
  320. </view> -->
  321. <view class="tongguo-offter u-flex u-row-between" v-if="detail.hr_pay_sum">
  322. <text>佣金金额</text>
  323. <text>¥{{detail.hr_pay_sum}}</text>
  324. </view>
  325. </view>
  326. <view class="pay-box" v-if="detail.hr_periods && detail.hr_periods.length > 0">
  327. <view class="pay-header u-flex u-row-between">
  328. <text class="text1">支付方式</text>
  329. <view class="u-flex">
  330. <text class="text2">{{detail.hr_periods.length}}次付款</text>
  331. <u-icon name="info-circle-fill" color="#999999" size="24"></u-icon>
  332. </view>
  333. </view>
  334. <view class="pay-item u-flex u-col-top u-row-between" v-for="(a,b) in detail.hr_periods" :key="b">
  335. <text class="text1">{{a.normal_time}}</text>
  336. <view class="u-flex-col u-col-center">
  337. <text class="xian1"></text>
  338. </view>
  339. <view class="text2 u-flex u-row-right">
  340. <text class="price" v-if="a.status == 'paid'" style="color: #76777D;">¥{{a.normal_price}}</text>
  341. <text class="price" v-else-if="a.status == 'unpaid'"
  342. style="color: #1A1C24">¥{{a.normal_price}}</text>
  343. <text class="price" v-else style="color: #F2413A;">¥{{a.normal_price}}</text>
  344. <text class="price-status1" v-if="a.status == 'paid'">已打款</text>
  345. <text class="price-status2" v-if="a.status == 'paying'">支付中</text>
  346. <text class="price-status2" v-if="a.status == 'refunding'">退款中</text>
  347. <text class="price-status2" v-if="a.status == 'refunded'">已退款</text>
  348. <text class="price-status2" v-if="a.status == 'overdue'">已逾期</text>
  349. </view>
  350. </view>
  351. </view>
  352. <view class="tuijian-box">
  353. <view class="tuijian-item u-flex u-row-between">
  354. <text>订单编号</text>
  355. <text>{{detail.order_no || ''}}</text>
  356. </view>
  357. <view class="tuijian-item u-flex u-row-between">
  358. <text>订单时间</text>
  359. <text>{{detail.createtime || ''}}</text>
  360. </view>
  361. </view>
  362. <view style="height: 100rpx;"></view>
  363. <view class="safe-area-inset-bottom"></view>
  364. <view class="jieshou-down">
  365. <view v-if="detail.stage == 'over_protected'">
  366. <view class="jieshou-btn u-flex u-row-right">
  367. <!-- unpaid.未支付,paying.支付中, part.部分支付,paid.已完成支付, refunding.退款中, refund_part. 部分退款, refunded.已退款 -->
  368. <view v-if="!['unpaid','paying'].includes(detail.hr_pay_status)" class="text2"
  369. @click="showdakuan = true">查看打款信息</view>
  370. <view
  371. v-if="!['unpaid','paying','refunding','refund_part','refunded'].includes(detail.hr_pay_status)"
  372. class="text2" @click="tokaipiao">申请开票</view>
  373. <view v-if="['unpaid','part'].includes(detail.hr_pay_status)" class="text4" @click="todakuan">确认打款
  374. </view>
  375. <view v-if="['paid'].includes(detail.hr_pay_status)" class="text4" @click="totuikuan()">申请退款</view>
  376. </view>
  377. </view>
  378. <view class="safe-area-inset-bottom"></view>
  379. </view>
  380. <u-popup :show="showjinzhan" mode="bottom" border-radius="32" height="900" :closeable="true" @close="showjinzhan = false">
  381. <view class="order-jindu-popup">
  382. <view class="order-jindu-header u-flex">
  383. <text>订单进展</text>
  384. <text>订单时长进展:{{gettime()}}</text>
  385. </view>
  386. <view class="order-jindu-body">
  387. <!-- <view class="body-user u-flex u-row-between">
  388. <image :src="detail.recommend_info.avatar" class="user-img" mode=""></image>
  389. <view class="user-center u-flex-col">
  390. <text class="text1">{{detail.recommend_info.username}}</text>
  391. <text class="text2">{{detail.recommend_info.type}}</text>
  392. </view>
  393. <text class="jubao-btn" @click="showjubao = true">举报</text>
  394. </view> -->
  395. <view class="body-item u-flex u-col-top" v-for="(item,index) in logs" :key="index">
  396. <view class="item-left u-flex-col u-col-center">
  397. <view class="first-box u-flex u-row-center" v-if="index == 0">
  398. <text></text>
  399. </view>
  400. <view class="last-box" v-else></view>
  401. <view class="left-xian" v-if="index < (logs.length - 1)"></view>
  402. </view>
  403. <view class="item-right u-flex-col" :style="{opacity: index == 0 ? 1 : 0.5}">
  404. <text>{{item.content}}</text>
  405. <text>{{item.createtime}}</text>
  406. </view>
  407. </view>
  408. </view>
  409. </view>
  410. </u-popup>
  411. <u-popup v-model="showdakuan" mode="center" border-radius="28">
  412. <view class="dakuan-popup">
  413. <view class="dakuan-title">
  414. 打款信息
  415. </view>
  416. <view class="dakuan-box">
  417. <view class="box-item u-flex">
  418. <text>企业全称</text>
  419. <text>{{dakuan.company_full_name}}</text>
  420. </view>
  421. <view class="box-item u-flex">
  422. <text>开户行</text>
  423. <text>{{dakuan.bank_name}}</text>
  424. </view>
  425. <view class="box-item u-flex">
  426. <text>银行账号</text>
  427. <text>{{dakuan.account_no}}</text>
  428. </view>
  429. </view>
  430. <view class="dakuan-popup-btn" @click="showdakuan = false">
  431. 我知道了
  432. </view>
  433. </view>
  434. </u-popup>
  435. </view>
  436. </template>
  437. <script>
  438. import {
  439. get_finance_config,
  440. order_detail
  441. } from "@/units/inquire.js"
  442. export default {
  443. data() {
  444. return {
  445. // stage 当前阶段: recommend=推荐阶段, interview=面试阶段, offer=offer阶段, entry=入职阶段, over_protected=过保阶段, failed=已淘汰
  446. // recommend_status 推荐阶段状态: pending=未查看, viewed=已查看, overdue=反馈逾期, passed=已通过, failed=淘汰, interviewed=发起面试, undetermined=简历待定
  447. jindulist: [{
  448. name: '推荐阶段',
  449. jindu: 0
  450. }, {
  451. name: '面试阶段',
  452. jindu: 1
  453. }, {
  454. name: 'offer阶段',
  455. jindu: 2
  456. }, {
  457. name: '入职阶段',
  458. jindu: 3
  459. }, {
  460. name: '过保阶段',
  461. jindu: 4
  462. }],
  463. // 0简历通过
  464. // 1一轮待面试,1.1一轮面试完毕,1.2面试通过,1.3面试未通过,1.4未来面试,
  465. // 2拟录用,2.1发offer,2.2接受offer,2.3拒绝offer
  466. // 3待入职
  467. // 4待过保,4.1已过保,4.2未过保
  468. // 0.6评估未通过, 1.4面试未通过, 1.5放弃面试, 2.3拒绝offer, 4.2未过保
  469. jindu: 0,
  470. showjinzhan: false,
  471. showdakuan: false,
  472. id: '',
  473. detail: {
  474. recommend_info: {}
  475. },
  476. logs: [],
  477. showjubao: false,
  478. jubao: '',
  479. mianshidetail: {},
  480. dakuan: {}
  481. }
  482. },
  483. onLoad(option) {
  484. this.id = option.id
  485. this.getconfig()
  486. },
  487. onShow() {
  488. this.getdata()
  489. },
  490. methods: {
  491. getconfig() {
  492. get_finance_config().then(res => {
  493. this.dakuan = res.data
  494. })
  495. },
  496. // tojubao(){
  497. // if(!this.jubao){
  498. // this.$u.toast("请输入举报原因")
  499. // return
  500. // }
  501. // uni.showLoading({
  502. // mask:true,
  503. // title:"请稍后"
  504. // })
  505. // // this.$u.post('/api/hr.order/report',{
  506. // // order_id:this.id,
  507. // // content:this.jubao
  508. // // }).then(res => {
  509. // // this.$u.toast(res.msg)
  510. // // if(res.code == 1){
  511. // // this.jubao = ''
  512. // // this.showjubao = false
  513. // // }
  514. // // })
  515. // },
  516. gettime() {
  517. if (this.detail.createtime) {
  518. var createtime = new Date(this.detail.createtime.replace(/-/g, "/")).getTime()
  519. var nowTime = new Date().getTime()
  520. var jindutime = parseInt((nowTime - createtime) / 1000)
  521. var day = parseInt(jindutime / 86400)
  522. var hour = parseInt(jindutime % 86400 / 3600)
  523. return `${day}天${hour}小时`
  524. } else {
  525. return ''
  526. }
  527. },
  528. getdata() {
  529. order_detail({
  530. order_id: this.id
  531. }).then(res => {
  532. this.detail = res.data
  533. if (this.detail.stage == 'failed') {
  534. this.jindu = {
  535. un_refused: 0,
  536. assess_failed: 0,
  537. interview_failed: 1,
  538. give_up_interview: 1,
  539. reject_interview: 1,
  540. refuse_offer: 2,
  541. offer_failed: 2,
  542. entry_failed: 3,
  543. over_protected_failed: 4,
  544. no_over: 4,
  545. } [this.detail.failed_type]
  546. } else {
  547. // recommend=推荐阶段, interview=面试阶段, offer=offer阶段, entry=入职阶段, over_protected=过保阶段,
  548. this.jindu = {
  549. recommend: 0,
  550. interview: 1,
  551. offer: 2,
  552. entry: 3,
  553. over_protected: 4,
  554. failed: 0
  555. } [this.detail.stage]
  556. }
  557. this.logs = this.detail.logs
  558. if (this.detail.interviews && this.detail.interviews.length > 0) {
  559. this.mianshidetail = this.detail.interviews[0]
  560. }
  561. })
  562. },
  563. tokaipiao() {
  564. var arr = []
  565. var title = []
  566. this.detail.hr_periods.forEach((val, key) => {
  567. if (val.status == 'paid') {
  568. arr.push(val)
  569. title.push(`第${key + 1}次付款`)
  570. }
  571. })
  572. if (title.length > 0) {
  573. uni.showActionSheet({
  574. itemList: title,
  575. success: (e) => {
  576. if (!arr[e.tapIndex].isInvoiceIng) {
  577. uni.navigateTo({
  578. url: "/pagesD/kaipiao?id=" + arr[e.tapIndex].id + "&price=" + arr[e
  579. .tapIndex].normal_price
  580. })
  581. } else {
  582. this.$u.toast("该订单已开票")
  583. }
  584. }
  585. })
  586. } else {
  587. this.$u.toast("暂无可开票订单")
  588. }
  589. },
  590. todakuan() {
  591. var periods_id = ''
  592. var paying_id = ''
  593. this.detail.hr_periods.forEach(val => {
  594. if ((val.status == 'unpaid') && !periods_id) {
  595. periods_id = val.id
  596. }
  597. if ((val.status == 'paying') && !paying_id) {
  598. paying_id = val.id
  599. }
  600. })
  601. console.log(paying_id);
  602. if (paying_id) {
  603. this.$u.toast("待后台审核成功后再发起支付")
  604. return
  605. }
  606. if (periods_id) {
  607. uni.navigateTo({
  608. url: "/pagesD/dakuan?id=" + periods_id
  609. })
  610. } else {
  611. this.$u.toast("暂无信息")
  612. }
  613. },
  614. totuikuan() {
  615. uni.navigateTo({
  616. url: "/pagesD/tuikuan?id=" + this.id
  617. })
  618. }
  619. }
  620. }
  621. </script>
  622. <style lang="scss">
  623. .order-info {
  624. .content {
  625. padding: 24rpx 20rpx;
  626. margin-top: 20rpx;
  627. background-color: #fff;
  628. border-radius: 16rpx;
  629. .bottom {
  630. border-top: 2rpx solid #F0F0F0;
  631. margin-top: 32rpx;
  632. padding-top: 20rpx;
  633. .tou {
  634. font-size: 20rpx;
  635. font-family: SFPro-Regular, SFPro;
  636. font-weight: 400;
  637. color: #666666;
  638. }
  639. .success {
  640. font-size: 20rpx;
  641. font-family: PingFangSC-Regular, PingFang SC;
  642. font-weight: 400;
  643. color: #F7B500;
  644. }
  645. }
  646. .font {
  647. font-size: 32rpx;
  648. font-family: PingFangSC-Medium, PingFang SC;
  649. font-weight: 500;
  650. color: #222222;
  651. line-height: 44rpx;
  652. max-width: 326rpx;
  653. overflow: hidden; //超出隐藏
  654. white-space: nowrap; //不换行,同一行展示
  655. text-overflow: ellipsis; //设置超出部分以省略号展示
  656. }
  657. .back {
  658. width: 58rpx;
  659. height: 32rpx;
  660. background: #FF5335;
  661. border-radius: 6rpx;
  662. font-size: 22rpx;
  663. font-family: PingFangSC-Regular, PingFang SC;
  664. font-weight: 400;
  665. color: #FFFFFF;
  666. line-height: 32rpx;
  667. text-align: center;
  668. margin-left: 16rpx;
  669. }
  670. .money {
  671. font-size: 32rpx;
  672. font-family: JDZhengHT-Regular, JDZhengHT;
  673. font-weight: 400;
  674. color: #0C66C2;
  675. }
  676. .introduce {
  677. height: 40rpx;
  678. font-size: 28rpx;
  679. font-family: PingFangSC-Regular, PingFang SC;
  680. font-weight: 400;
  681. color: #555555;
  682. line-height: 40rpx;
  683. margin-right: 16rpx;
  684. }
  685. .tabs {
  686. background: #F3F3F3;
  687. border-radius: 4rpx;
  688. padding: 6rpx 14rpx;
  689. margin-right: 16rpx;
  690. font-size: 24rpx;
  691. font-family: PingFangSC-Regular, PingFang SC;
  692. font-weight: 400;
  693. color: #5F5F5F;
  694. height: 34rpx;
  695. line-height: 34rpx;
  696. }
  697. }
  698. .taotai-popup {
  699. width: 686rpx;
  700. height: 690rpx;
  701. padding: 0 40rpx;
  702. .fuli-btn {
  703. margin-top: 50rpx;
  704. text {
  705. width: 686rpx;
  706. line-height: 88rpx;
  707. background: #0C66C2;
  708. border-radius: 12rpx;
  709. text-align: center;
  710. font-size: 32rpx;
  711. font-family: PingFangSC-Medium, PingFang SC;
  712. font-weight: 500;
  713. color: #FFFFFF;
  714. }
  715. }
  716. .taotai-textarea {
  717. background: #F4F4F4;
  718. border-radius: 16rpx;
  719. padding: 32rpx 24rpx 20rpx 24rpx;
  720. textarea {
  721. width: 100%;
  722. height: 280rpx;
  723. font-size: 28rpx;
  724. }
  725. text {
  726. font-size: 24rpx;
  727. font-family: SFPro-Regular, SFPro;
  728. font-weight: 400;
  729. color: #999999;
  730. }
  731. }
  732. .taotai-title {
  733. line-height: 122rpx;
  734. text-align: center;
  735. font-size: 36rpx;
  736. font-family: PingFangSC-Medium, PingFang SC;
  737. font-weight: 500;
  738. color: #222222;
  739. }
  740. .taotai-btn {
  741. margin-top: 52rpx;
  742. text:first-child {
  743. width: 280rpx;
  744. line-height: 92rpx;
  745. background: rgba(12, 102, 194, 0.1);
  746. border-radius: 12rpx;
  747. text-align: center;
  748. font-size: 36rpx;
  749. font-family: PingFangSC-Regular, PingFang SC;
  750. font-weight: 400;
  751. color: #0C66C2;
  752. }
  753. text:last-child {
  754. width: 280rpx;
  755. line-height: 92rpx;
  756. background: #0C66C2;
  757. border-radius: 12rpx;
  758. text-align: center;
  759. font-size: 36rpx;
  760. font-family: PingFangSC-Regular, PingFang SC;
  761. font-weight: 400;
  762. color: #FFFFFF;
  763. }
  764. }
  765. }
  766. .dakuan-popup {
  767. width: 686rpx;
  768. height: 536rpx;
  769. background: #FFFFFF;
  770. border-radius: 28rpx;
  771. padding: 0 40rpx;
  772. .dakuan-popup-btn {
  773. width: 270rpx;
  774. line-height: 80rpx;
  775. background: #0C66C2;
  776. border-radius: 12rpx;
  777. text-align: center;
  778. font-size: 32rpx;
  779. font-family: PingFangSC-Regular, PingFang SC;
  780. font-weight: 400;
  781. color: #FFFFFF;
  782. margin: 0 auto;
  783. }
  784. .dakuan-box {
  785. padding: 16rpx 20rpx;
  786. background: #F4F4F4;
  787. border-radius: 16rpx;
  788. margin-bottom: 40rpx;
  789. .box-item {
  790. padding: 16rpx 0;
  791. text:first-child {
  792. width: 154rpx;
  793. font-size: 28rpx;
  794. font-family: PingFangSC-Regular, PingFang SC;
  795. font-weight: 400;
  796. color: #1A1C24;
  797. }
  798. text:last-child {
  799. font-size: 28rpx;
  800. font-family: PingFangSC-Regular, PingFang SC;
  801. font-weight: 400;
  802. color: #1A1C24;
  803. }
  804. }
  805. }
  806. .dakuan-title {
  807. text-align: center;
  808. line-height: 118rpx;
  809. font-size: 36rpx;
  810. font-family: PingFangSC-Medium, PingFang SC;
  811. font-weight: 500;
  812. color: #222222;
  813. }
  814. }
  815. .jieshou-down {
  816. position: fixed;
  817. bottom: 0;
  818. left: 0;
  819. width: 750rpx;
  820. background-color: #fff;
  821. z-index: 999;
  822. box-shadow: 0rpx -1rpx 0rpx 0rpx rgba(175, 175, 175, 0.5);
  823. .jieshou-btn {
  824. padding: 8rpx 24rpx;
  825. .text1 {
  826. flex: 1;
  827. position: relative;
  828. .text1-more {
  829. position: absolute;
  830. width: 200rpx;
  831. height: 100rpx;
  832. left: -20rpx;
  833. bottom: 48rpx;
  834. .more-box {
  835. width: 200rpx;
  836. height: 100rpx;
  837. position: relative;
  838. image {
  839. width: 200rpx;
  840. height: 100rpx;
  841. position: absolute;
  842. top: 0;
  843. left: 0;
  844. z-index: -1;
  845. }
  846. text {
  847. font-size: 24rpx;
  848. font-family: PingFangSC-Regular, PingFang SC;
  849. font-weight: 400;
  850. color: #222222;
  851. margin-bottom: 10rpx;
  852. }
  853. }
  854. }
  855. .text1-text {
  856. font-size: 28rpx;
  857. font-family: PingFangSC-Regular, PingFang SC;
  858. font-weight: 400;
  859. color: #777777;
  860. }
  861. }
  862. .input {
  863. flex: 1;
  864. text-align: right;
  865. margin-right: 10rpx;
  866. font-size: 30rpx;
  867. }
  868. .text2 {
  869. line-height: 80rpx;
  870. border-radius: 12rpx;
  871. border: 1rpx solid #9F9F9F;
  872. text-align: center;
  873. font-size: 32rpx;
  874. font-family: PingFangSC-Regular, PingFang SC;
  875. font-weight: 400;
  876. color: #444444;
  877. margin-left: 24rpx;
  878. padding: 0 24rpx;
  879. }
  880. .text3 {
  881. line-height: 80rpx;
  882. background: #F2413A;
  883. border-radius: 12rpx;
  884. text-align: center;
  885. font-size: 32rpx;
  886. font-family: PingFangSC-Regular, PingFang SC;
  887. font-weight: 400;
  888. color: #FFFFFF;
  889. margin-left: 24rpx;
  890. padding: 0 24rpx;
  891. }
  892. .text4 {
  893. line-height: 80rpx;
  894. background: #0C66C2;
  895. border-radius: 12rpx;
  896. text-align: center;
  897. font-size: 32rpx;
  898. font-family: PingFangSC-Regular, PingFang SC;
  899. font-weight: 400;
  900. color: #FFFFFF;
  901. margin-left: 24rpx;
  902. padding: 0 24rpx;
  903. }
  904. }
  905. }
  906. .pay-box {
  907. width: 702rpx;
  908. background: #FFFFFF;
  909. border-radius: 20rpx;
  910. margin: 20rpx auto;
  911. padding: 0 20rpx;
  912. .pay-item {
  913. height: 70rpx;
  914. .xian1 {
  915. width: 18rpx;
  916. height: 18rpx;
  917. background: #FFFFFF;
  918. border: 2rpx solid #0C66C2;
  919. border-radius: 100rpx;
  920. margin-top: 8rpx;
  921. }
  922. .xian2 {
  923. width: 2rpx;
  924. height: 36rpx;
  925. background-color: #ECECEC;
  926. margin-top: 8rpx;
  927. }
  928. .text1 {
  929. font-size: 24rpx;
  930. font-family: SFPro-Regular, SFPro;
  931. font-weight: 400;
  932. color: #222222;
  933. width: 270rpx;
  934. }
  935. .text2 {
  936. flex: 1;
  937. .price {
  938. font-size: 28rpx;
  939. font-family: JDZhengHT-Regular, JDZhengHT;
  940. font-weight: 400;
  941. color: #1A1C24;
  942. }
  943. .price-status1 {
  944. width: 68rpx;
  945. line-height: 32rpx;
  946. background: #F3F3F3;
  947. border-radius: 6rpx;
  948. text-align: center;
  949. font-size: 20rpx;
  950. font-family: PingFangSC-Regular, PingFang SC;
  951. font-weight: 400;
  952. color: #76777C;
  953. margin-left: 8rpx;
  954. }
  955. .price-status2 {
  956. width: 68rpx;
  957. line-height: 32rpx;
  958. background: #FDECEB;
  959. border-radius: 6rpx;
  960. text-align: center;
  961. font-size: 20rpx;
  962. font-family: PingFangSC-Regular, PingFang SC;
  963. font-weight: 400;
  964. color: #F2413A;
  965. margin-left: 8rpx;
  966. }
  967. }
  968. }
  969. .pay-header {
  970. height: 88rpx;
  971. border-bottom: 2rpx solid #F4F4F4;
  972. margin-bottom: 24rpx;
  973. .text1 {
  974. font-size: 28rpx;
  975. font-family: PingFangSC-Regular, PingFang SC;
  976. font-weight: 400;
  977. color: #1A1C24;
  978. }
  979. .text2 {
  980. font-size: 28rpx;
  981. font-family: PingFangSC-Regular, PingFang SC;
  982. font-weight: 400;
  983. margin-right: 10rpx;
  984. }
  985. }
  986. }
  987. .order-jindu-popup {
  988. padding: 0 20rpx;
  989. background: #F3F3F3;
  990. min-height: 900rpx;
  991. .order-jindu-body {
  992. width: 710rpx;
  993. background: #FFFFFF;
  994. border-radius: 32rpx 32rpx 0rpx 0rpx;
  995. margin: 0 auto;
  996. min-height: 700rpx;
  997. padding-top:48rpx ;
  998. .body-item {
  999. .item-right {
  1000. text:first-child {
  1001. font-size: 28rpx;
  1002. font-family: PingFangSC-Regular, PingFang SC;
  1003. font-weight: 400;
  1004. color: #1A1C24;
  1005. margin-bottom: 12rpx;
  1006. }
  1007. text:last-child {
  1008. font-size: 22rpx;
  1009. font-family: SFPro-Light, SFPro;
  1010. font-weight: 300;
  1011. color: #1A1C24;
  1012. }
  1013. }
  1014. .item-left {
  1015. width: 64rpx;
  1016. padding-top: 10rpx;
  1017. .left-xian {
  1018. width: 2rpx;
  1019. height: 72rpx;
  1020. opacity: 0.2;
  1021. border: 2rpx solid #979797;
  1022. margin: 10rpx 0;
  1023. }
  1024. .last-box {
  1025. width: 16rpx;
  1026. height: 16rpx;
  1027. background: #D8D8D8;
  1028. border-radius: 100rpx;
  1029. }
  1030. .first-box {
  1031. width: 24rpx;
  1032. height: 24rpx;
  1033. background: rgba(12, 102, 194, 0.2);
  1034. border-radius: 100rpx;
  1035. text {
  1036. width: 12rpx;
  1037. height: 12rpx;
  1038. background: #0C66C2;
  1039. border-radius: 100rpx;
  1040. }
  1041. }
  1042. }
  1043. }
  1044. .body-user {
  1045. border-bottom: 2rpx solid #F3F3F3;
  1046. height: 116rpx;
  1047. padding: 0 20rpx;
  1048. margin-bottom: 22rpx;
  1049. .jubao-btn {
  1050. font-size: 22rpx;
  1051. font-family: PingFangSC-Regular, PingFang SC;
  1052. font-weight: 400;
  1053. color: #0C66C2;
  1054. }
  1055. .user-center {
  1056. flex: 1;
  1057. margin: 0 20rpx;
  1058. .text1 {
  1059. font-size: 28rpx;
  1060. font-family: PingFangSC-Regular, PingFang SC;
  1061. font-weight: 400;
  1062. color: #1A1C24;
  1063. }
  1064. .text2 {
  1065. font-size: 20rpx;
  1066. font-family: PingFangSC-Regular, PingFang SC;
  1067. font-weight: 400;
  1068. color: #1A1C24;
  1069. }
  1070. }
  1071. .user-img {
  1072. width: 64rpx;
  1073. height: 64rpx;
  1074. border-radius: 100rpx;
  1075. }
  1076. }
  1077. }
  1078. .order-jindu-header {
  1079. height: 114rpx;
  1080. text:first-child {
  1081. font-size: 36rpx;
  1082. font-family: PingFangSC-Medium, PingFang SC;
  1083. font-weight: 500;
  1084. color: #222222;
  1085. margin-right: 20rpx;
  1086. }
  1087. text:last-child {
  1088. font-size: 22rpx;
  1089. font-family: SFPro-Regular, SFPro;
  1090. font-weight: 400;
  1091. color: #1A1C24;
  1092. }
  1093. }
  1094. }
  1095. .jieshao-box {
  1096. width: 702rpx;
  1097. background: #FFFFFF;
  1098. border-radius: 20rpx;
  1099. margin: 20rpx auto;
  1100. // padding: 32rpx 20rpx 8rpx 20rpx;
  1101. box-sizing: border-box;
  1102. .tongguo-offter {
  1103. height: 90rpx;
  1104. border-top: 2rpx solid #F4F4F4;
  1105. text:first-child {
  1106. font-size: 26rpx;
  1107. font-family: PingFangSC-Regular, PingFang SC;
  1108. font-weight: 400;
  1109. color: #131415;
  1110. }
  1111. text:last-child {
  1112. font-size: 36rpx;
  1113. font-family: JDZhengHT-Regular, JDZhengHT;
  1114. font-weight: 400;
  1115. color: #F2413A;
  1116. }
  1117. }
  1118. .item-other {
  1119. margin-bottom: 16rpx;
  1120. padding-left: 32rpx;
  1121. image {
  1122. width: 28rpx;
  1123. height: 28rpx;
  1124. margin-right: 12rpx;
  1125. }
  1126. text {
  1127. font-size: 28rpx;
  1128. font-family: PingFangSC-Regular, PingFang SC;
  1129. font-weight: 400;
  1130. color: #222222;
  1131. }
  1132. }
  1133. .jieshao-user {
  1134. padding-left: 32rpx;
  1135. position: relative;
  1136. margin-bottom: 20rpx;
  1137. .left {
  1138. .user-name {
  1139. font-size: 32rpx;
  1140. font-family: PingFangSC-Medium, PingFang SC;
  1141. font-weight: 500;
  1142. color: #222222;
  1143. margin-bottom: 16rpx;
  1144. }
  1145. .user-tips1 {
  1146. font-size: 26rpx;
  1147. font-family: PingFangSC-Regular, PingFang SC;
  1148. font-weight: 400;
  1149. color: #666666;
  1150. }
  1151. }
  1152. .right {
  1153. width: 96rpx;
  1154. height: 96rpx;
  1155. position: relative;
  1156. .img1 {
  1157. width: 96rpx;
  1158. height: 96rpx;
  1159. border-radius: 100rpx;
  1160. }
  1161. .sex {
  1162. position: absolute;
  1163. bottom: 0;
  1164. right: 4rpx;
  1165. width: 24rpx;
  1166. height: 24rpx;
  1167. }
  1168. }
  1169. }
  1170. .jieshao-user1::after {
  1171. position: absolute;
  1172. content: " ";
  1173. width: 12rpx;
  1174. height: 12rpx;
  1175. background: #131415;
  1176. border-radius: 100rpx;
  1177. top: 16rpx;
  1178. left: 0;
  1179. }
  1180. .jieshao-user2::after {
  1181. position: absolute;
  1182. content: " ";
  1183. width: 12rpx;
  1184. height: 12rpx;
  1185. background: #0C66C2;
  1186. border-radius: 100rpx;
  1187. top: 16rpx;
  1188. left: 0;
  1189. }
  1190. }
  1191. .yiguobao-box {
  1192. width: 702rpx;
  1193. height: 392rpx;
  1194. background: #FFFFFF;
  1195. border-radius: 20rpx;
  1196. margin: 0 auto;
  1197. image {
  1198. width: 200rpx;
  1199. height: 200rpx;
  1200. margin-bottom: 32rpx;
  1201. }
  1202. text {
  1203. font-size: 32rpx;
  1204. font-family: PingFangSC-Regular, PingFang SC;
  1205. font-weight: 400;
  1206. color: #333333;
  1207. }
  1208. }
  1209. .mianshi-box {
  1210. padding: 0 20rpx;
  1211. width: 702rpx;
  1212. background: #FFFFFF;
  1213. border-radius: 20rpx;
  1214. margin: 0 auto 20rpx auto;
  1215. .mianshi-item {
  1216. padding: 12rpx 0;
  1217. font-size: 28rpx;
  1218. font-family: PingFangSC-Regular, PingFang SC;
  1219. font-weight: 400;
  1220. color: #333333;
  1221. }
  1222. .mianshi-header {
  1223. border-bottom: 2rpx solid #F4F4F4;
  1224. height: 84rpx;
  1225. .mianshi-right {
  1226. height: 44rpx;
  1227. background: rgba(12, 102, 194, 0.08);
  1228. border-radius: 6rpx;
  1229. padding: 0 12rpx;
  1230. text {
  1231. font-size: 22rpx;
  1232. font-family: PingFangSC-Regular, PingFang SC;
  1233. font-weight: 400;
  1234. color: #0C66C2;
  1235. margin-left: 8rpx;
  1236. }
  1237. image {
  1238. width: 24rpx;
  1239. height: 24rpx;
  1240. }
  1241. }
  1242. .text1 {
  1243. font-size: 28rpx;
  1244. font-family: PingFangSC-Medium, PingFang SC;
  1245. font-weight: 500;
  1246. color: #222222;
  1247. }
  1248. }
  1249. }
  1250. .tuijian-box {
  1251. width: 702rpx;
  1252. background: #FFFFFF;
  1253. border-radius: 20rpx;
  1254. margin: 20rpx auto;
  1255. padding: 0 20rpx;
  1256. box-sizing: border-box;
  1257. .tuijian-user {
  1258. margin-top: 8rpx;
  1259. border-top: 2rpx solid #F4F4F4;
  1260. height: 122rpx;
  1261. .user-img {
  1262. width: 80rpx;
  1263. height: 80rpx;
  1264. border-radius: 100rpx;
  1265. }
  1266. .chat-btn {
  1267. width: 140rpx;
  1268. line-height: 60rpx;
  1269. background: #0C66C2;
  1270. border-radius: 12rpx;
  1271. text-align: center;
  1272. font-size: 24rpx;
  1273. font-family: PingFangSC-Regular, PingFang SC;
  1274. font-weight: 400;
  1275. color: #FFFFFF;
  1276. }
  1277. .user-center {
  1278. margin: 0 20rpx;
  1279. text:first-child {
  1280. font-size: 30rpx;
  1281. font-family: PingFangSC-Medium, PingFang SC;
  1282. font-weight: 500;
  1283. color: #1A1C24;
  1284. margin-bottom: 6rpx;
  1285. }
  1286. text:last-child {
  1287. font-size: 22rpx;
  1288. font-family: PingFangSC-Regular, PingFang SC;
  1289. font-weight: 400;
  1290. color: #888888;
  1291. }
  1292. }
  1293. }
  1294. .tuijian-item {
  1295. padding: 12rpx 0;
  1296. font-size: 28rpx;
  1297. font-family: PingFangSC-Regular, PingFang SC;
  1298. font-weight: 400;
  1299. color: #333333;
  1300. }
  1301. .tuijian-header {
  1302. height: 84rpx;
  1303. border-bottom: 2rpx solid #F4F4F4;
  1304. margin-bottom: 6rpx;
  1305. text:first-child {
  1306. font-size: 28rpx;
  1307. font-family: PingFangSC-Medium, PingFang SC;
  1308. font-weight: 500;
  1309. color: #222222;
  1310. }
  1311. text:last-child {
  1312. font-size: 24rpx;
  1313. font-family: SFPro-Regular, SFPro;
  1314. font-weight: 400;
  1315. color: #999999;
  1316. }
  1317. }
  1318. }
  1319. .jieshou-info-header {
  1320. height: 284rpx;
  1321. padding: 0 32rpx;
  1322. .order-time {
  1323. font-size: 24rpx;
  1324. font-family: SFPro-Light, SFPro;
  1325. font-weight: 300;
  1326. color: #FFFFFF;
  1327. margin-top: 12rpx;
  1328. }
  1329. .header-jindu {
  1330. height: 76rpx;
  1331. margin: 0 32rpx;
  1332. position: relative;
  1333. .jindu-item {
  1334. width: 32rpx;
  1335. height: 32rpx;
  1336. background: rgba(255, 255, 255, 0);
  1337. border-radius: 100rpx;
  1338. text {
  1339. width: 16rpx;
  1340. height: 16rpx;
  1341. background: #FFFFFF;
  1342. border-radius: 100rpx;
  1343. }
  1344. }
  1345. .jindu-item1 {
  1346. background: rgba(255, 255, 255, 0.3);
  1347. }
  1348. .jindu-xian {
  1349. position: absolute;
  1350. top: 50%;
  1351. left: 50%;
  1352. width: calc(100% - 16rpx);
  1353. height: 4rpx;
  1354. background: rgba(256, 256, 256, 0.3);
  1355. transform: translate(-50%, -50%);
  1356. }
  1357. }
  1358. .jindu-text {
  1359. font-size: 24rpx;
  1360. font-family: PingFangSC-Regular, PingFang SC;
  1361. font-weight: 400;
  1362. color: #FFFFFF;
  1363. width: 100%;
  1364. text {
  1365. opacity: 0.8;
  1366. }
  1367. .text {
  1368. font-size: 24rpx;
  1369. font-family: PingFangSC-Medium, PingFang SC;
  1370. font-weight: 500;
  1371. color: #FFFFFF;
  1372. opacity: 1;
  1373. }
  1374. }
  1375. .header-title {
  1376. position: relative;
  1377. .dakuan-icon {
  1378. position: absolute;
  1379. right: -32rpx;
  1380. top: 10rpx;
  1381. width: 124rpx;
  1382. line-height: 48rpx;
  1383. background: rgba(255, 255, 255, 0.1);
  1384. border-radius: 24rpx 0rpx 0rpx 24rpx;
  1385. text-align: center;
  1386. font-size: 24rpx;
  1387. font-family: PingFangSC-Regular, PingFang SC;
  1388. font-weight: 400;
  1389. color: #F7B500;
  1390. }
  1391. .text2 {
  1392. width: 92rpx;
  1393. line-height: 40rpx;
  1394. border-radius: 4rpx;
  1395. opacity: 0.6;
  1396. border: 1rpx solid #FFFFFF;
  1397. text-align: center;
  1398. font-size: 20rpx;
  1399. font-family: PingFangSC-Regular, PingFang SC;
  1400. font-weight: 400;
  1401. color: #FFFFFF;
  1402. margin-left: 20rpx;
  1403. }
  1404. .text1 {
  1405. font-size: 48rpx;
  1406. font-family: PingFangSC-Medium, PingFang SC;
  1407. font-weight: 500;
  1408. color: #FFFFFF;
  1409. margin-right: 12rpx;
  1410. }
  1411. .text1-right {
  1412. height: 40rpx;
  1413. background: #FFFFFF;
  1414. border-radius: 8rpx;
  1415. padding: 0 14rpx;
  1416. margin-left: 12rpx;
  1417. image {
  1418. width: 21rpx;
  1419. height: 21rpx;
  1420. margin-right: 10rpx;
  1421. }
  1422. text {
  1423. font-size: 20rpx;
  1424. font-family: PingFangSC-Regular, PingFang SC;
  1425. font-weight: 400;
  1426. color: #FF6B34;
  1427. }
  1428. }
  1429. }
  1430. }
  1431. .jieshou-info-bg {
  1432. position: absolute;
  1433. top: 0;
  1434. left: 0;
  1435. width: 750rpx;
  1436. height: 460rpx;
  1437. background: linear-gradient(180deg, #0C66C2 0%, #0C66C2 50%, #F3F3F3 100%);
  1438. z-index: -1;
  1439. }
  1440. }
  1441. page {
  1442. background-color: #F4F4F4;
  1443. }
  1444. </style>
  1445. <style scoped>
  1446. ::v-deep .u-icon__icon{
  1447. transform: rotate(90deg) !important;
  1448. }
  1449. </style>