index.vue 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391
  1. <template>
  2. <view class="my-center-page">
  3. <view class="my-bg">
  4. <image src="@/static/images/my/icon/paopao.svg" mode="aspectFill" class="paopao paopao-one" />
  5. <image src="@/static/images/my/icon/paopao.svg" mode="aspectFill" class="paopao paopao-two" />
  6. <image src="@/static/images/my/icon/paopao.svg" mode="aspectFill" class="paopao paopao-three" />
  7. <view class="my-bg-bottom"></view>
  8. </view>
  9. <!-- 用户端 -->
  10. <block v-if="userType == 1">
  11. <view class="user-box">
  12. <view class="user-top">
  13. <view class="info-box-btn flex justify-end align-center" style="padding-right: 32rpx;"
  14. v-if="token && XCXIsSelect != '否'">
  15. <image src="@/static/images/jobApplicant/qiehuan.svg" mode="scaleToFill"
  16. style="margin-top: 40rpx;margin-right:30rpx" @click="goNav('switchRoles')" />
  17. <image src="@/static/images/jobApplicant/shezhi.svg" mode="scaleToFill"
  18. style="margin-top: 40rpx;" @click="goNav('/pages/my/setup')" />
  19. <!-- <image
  20. src="../../static/images/my/icon/selectUser.png"
  21. style="width: 40rpx; height: 100%; margin-right: 40rpx"
  22. mode=""
  23. @click="bindQe(userType)"
  24. >
  25. </image>
  26. <image
  27. src="../../static/images/my/icon/set.png"
  28. style="width: 36rpx; height: 36rpx;margin-top: 40rpx"
  29. mode="aspectFill"
  30. >
  31. </image> -->
  32. </view>
  33. </view>
  34. <view class="user-content">
  35. <view class="info flex justify-center"
  36. :style="{ paddingTop: token && XCXIsSelect != '否' ? '0' : '80rpx' }">
  37. <view class="info-box">
  38. <!-- <view
  39. class="info-box-btn flex justify-end align-center"
  40. v-if="token && XCXIsSelect != '否'"
  41. >
  42. <image
  43. src="@/static/images/jobApplicant/qiehuan.svg"
  44. mode="scaleToFill"
  45. style="margin-top: 40rpx"
  46. @click="bindQe(userType)"
  47. />
  48. <image
  49. src="../../static/images/my/icon/selectUser.png"
  50. style="width: 40rpx; height: 100%; margin-right: 40rpx"
  51. mode=""
  52. @click="bindQe(userType)"
  53. >
  54. </image>
  55. <image src="../../static/images/my/icon/set.png" style="width: 44rpx;height: 100%;" mode="">
  56. </image>
  57. </view> -->
  58. <view @click="goNav('/pages/my/onlineResume')"
  59. class="info-box-header flex justify-between align-center">
  60. <view style="width: 60%; height: 100%" class="flex align-center">
  61. <view class="info-box-header-l">
  62. <image :src="avatar ? avatar : '../../static/logo.png'" mode=""></image>
  63. </view>
  64. <view class="info-box-header-r">
  65. <view class="info-box-header-r-name flex align-center">
  66. <view class="" style="
  67. height: fit-content;
  68. overflow: hidden;
  69. white-space: nowrap;
  70. text-overflow: ellipsis;
  71. -o-text-overflow: ellipsis;
  72. ">
  73. {{ userName }}
  74. </view>
  75. <image v-if="isVip == true" src="../../static/images/my/isVip.png"
  76. style="margin-left: 10rpx; width: 80rpx; height: 30rpx" mode=""></image>
  77. </view>
  78. <view v-if="token && XCXIsSelect != '否'"
  79. class="info-box-header-r-bj flex align-center">
  80. 编辑简历
  81. <image src="@/static/images/jobApplicant/edit-user.svg"
  82. mode="scaleToFill" />
  83. </view>
  84. </view>
  85. </view>
  86. <view class="flex align-center status-txt">
  87. <u-icon name="arrow-right"></u-icon>
  88. </view>
  89. <!-- <view
  90. class="flex align-center status-txt"
  91. @click="currenStatus()"
  92. v-if="token && XCXIsSelect != '否'"
  93. >
  94. <image
  95. src="@/static/images/jobApplicant/qiehuan.svg"
  96. style="width: 50rpx; height: 50rpx"
  97. mode=""
  98. ></image>
  99. {{
  100. resumesStatus == 0
  101. ? "离职-随时到岗"
  102. :
  103. resumesStatus == 1
  104. ? "离职-正在找工作"
  105. : resumesStatus == 2
  106. ? "在职-考虑机会"
  107. : "在职-暂不考虑"
  108. }}
  109. </view> -->
  110. </view>
  111. <view class="info-box-num flex align-center justify-between" v-if="XCXIsSelect != '否'">
  112. <view class="info-box-num-td" @click="gojiLuList('/package/records/records', '沟通记录')">
  113. <view class="info-box-num-td-num"> {{ chatCount }} </view>
  114. <view class="info-box-num-td-name"> 沟通过 </view>
  115. </view>
  116. <view class="info-box-num-td" @click="gojiLuList('/package/records/records', '投递记录')">
  117. <view class="info-box-num-td-num">
  118. {{ deliveryCount }}
  119. </view>
  120. <view class="info-box-num-td-name"> 已投简历 </view>
  121. </view>
  122. <view class="info-box-num-td" @click="gojiLuList('/package/records/records', '面试记录')">
  123. <view class="info-box-num-td-num">
  124. {{ interviewCount }}
  125. </view>
  126. <view class="info-box-num-td-name"> 待面试 </view>
  127. </view>
  128. <view class="info-box-num-td" @click="gojiLuList('/package/records/records', '我的收藏')">
  129. <view class="info-box-num-td-num">
  130. {{ collectionCount }}
  131. </view>
  132. <view class="info-box-num-td-name"> 收藏 </view>
  133. </view>
  134. </view>
  135. </view>
  136. </view>
  137. <!-- 推广横幅 -->
  138. <view class="promo-banner" @click="goBusinessLicense(0)">
  139. <view class="banner-content">
  140. <view class="banner-text">
  141. <text class="banner-title">牛人找资金</text>
  142. <text class="banner-subtitle">带上你的超级项目,这里有无限的可能</text>
  143. </view>
  144. <view class="banner-button">
  145. <text class="button-text">立即参与</text>
  146. </view>
  147. </view>
  148. </view>
  149. <!-- vip -->
  150. <!-- <view
  151. class="vip flex justify-center"
  152. @click="goNav('/my/vip/index')"
  153. v-if="XCXIsSelect != '否'"
  154. >
  155. <view class="vip-box">
  156. <image
  157. class="vip-box-bg"
  158. src="../../static/images/my/icon/vip.png"
  159. mode=""
  160. ></image>
  161. <view class="vip-box-cont flex justify-center">
  162. <view
  163. class="flex justify-between align-center"
  164. style="width: 626rpx; z-index: 9; margin-top: 30rpx"
  165. >
  166. <view class="flex align-center">
  167. <image
  168. src="../../static/images/my/icon/vip2.png"
  169. style="width: 32rpx; height: 29rpx; margin-right: 5rpx"
  170. mode=""
  171. ></image>
  172. <image
  173. src="../../static/images/my/icon/vip3.png"
  174. style="width: 140rpx; height: 29rpx; margin-right: 20rpx"
  175. mode=""
  176. ></image>
  177. <text style="color: #914016; font-size: 24rpx">开通享受特权找工作</text>
  178. </view>
  179. <view
  180. class="flex align-center"
  181. style="
  182. color: #914016;
  183. font-size: 24rpx;
  184. font-weight: bold;
  185. z-index: 999;
  186. margin-right: 10rpx;
  187. "
  188. >
  189. {{ isVip == true ? "已开通" : "去开通" }}
  190. <u-icon name="play-right-fill" color="#914016" size="18"></u-icon>
  191. </view>
  192. </view>
  193. </view>
  194. </view>
  195. </view> -->
  196. <!-- 求职服务 -->
  197. <view class="jobServer flex justify-center" v-if="XCXIsSelect != '否'"
  198. :style="XCXIsSelect == '否' ? 'margin-top:30rpx' : ''">
  199. <view class="jobServer-box flex justify-center">
  200. <view class="jobServer-box-c">
  201. <!-- <view class="jobServer-box-title"> 求职服务 </view> -->
  202. <view class="jobServer-box-btn flex justify-between">
  203. <view class="jobServer-box-btn-item flex justify-center flex-wrap"
  204. @click="goNav('/pages/my/onlineResume')">
  205. <image src="../../static/images/index/qwzn.svg" mode=""></image>
  206. <view class=""> 在线简历 </view>
  207. </view>
  208. <view class="jobServer-box-btn-item flex justify-center flex-wrap"
  209. @click="goNav('/pages/my/attachment')">
  210. <image src="../../static/images/index/cpbk.svg" mode=""></image>
  211. <view class=""> 附件简历 </view>
  212. </view>
  213. <view class="jobServer-box-btn-item flex justify-center flex-wrap"
  214. @click="goNav('/package/jobIntention/tagManage')">
  215. <image src="../../static/images/index/fwzx.svg" mode=""></image>
  216. <view class=""> 求职意向 </view>
  217. </view>
  218. <view class="jobServer-box-btn-item flex justify-center flex-wrap"
  219. @click="gojiLuList('/package/records/records', '面试记录')">
  220. <image src="../../static/images/index/rmhd.svg" mode=""></image>
  221. <view class=""> 项目中心 </view>
  222. </view>
  223. </view>
  224. </view>
  225. </view>
  226. </view>
  227. <!-- 更多工具 -->
  228. <!-- 更多功能区域 -->
  229. <view class="more-functions">
  230. <text class="section-title">更多功能</text>
  231. <view class="function-grid">
  232. <!-- <view class="function-item">
  233. <image src="../../static/images/index/moreSkill1.svg" class="function-icon"></image>
  234. <text class="function-text">猎头服务</text>
  235. </view>
  236. <view class="function-item">
  237. <image src="../../static/images/index/moreSkill2.svg" class="function-icon"></image>
  238. <text class="function-text">精选公司</text>
  239. </view> -->
  240. <view class="function-item" @click="goNav('/pages/my/ruleCenter')">
  241. <image src="../../static/images/index/moreSkill3.svg" class="function-icon"></image>
  242. <text class="function-text">规则中心</text>
  243. </view>
  244. <view v-if="iosAudit == 0" class="function-item" @click="goChat">
  245. <image src="../../static/images/index/moreSkill4.svg" class="function-icon"></image>
  246. <text class="function-text">联系客服</text>
  247. </view>
  248. <view class="function-item" @click="showReportModal = true">
  249. <image src="../../static/images/index/wyts.svg" class="function-icon"></image>
  250. <text class="function-text">我要投诉</text>
  251. </view>
  252. <!-- <view v-if="token" class="function-item" @click="goOut()">
  253. <image src="../../static/images/my/icon/utils/utils8.png"
  254. class="function-icon"></image>
  255. <view class="function-text">
  256. 退出登录
  257. </view>
  258. </view> -->
  259. </view>
  260. </view>
  261. <view v-if="false" class="utils flex justify-center">
  262. <view class="utils-box">
  263. <view class="utils-box-c">
  264. <view class="util-list">
  265. <!-- <view class="flex justify-center flex-wrap" style="width: 102rpx;" @click="goNav('/package/my/resume')">
  266. <image src="../../static/images/my/icon/utils/utils1.png"
  267. style="width: 54rpx;height: 54rpx;" mode=""></image>
  268. <view class="" style="color: #1A1A1A;font-size: 24rpx;margin-top: 15rpx;">
  269. 我的简历
  270. </view>
  271. </view> -->
  272. <view class="util-item" @click="goNavNoLogin('/pages/my/invitationUser')">
  273. <image src="../../static/images/my/icon/utils/utils2.png"
  274. style="width: 54rpx; height: 54rpx" mode=""></image>
  275. <view class="" style="color: #1a1a1a; font-size: 24rpx; margin-top: 15rpx">
  276. 邀请好友
  277. </view>
  278. </view>
  279. <view v-if="XCXIsSelect != '否'" class="util-item"
  280. @click="goNavNoLogin('/my/setting/feedbackIndex')">
  281. <image src="../../static/images/my/icon/utils/help.png"
  282. style="width: 54rpx; height: 54rpx" mode=""></image>
  283. <view class="" style="color: #1a1a1a; font-size: 24rpx; margin-top: 15rpx">
  284. 帮助中心
  285. </view>
  286. </view>
  287. <view v-if="iosAudit == 0" class="util-item" @click="goChat">
  288. <image src="../../static/images/my/icon/utils/utils4.png"
  289. style="width: 54rpx; height: 54rpx" mode=""></image>
  290. <view class="" style="color: #1a1a1a; font-size: 24rpx; margin-top: 15rpx">
  291. 联系客服
  292. </view>
  293. </view>
  294. <view class="util-item" @click="goNavNoLogin('/my/setting/mimi')">
  295. <image src="../../static/images/my/icon/utils/utils5.png"
  296. style="width: 54rpx; height: 54rpx" mode=""></image>
  297. <view class="" style="color: #1a1a1a; font-size: 24rpx; margin-top: 15rpx">
  298. 隐私协议
  299. </view>
  300. </view>
  301. <!-- <view class="flex justify-center flex-wrap" style="width: 112rpx;" @click="goNav('/my/setting/xieyi')">
  302. <image src="../../static/images/my/icon/utils/utils6.png"
  303. style="width: 54rpx;height: 54rpx;" mode=""></image>
  304. <view class="" style="color: #1A1A1A;font-size: 24rpx;margin-top: 15rpx;">
  305. 用户协议
  306. </view>
  307. </view> -->
  308. <view class="util-item" @click="goNavNoLogin('/my/setting/xieyi')">
  309. <image src="../../static/images/my/icon/utils/utils6.png"
  310. style="width: 54rpx; height: 54rpx" mode=""></image>
  311. <view class="" style="color: #1a1a1a; font-size: 24rpx; margin-top: 15rpx">
  312. 用户协议
  313. </view>
  314. </view>
  315. <view class="util-item" @click="goNavNoLogin('/my/setting/about')">
  316. <!-- goNavNoLogin('/my/setting/about') -->
  317. <!-- pages/my/jobApplicant/startPage -->
  318. <image src="../../static/images/my/icon/utils/utils7.png"
  319. style="width: 54rpx; height: 54rpx" mode=""></image>
  320. <view class="" style="color: #1a1a1a; font-size: 24rpx; margin-top: 15rpx">
  321. 关于我们
  322. </view>
  323. </view>
  324. <view v-if="token" class="util-item" @click="goOut()">
  325. <image src="../../static/images/my/icon/utils/utils8.png"
  326. style="width: 54rpx; height: 54rpx" mode=""></image>
  327. <view class="" style="color: #1a1a1a; font-size: 24rpx; margin-top: 15rpx">
  328. 退出登录
  329. </view>
  330. </view>
  331. <view class="util-item" @click="goNav('/pages/my/ruleCenter')">
  332. <image src="../../static/images/my/icon/utils/utils5.png"
  333. style="width: 54rpx; height: 54rpx" mode=""></image>
  334. <view class="" style="color: #1a1a1a; font-size: 24rpx; margin-top: 15rpx">
  335. 规则中心
  336. </view>
  337. </view>
  338. <!-- <view class="flex justify-center flex-wrap" style="width: 112rpx;height: 0;" v-if="!token">
  339. </view>
  340. <view class="flex justify-center flex-wrap" style="width: 112rpx;height: 0;">
  341. </view> -->
  342. </view>
  343. </view>
  344. </view>
  345. </view>
  346. <!-- <view class="beian">客服电话 400-000-0100 工作时间08:00-22:00</view> -->
  347. <view class="beian">人力资源服务许可证 营业执照 深圳市人社局监督电话</view>
  348. <view class="beian">粤ICP备2025494494号</view>
  349. </view>
  350. </view>
  351. </block>
  352. <!-- 企业端 -->
  353. <block v-else>
  354. <view class="user-box">
  355. <view class="user-top">
  356. <view class="info flex justify-center">
  357. <view class="info-box">
  358. <view v-if="XCXIsSelect != '否'" class="info-box-btn flex justify-end align-center">
  359. <image src="@/static/images/jobApplicant/qiehuan.svg" mode="scaleToFill"
  360. style="margin-top: 40rpx;margin-right:30rpx" @click="goNav('switchRoles')" />
  361. <image src="@/static/images/jobApplicant/shezhi.svg" mode="scaleToFill"
  362. style="margin-top: 40rpx;" @click="goNav('/pages/my/setup')" />
  363. </view>
  364. <view class="info-box-header flex align-center" @click="goNav('/pages/my/userinfo')">
  365. <view class="info-box-header-l">
  366. <image :src="avatar ? avatar : '../../static/logo.png'" mode=""></image>
  367. </view>
  368. <view class="info-box-header-r">
  369. <view class="info-box-header-r-name flex align-center">
  370. {{ userName }}
  371. <image v-if="isCompanyVip"
  372. style="margin-left: 10rpx; width: 80rpx; height: 30rpx"
  373. src="../../static/images/my/isVip.png" mode=""></image>
  374. </view>
  375. <view v-if="XCXIsSelect != '否'" class="info-box-header-r-bj flex align-center">
  376. {{ companyInfo.companyAllName || "" }}
  377. <!-- <image src="@/static/images/jobApplicant/edit-user.svg" mode="scaleToFill" /> -->
  378. </view>
  379. </view>
  380. <view class="arrow-icon" style="margin-left: 10%;">
  381. <u-icon name="arrow-right" color="#FFF" size="24"></u-icon>
  382. </view>
  383. </view>
  384. <!-- 记录栏 -->
  385. <view class="info-box-num flex align-center justify-between" v-if="XCXIsSelect != '否'"
  386. style="padding: 0 100rpx;">
  387. <view class="info-box-num-td"
  388. @click="goNav('/pages/recruitmentData/communicationRecords?tab=0')">
  389. <view class="info-box-num-td-num"> {{ chatCount }} </view>
  390. <view class="info-box-num-td-name">沟通过</view>
  391. </view>
  392. <view class="info-box-num-td"
  393. @click="goNav('/pages/recruitmentData/communicationRecords?tab=1')">
  394. <view class="info-box-num-td-num"> {{ interviewCount }} </view>
  395. <view class="info-box-num-td-name">面试</view>
  396. </view>
  397. <view class="info-box-num-td"
  398. @click="goNav('/pages/recruitmentData/communicationRecords?tab=2')">
  399. <view class="info-box-num-td-num"> {{ collectionCount }} </view>
  400. <view class="info-box-num-td-name">收藏</view>
  401. </view>
  402. <!-- <view class="info-box-num-td" @click="goNav('/pages/my/onlineResume')">
  403. <view class="info-box-num-td-num"> 0 </view>
  404. <view class="info-box-num-td-name">分享</view>
  405. </view> -->
  406. </view>
  407. </view>
  408. </view>
  409. </view>
  410. <view class="user-content">
  411. <!-- 升级VIP -->
  412. <view v-if="iosAudit == 0" class="vip-upgrade-banner" @click="goVipUpgrade">
  413. <view class="vip-banner-content">
  414. <view class="vip-banner-text"> 升级VIP专享超值权益 </view>
  415. <view class="vip-upgrade-button"> 去升级 </view>
  416. </view>
  417. </view>
  418. <!-- 职位管理 -->
  419. <view class="job-management-card" @click="goJobManagement">
  420. <view class="job-management-content">
  421. <view class="job-count-text">
  422. <text class="count-number">{{ postPushCount || 0 }}</text>
  423. <text class="count-label">个在线职位</text>
  424. </view>
  425. <view class="arrow-icon">
  426. <u-icon name="arrow-right" color="#999" size="24"></u-icon>
  427. </view>
  428. </view>
  429. </view>
  430. <!-- vip -->
  431. <!-- <view
  432. class="vip flex justify-center"
  433. @click="goNav('/my/vip/index')"
  434. v-if="XCXIsSelect != '否'"
  435. >
  436. <view class="vip-box">
  437. <image
  438. class="vip-box-bg"
  439. src="../../static/images/my/icon/vip.png"
  440. mode=""
  441. ></image>
  442. <view class="vip-box-cont flex justify-center">
  443. <view
  444. class="flex justify-between align-center"
  445. style="width: 626rpx; z-index: 9; margin-top: 30rpx"
  446. >
  447. <view class="flex align-center">
  448. <image
  449. src="../../static/images/my/icon/vip2.png"
  450. style="width: 32rpx; height: 29rpx; margin-right: 5rpx"
  451. mode=""
  452. ></image>
  453. <image
  454. src="../../static/images/my/icon/vip4.png"
  455. style="width: 140rpx; height: 29rpx; margin-right: 20rpx"
  456. mode=""
  457. ></image>
  458. <text style="color: #914016; font-size: 24rpx">尊享超多特权</text>
  459. </view>
  460. <view
  461. class="flex align-center"
  462. style="
  463. color: #914016;
  464. font-size: 24rpx;
  465. font-weight: bold;
  466. z-index: 999;
  467. margin-right: 10rpx;
  468. "
  469. >
  470. {{ isCompanyVip == true ? "已开通" : "去开通" }}
  471. <u-icon name="play-right-fill" color="#914016" size="18"></u-icon>
  472. </view>
  473. </view>
  474. </view>
  475. </view>
  476. </view> -->
  477. <!-- 求职服务 -->
  478. <view class="jobServer flex justify-center" v-if="XCXIsSelect != '否'"
  479. :style="XCXIsSelect == '否' ? 'margin-top:30rpx' : ''">
  480. <view class="jobServer-box flex justify-center"
  481. style="padding: 0 80rpx;box-sizing: border-box;">
  482. <view class="jobServer-box-c">
  483. <!-- <view class="jobServer-box-title"> 招聘服务 </view> -->
  484. <view class="jobServer-box-btn flex justify-between">
  485. <view v-if="$queue.getData('companyId')"
  486. class="jobServer-box-btn-item flex justify-center flex-wrap"
  487. @click="goNav('/pages/recruitmentData/index')">
  488. <image src="../../static/images/index/shuju.svg" mode=""></image>
  489. <view class=""> 招聘数据 </view>
  490. </view>
  491. <view class="jobServer-box-btn-item flex justify-center flex-wrap"
  492. @click="goNavStatus('/pages/my/jobPosting')">
  493. <image src="../../static/images/index/qwzn.svg" mode=""></image>
  494. <view class=""> 发布招聘 </view>
  495. </view>
  496. <!-- <view class="jobServer-box-btn-item flex justify-center flex-wrap"
  497. @click="refreshJob()">
  498. <image src="../../static/images/index/cpbk.svg" mode=""></image>
  499. <view class=""> 招聘刷新 </view>
  500. </view> -->
  501. <view class="jobServer-box-btn-item flex justify-center flex-wrap"
  502. @click="$queue.getData('companyId') ? goNav('/my/renzheng/editCompany?companyId=' + $queue.getData('companyId')) : goNav('/pages/my/businessLicense')">
  503. <image src="../../static/images/index/fwzx.svg" mode=""></image>
  504. <view class=""> 公司主页 </view>
  505. </view>
  506. <!-- <view class="jobServer-box-btn-item flex justify-center flex-wrap"
  507. @click="goNav('/package/deliveryRecord/deliveryRecord')">
  508. <image src="../../static/images/index/rmhd.svg" mode=""></image>
  509. <view class=""> 已投简历 </view>
  510. </view> -->
  511. </view>
  512. </view>
  513. </view>
  514. </view>
  515. <!-- 推广横幅 -->
  516. <view class="promo-banner" @click="goBusinessLicense(1)">
  517. <view class="banner-content">
  518. <view class="banner-text">
  519. <text class="banner-title">资金找项目</text>
  520. <text class="banner-subtitle">亿职赞,为您提供前程似锦的优质项目!</text>
  521. </view>
  522. <view class="banner-button">
  523. <text class="button-text">立即参与</text>
  524. </view>
  525. </view>
  526. </view>
  527. <!-- 我的钱包 -->
  528. <!-- <view class="money flex justify-center" v-if="XCXIsSelect != '否'">
  529. <view class="money-box flex justify-center align-center">
  530. <view class="money-box-c flex justify-between">
  531. <view class="money-box-c-l flex flex-wrap" @click="goNav('/my/wallet/wallet')">
  532. <view class="money-box-c-l-name"> 我的钻石 </view>
  533. <view class="money-box-c-l-price flex align-center">
  534. {{ money }}
  535. <text style="margin-left: 10rpx">钻石</text>
  536. </view>
  537. </view>
  538. <view class="money-box-c-r flex flex-wrap" @click="goNav('/my/gird/browse')">
  539. <view class="money-box-c-r-name"> 浏览记录 </view>
  540. <view class="money-box-c-r-more"> 点击查看更多 </view>
  541. </view>
  542. </view>
  543. </view>
  544. </view> -->
  545. <!-- 我的招聘 -->
  546. <!-- <view
  547. class="jobServer flex justify-center"
  548. style="margin-top: 20rpx"
  549. v-if="XCXIsSelect != '否'"
  550. >
  551. <view class="jobServer-box flex justify-center">
  552. <view class="jobServer-box-c" @click="goNav('/my/order/index')">
  553. <view class="jobServer-box-title"> 我的招聘 </view>
  554. <view class="jobServer-box-btn flex justify-between">
  555. <view
  556. class="jobServer-box-btn-item flex justify-center flex-wrap item-width"
  557. @click.stop="goNav('/my/order/index?index=' + 1)"
  558. >
  559. <image
  560. src="../../static/images/my/my/my1.png"
  561. style="width: 46rpx; height: 38rpx"
  562. mode=""
  563. ></image>
  564. <view class=""> 待审核 </view>
  565. </view>
  566. <view
  567. class="jobServer-box-btn-item flex justify-center flex-wrap item-width"
  568. @click.stop="goNav('/my/order/index?index=' + 2)"
  569. >
  570. <image
  571. src="../../static/images/my/my/my2.png"
  572. style="width: 46rpx; height: 38rpx"
  573. mode=""
  574. ></image>
  575. <view class=""> 招聘中 </view>
  576. </view>
  577. <view
  578. class="jobServer-box-btn-item flex justify-center flex-wrap item-width"
  579. @click.stop="goNav('/my/order/index?index=' + 5)"
  580. >
  581. <image
  582. src="../../static/images/my/my/my3.png"
  583. style="width: 46rpx; height: 38rpx"
  584. mode=""
  585. ></image>
  586. <view class=""> 已关闭 </view>
  587. </view>
  588. <view
  589. class="jobServer-box-btn-item flex justify-center flex-wrap item-width"
  590. @click.stop="goNav('/my/order/index?index=' + 3)"
  591. >
  592. <image
  593. src="../../static/images/my/my/my4.png"
  594. style="width: 50rpx; height: 38rpx"
  595. mode=""
  596. ></image>
  597. <view class=""> 已拒绝 </view>
  598. </view>
  599. </view>
  600. </view>
  601. </view>
  602. </view> -->
  603. <!-- 更多工具 -->
  604. <view class="utils flex justify-center">
  605. <view class="utils-box flex justify-center">
  606. <view class="utils-box-c">
  607. <view class="util-list">
  608. <view class="util-item" @click="goNav('/pages/my/ruleCenter')">
  609. <image src="../../static/images/my/icon/utils/rulerCenter.png"
  610. style="width: 54rpx; height: 54rpx" mode=""></image>
  611. <view class="" style="color: #1a1a1a; font-size: 24rpx; margin-top: 15rpx">
  612. 规则中心
  613. </view>
  614. </view>
  615. <view v-if="iosAudit == 0" class="util-item"
  616. @click="goNav('/pages/my/VIP/benefits')">
  617. <image src="../../static/images/my/icon/utils/benefits.png"
  618. style="width: 54rpx; height: 54rpx" mode=""></image>
  619. <view class="" style="color: #1a1a1a; font-size: 24rpx; margin-top: 15rpx">
  620. 我的权益
  621. </view>
  622. </view>
  623. <!-- <view class="util-item" @click="showToast('功能开发中')">
  624. <image src="../../static/images/my/icon/utils/wallet.png"
  625. style="width: 54rpx; height: 54rpx" mode=""></image>
  626. <view class="" style="color: #1a1a1a; font-size: 24rpx; margin-top: 15rpx">
  627. 钱包
  628. </view>
  629. </view>
  630. <view class="util-item" @click="showToast('功能开发中')">
  631. <image src="../../static/images/my/icon/utils/invoice.png"
  632. style="width: 54rpx; height: 54rpx" mode=""></image>
  633. <view class="" style="color: #1a1a1a; font-size: 24rpx; margin-top: 15rpx">
  634. 发票
  635. </view>
  636. </view> -->
  637. <!-- <view class="util-item" @click="showToast('功能开发中')">
  638. <image src="../../static/images/my/icon/utils/user.png"
  639. style="width: 54rpx; height: 54rpx" mode=""></image>
  640. <view class="" style="color: #1a1a1a; font-size: 24rpx; margin-top: 15rpx">
  641. 个人主页
  642. </view>
  643. </view> -->
  644. <view v-if="$queue.getData('companyId')" class="util-item"
  645. @click="goNav('/pages/my/myCompany')">
  646. <image src="../../static/images/my/icon/utils/company.png"
  647. style="width: 54rpx; height: 54rpx" mode=""></image>
  648. <view class="" style="color: #1a1a1a; font-size: 24rpx; margin-top: 15rpx">
  649. 企业管理
  650. </view>
  651. </view>
  652. <view v-if="iosAudit == 0" class="util-item" @click="goChat">
  653. <image src="../../static/images/my/icon/utils/kefu.png"
  654. style="width: 54rpx; height: 54rpx" mode=""></image>
  655. <view class="" style="color: #1a1a1a; font-size: 24rpx; margin-top: 15rpx">
  656. 我的客服
  657. </view>
  658. </view>
  659. <!-- <view class="util-item" @click="goNav('/my/setting/mimi')">
  660. <image src="../../static/images/my/icon/utils/privacy.png"
  661. style="width: 54rpx; height: 54rpx" mode=""></image>
  662. <view class="" style="color: #1a1a1a; font-size: 24rpx; margin-top: 15rpx">
  663. 隐私规则
  664. </view>
  665. </view> -->
  666. <!-- <view v-if="XCXIsSelect != '否'" class="util-item"
  667. @click="goNav('/package/myLove/myLove')">
  668. <image src="../../static/images/my/icon/utils/myLovere.png"
  669. style="width: 54rpx; height: 54rpx" mode=""></image>
  670. <view class="" style="color: #1a1a1a; font-size: 24rpx; margin-top: 15rpx">
  671. 我的收藏
  672. </view>
  673. </view>
  674. <view v-if="XCXIsSelect != '否'" class="util-item" @click="goNav('/my/jilu/jilu')">
  675. <image src="../../static/images/my/icon/utils/jilu.png"
  676. style="width: 54rpx; height: 54rpx" mode=""></image>
  677. <view class="" style="color: #1a1a1a; font-size: 24rpx; margin-top: 15rpx">
  678. 面试记录
  679. </view>
  680. </view>
  681. <view class="util-item" v-if="XCXIsSelect != '否'"
  682. @click="goNav('/my/renzheng/zhuanrang')">
  683. <image src="../../static/images/my/icon/utils/qy.png"
  684. style="width: 54rpx; height: 54rpx" mode=""></image>
  685. <view class="" style="color: #1a1a1a; font-size: 24rpx; margin-top: 15rpx">
  686. 转让企业
  687. </view>
  688. </view>
  689. <view v-if="XCXIsSelect != '否'" class="util-item"
  690. @click="goNav('/package/blackList/blackList')">
  691. <image src="../../static/images/my/icon/utils/utils3.png"
  692. style="width: 54rpx; height: 54rpx" mode=""></image>
  693. <view class="" style="color: #1a1a1a; font-size: 24rpx; margin-top: 15rpx">
  694. 黑名单
  695. </view>
  696. </view>
  697. <view class="util-item" @click="goNav('/pages/my/invitationUserqy')">
  698. <image src="../../static/images/my/icon/utils/utils2.png"
  699. style="width: 54rpx; height: 54rpx" mode=""></image>
  700. <view class="" style="color: #1a1a1a; font-size: 24rpx; margin-top: 15rpx">
  701. 邀请好友
  702. </view>
  703. </view>
  704. <view class="util-item" @click="goChat">
  705. <image src="../../static/images/my/icon/utils/utils4.png"
  706. style="width: 54rpx; height: 54rpx" mode=""></image>
  707. <view class="" style="color: #1a1a1a; font-size: 24rpx; margin-top: 15rpx">
  708. 联系客服
  709. </view>
  710. </view>
  711. <view class="util-item" @click="goNav('/my/setting/mimi')">
  712. <image src="../../static/images/my/icon/utils/utils5.png"
  713. style="width: 54rpx; height: 54rpx" mode=""></image>
  714. <view class="" style="color: #1a1a1a; font-size: 24rpx; margin-top: 15rpx">
  715. 隐私协议
  716. </view>
  717. </view>
  718. <view class="util-item" @click="goNav('/my/setting/xieyi')">
  719. <image src="../../static/images/my/icon/utils/utils6.png"
  720. style="width: 54rpx; height: 54rpx" mode=""></image>
  721. <view class="" style="color: #1a1a1a; font-size: 24rpx; margin-top: 15rpx">
  722. 用户协议
  723. </view>
  724. </view>
  725. <view class="util-item" @click="goNav('/my/setting/about')">
  726. <image src="../../static/images/my/icon/utils/utils7.png"
  727. style="width: 54rpx; height: 54rpx" mode=""></image>
  728. <view class="" style="color: #1a1a1a; font-size: 24rpx; margin-top: 15rpx">
  729. 关于我们
  730. </view>
  731. </view>
  732. <view v-if="XCXIsSelect != '否'" class="util-item"
  733. @click="goNav('/my/setting/feedbackIndex')">
  734. <image src="../../static/images/my/icon/utils/help.png"
  735. style="width: 54rpx; height: 54rpx" mode=""></image>
  736. <view class="" style="color: #1a1a1a; font-size: 24rpx; margin-top: 15rpx">
  737. 帮助中心
  738. </view>
  739. </view>-->
  740. <!-- <view v-if="token" class="util-item" @click="goOut()">
  741. <image src="../../static/images/my/icon/utils/utils8.png"
  742. style="width: 54rpx; height: 54rpx" mode=""></image>
  743. <view class="" style="color: #1a1a1a; font-size: 24rpx; margin-top: 15rpx">
  744. 退出登录
  745. </view>
  746. </view> -->
  747. </view>
  748. </view>
  749. </view>
  750. </view>
  751. <!-- <view class="beian">客服电话 400-000-0100 工作时间08:00-22:00</view> -->
  752. <view class="beian">人力资源服务许可证 营业执照 深圳市人社局监督电话</view>
  753. <view class="beian">粤ICP备2025494494号</view>
  754. </view>
  755. </view>
  756. </block>
  757. <!-- 状态切换 -->
  758. <u-action-sheet :list="list" @click="click" :tips="tips" v-model="show"></u-action-sheet>
  759. <!-- Modal 弹框 -->
  760. <u-popup v-model="showReportModal" mode="center" border-radius="20">
  761. <view class="report-content">
  762. <view class="report-title">亿职赞的旅途中若出现任何不满,请通过以下方式进行投诉</view>
  763. <view class="report-desc-box">
  764. <view class="report-desc">投诉电话:18126311505</view>
  765. <view class="report-desc">投诉邮箱:service@bosszan.com</view>
  766. </view>
  767. <view class="report-desc-small">
  768. 我们将在核实后第一时间处理!<br>
  769. 十分感谢您的信任!
  770. </view>
  771. <view class="report-btn" @click="showReportModal = false">确认</view>
  772. </view>
  773. </u-popup>
  774. </view>
  775. </template>
  776. <script>
  777. export default {
  778. data() {
  779. return {
  780. tips: {
  781. text: "切换状态",
  782. color: "#909399",
  783. fontSize: 28,
  784. },
  785. showReportModal: false,
  786. reportContent: '',
  787. contact: '',
  788. show: false,
  789. list: [{
  790. id: 1,
  791. text: "离职-正在找工作",
  792. fontSize: 24,
  793. },
  794. {
  795. id: 2,
  796. text: "在职-考虑机会",
  797. fontSize: 24,
  798. },
  799. {
  800. id: 3,
  801. text: "在职-暂不考虑",
  802. fontSize: 24,
  803. },
  804. /* {
  805. id: '0',
  806. text: '离职-随时到岗',
  807. fontSize: 24,
  808. },
  809. {
  810. id: '1',
  811. text: '在职-月内到岗',
  812. fontSize: 24,
  813. },
  814. {
  815. id: '2',
  816. text: '在职-考虑机会',
  817. fontSize: 24,
  818. },
  819. {
  820. id: '3',
  821. text: '在职-暂不考虑',
  822. fontSize: 24,
  823. } */
  824. ],
  825. userType: 1,
  826. avatar: "../../static/logo.png",
  827. userName: "登录",
  828. XCXIsSelect: "否",
  829. userId: "",
  830. arr: [],
  831. showModal: true,
  832. CompanyList: {},
  833. money: "0",
  834. browseCount: 0,
  835. collectionCount: 0,
  836. deliveryCount: 0,
  837. chatCount: 0,
  838. interviewCount: 0,
  839. postPushCount: 0,//在线职位数量
  840. isVip: false, //用户是否是vip
  841. isCompanyVip: false, //企业是否是vip
  842. resumesStatus: 1, //求职状态
  843. resumesId: "",
  844. token: "",
  845. companyInfo: "",
  846. companyStatus: "", //企业认证状态(1:审核中 2:已通过 3:已拒绝 空:未认证)
  847. isAndroid: false,
  848. iosAudit: 1
  849. };
  850. },
  851. onLoad(e) {
  852. this.XCXIsSelect = this.$queue.getData("XCXIsSelect");
  853. var that = this
  854. //#ifdef APP-PLUS
  855. this.isAndroid = uni.getSystemInfoSync().platform == 'android'
  856. //#endif
  857. //#ifndef APP-PLUS
  858. this.isAndroid = true
  859. //#endif
  860. uni.$on('changeRole', function (res) {
  861. console.log(res.userType)
  862. if (res.userType == 1) {
  863. that.getUserInfo();
  864. that.getUserData();
  865. } else {
  866. that.getCompany();
  867. }
  868. that.$queue.changeTabbar(res.userType)
  869. })
  870. uni.$on('offLogin', function (res) {
  871. that.userId = "";
  872. that.userType = 1;
  873. that.money = 0;
  874. that.chatCount = 0;
  875. that.deliveryCount = 0;
  876. that.browseCount = 0;
  877. that.collectionCount = 0;
  878. that.postPushCount = 0;
  879. that.token = "";
  880. that.isLogin = true;
  881. that.userName = "登录";
  882. that.avatar = "../../static/logo.png";
  883. that.isVip = false;
  884. that.companyInfo = '';
  885. })
  886. console.log(uni.getStorageSync("userType"))
  887. this.$queue.changeTabbar(uni.getStorageSync("userType") || 1)
  888. },
  889. onUnload() {
  890. uni.$off('changeRole')
  891. },
  892. onShow() {
  893. this.token = uni.getStorageSync("token");
  894. console.log(this.token, "myToken");
  895. if (uni.getStorageSync("userType")) {
  896. this.userType = uni.getStorageSync("userType");
  897. }
  898. this.userId = uni.getStorageSync("userId");
  899. if (this.userId) {
  900. this.getUserInfo();
  901. this.getMyMoney();
  902. this.getUserData();
  903. if (this.userType == 1) {
  904. this.getJlInfo();
  905. } else {
  906. this.getCompanyStatus();
  907. }
  908. this.$Request.getT("/app/common/type/310").then((res) => {
  909. //消息未读提醒
  910. if (res.code == 0) {
  911. if (res.data && res.data.value) {
  912. this.arr.push(res.data.value);
  913. }
  914. }
  915. });
  916. this.$Request.getT("/app/common/type/337").then((res) => {
  917. //预约成功通知(通用)
  918. if (res.code == 0) {
  919. if (res.data && res.data.value) {
  920. this.arr.push(res.data.value);
  921. }
  922. }
  923. });
  924. this.$Request.getT("/app/common/type/338").then((res) => {
  925. //订单状态通知
  926. if (res.code == 0) {
  927. if (res.data && res.data.value) {
  928. this.arr.push(res.data.value);
  929. }
  930. }
  931. });
  932. // #ifdef MP-WEIXIN
  933. if (this.showModal) {
  934. this.openMsg();
  935. }
  936. // #endif
  937. }
  938. },
  939. methods: {
  940. // 入职公司
  941. goBusinessLicense(pageType) {
  942. uni.navigateTo({
  943. url: "/pages/my/ad?pageType=" + pageType,
  944. });
  945. },
  946. // 在线客服
  947. goChat() {
  948. let that = this;
  949. if (uni.getStorageSync("userType") == 1) {
  950. //用户端
  951. // #ifdef MP-WEIXIN
  952. wx.openCustomerServiceChat({
  953. extInfo: {
  954. url: that.$queue.getData("kefu"),
  955. },
  956. corpId: that.$queue.getData("kefuAppid"),
  957. success(res) {
  958. console.log(res);
  959. },
  960. });
  961. // #endif
  962. // #ifdef H5
  963. window.location.href = that.$queue.getData("kefu");
  964. // #endif
  965. // #ifdef APP
  966. let kefu = that.$queue.getData("kefu");
  967. console.log(kefu);
  968. plus.runtime.openURL(kefu, function (res) { });
  969. // #endif
  970. } else {
  971. //企业端
  972. // #ifdef MP-WEIXIN
  973. wx.openCustomerServiceChat({
  974. extInfo: {
  975. url: that.$queue.getData("kefuq"),
  976. },
  977. corpId: that.$queue.getData("kefuAppidq"),
  978. success(res) {
  979. console.log(res);
  980. },
  981. });
  982. // #endif
  983. // #ifdef H5
  984. window.location.href = that.$queue.getData("kefuq");
  985. // #endif
  986. // #ifdef APP
  987. let kefu = that.$queue.getData("kefuq");
  988. console.log(kefu);
  989. plus.runtime.openURL(kefu, function (res) { });
  990. // #endif
  991. }
  992. },
  993. showToast(title) {
  994. uni.showToast({
  995. title: title,
  996. icon: "none",
  997. });
  998. },
  999. goNavStatus(url) {
  1000. if (this.companyStatus) {
  1001. if (this.companyStatus == 1) {
  1002. uni.showToast({
  1003. title: "企业认证审核中,请审核通过后操作!",
  1004. icon: "none",
  1005. });
  1006. return;
  1007. }
  1008. if (this.companyStatus == 3) {
  1009. uni.showToast({
  1010. title: "企业认证审核未通过,请重新认证!",
  1011. icon: "none",
  1012. });
  1013. return;
  1014. }
  1015. uni.navigateTo({
  1016. url: url,
  1017. });
  1018. } else {
  1019. uni.showModal({
  1020. title: "提示",
  1021. content: "还未完成企业认证,请完成企业认证后操作",
  1022. success(ret) {
  1023. if (ret.confirm) {
  1024. uni.navigateTo({
  1025. url: "/pages/my/businessLicense",
  1026. })
  1027. }
  1028. },
  1029. });
  1030. }
  1031. },
  1032. currenStatus() {
  1033. if (uni.getStorageSync("token")) {
  1034. this.show = true;
  1035. } else {
  1036. this.noLogin();
  1037. }
  1038. },
  1039. //修改用户身份状态
  1040. async updateUserResumes(userType) {
  1041. // 调用接口提交
  1042. uni.showLoading({
  1043. title: "切换中..."
  1044. });
  1045. this.$Request.postJson("/app/user/updateUserResumes", {
  1046. userType: userType
  1047. })
  1048. .then((res) => {
  1049. uni.hideLoading();
  1050. if (res.code === 0) {
  1051. uni.setStorageSync('userType', userType)
  1052. uni.switchTab({
  1053. url: '/pages/my/index'
  1054. });
  1055. } else {
  1056. uni.switchTab({
  1057. url: '/pages/my/index'
  1058. });
  1059. }
  1060. })
  1061. .catch((err) => {
  1062. uni.hideLoading();
  1063. console.error("提交失败:", err);
  1064. uni.showToast({
  1065. title: "网络异常",
  1066. icon: "none"
  1067. });
  1068. return 1
  1069. });
  1070. },
  1071. //查询简历信息
  1072. getJlInfo() {
  1073. this.$Request.getT("/app/resumes/selectResumesByUserId").then((res) => {
  1074. if (res.code == 0) {
  1075. if (res.data) {
  1076. this.resumesStatus = res.data.resumesStatus;
  1077. this.resumesId = res.data.resumesId;
  1078. if (this.resumesStatus == 1) {
  1079. this.list = [{
  1080. id: 2,
  1081. text: "在职-考虑机会",
  1082. fontSize: 24,
  1083. },
  1084. {
  1085. id: 3,
  1086. text: "在职-暂不考虑",
  1087. fontSize: 24,
  1088. },
  1089. ];
  1090. } else if (this.resumesStatus == 2) {
  1091. this.list = [{
  1092. id: 1,
  1093. text: "离职-正在找工作",
  1094. fontSize: 24,
  1095. },
  1096. {
  1097. id: 3,
  1098. text: "在职-暂不考虑",
  1099. fontSize: 24,
  1100. },
  1101. ];
  1102. } else {
  1103. this.list = [{
  1104. id: 1,
  1105. text: "离职-正在找工作",
  1106. fontSize: 24,
  1107. },
  1108. {
  1109. id: 2,
  1110. text: "在职-考虑机会",
  1111. fontSize: 24,
  1112. },
  1113. ];
  1114. }
  1115. } else {
  1116. uni.showToast({
  1117. title: "暂无简历,请添加简历",
  1118. icon: "none",
  1119. });
  1120. }
  1121. } else {
  1122. uni.showToast({
  1123. title: res.msg,
  1124. icon: "none",
  1125. });
  1126. }
  1127. });
  1128. },
  1129. //切换求职状态
  1130. click(e) {
  1131. console.log(this.list[e].text);
  1132. let that = this;
  1133. uni.showModal({
  1134. title: "提示",
  1135. content: "确认求职状态切换为:" + that.list[e].text + " 吗?",
  1136. confirmColor: "#016BF6",
  1137. complete(ret) {
  1138. if (ret.confirm) {
  1139. let data = {
  1140. resumesId: that.resumesId,
  1141. resumesStatus: that.list[e].id,
  1142. };
  1143. that.$Request.postT("/app/resumes/updateResumesStatus", data).then((res) => {
  1144. if (res.code == 0) {
  1145. uni.showToast({
  1146. title: "已切换",
  1147. });
  1148. that.getJlInfo();
  1149. } else {
  1150. uni.showToast({
  1151. title: res.msg,
  1152. icon: "none",
  1153. });
  1154. }
  1155. });
  1156. }
  1157. },
  1158. });
  1159. },
  1160. //招聘刷新
  1161. refreshJob() {
  1162. if (uni.getStorageSync("userId")) {
  1163. this.$Request.postT("/app/postPush/refreshPostPush").then((res) => {
  1164. if (res.code == 0) {
  1165. uni.showToast({
  1166. title: "刷新成功",
  1167. });
  1168. } else {
  1169. if (this.isCompanyVip) {
  1170. uni.showToast({
  1171. title: res.msg,
  1172. icon: "none",
  1173. });
  1174. } else {
  1175. uni.showModal({
  1176. title: "提示",
  1177. content: "今日可刷新次数已使用完,开通会员可享更多刷新次数以及其他特权",
  1178. confirmText: "开通会员",
  1179. confirmColor: "#016BF6",
  1180. complete(ree) {
  1181. if (ree.confirm) {
  1182. uni.navigateTo({
  1183. url: "/my/vip/index",
  1184. });
  1185. }
  1186. },
  1187. });
  1188. }
  1189. }
  1190. });
  1191. } else {
  1192. this.noLogin();
  1193. }
  1194. },
  1195. //简历刷新
  1196. refresh() {
  1197. if (uni.getStorageSync("userId")) {
  1198. this.$Request.getT("/app/resumes/selectResumesByUserId").then((res) => {
  1199. if (res.code == 0) {
  1200. if (res.data && res.data.resumesId) {
  1201. this.$Request
  1202. .postT("/app/resumes/refreshResumes", {
  1203. resumesId: res.data.resumesId,
  1204. })
  1205. .then((ret) => {
  1206. if (ret.code == 0) {
  1207. uni.showToast({
  1208. title: "刷新成功",
  1209. });
  1210. } else {
  1211. if (this.isVip) {
  1212. uni.showToast({
  1213. title: ret.msg,
  1214. icon: "none",
  1215. });
  1216. } else {
  1217. uni.showModal({
  1218. title: "提示",
  1219. content: "今日可刷新次数已使用完,开通会员可享更多刷新次数以及其他特权",
  1220. confirmText: "开通会员",
  1221. confirmColor: "#016BF6",
  1222. complete(ree) {
  1223. if (ree.confirm) {
  1224. uni.navigateTo({
  1225. url: "/my/vip/index",
  1226. });
  1227. }
  1228. },
  1229. });
  1230. }
  1231. }
  1232. });
  1233. } else {
  1234. uni.showModal({
  1235. title: "提示",
  1236. content: "暂无简历,请添加简历后重试",
  1237. confirmColor: "#016BF6",
  1238. complete(ree) {
  1239. if (ree.confirm) {
  1240. uni.navigateTo({
  1241. url: "/package/my/resume",
  1242. });
  1243. }
  1244. },
  1245. });
  1246. }
  1247. } else {
  1248. uni.showToast({
  1249. title: res.msg,
  1250. icon: "none",
  1251. });
  1252. }
  1253. });
  1254. } else {
  1255. this.noLogin();
  1256. }
  1257. },
  1258. /**
  1259. * 获取投递记录、收藏记录、浏览记录
  1260. */
  1261. getUserData() {
  1262. this.$Request.getT("/app/user/userData").then((res) => {
  1263. if (res.code == 0) {
  1264. this.browseCount = res.data.browseCount;
  1265. this.collectionCount = res.data.collectionCount;
  1266. this.deliveryCount = res.data.deliveryCount;
  1267. this.chatCount = res.data.chatCount;
  1268. this.interviewCount = res.data.interviewCount;
  1269. this.postPushCount = res.data.postPushCount;
  1270. this.iosAudit = res.data.iosAudit
  1271. }
  1272. });
  1273. },
  1274. /**
  1275. * @param {Object} url 跳转路径
  1276. * @param {Object} name 名称
  1277. */
  1278. gojiLuList(url, name) {
  1279. if (uni.getStorageSync("token")) {
  1280. uni.navigateTo({
  1281. url: url + "?title=" + name,
  1282. });
  1283. } else {
  1284. this.noLogin();
  1285. }
  1286. },
  1287. // 跳转到职位管理页面
  1288. goJobManagement() {
  1289. let status = '';
  1290. if (this.companyInfo && !this.companyInfo.companyCertification) {
  1291. status = 1;
  1292. }
  1293. if (uni.getStorageSync("token")) {
  1294. uni.navigateTo({
  1295. url: `/pages/jobManagement/jobManagement?status=${status}&companyId=${this.companyInfo.companyId}`,
  1296. });
  1297. } else {
  1298. this.noLogin();
  1299. }
  1300. },
  1301. // VIP升级页面跳转
  1302. goVipUpgrade() {
  1303. if (uni.getStorageSync("token")) {
  1304. uni.navigateTo({
  1305. url: "/pages/my/VIP/benefits",
  1306. //url: "/my/vip/index"
  1307. });
  1308. } else {
  1309. this.noLogin();
  1310. }
  1311. },
  1312. /**
  1313. * 退出登录
  1314. */
  1315. goOut() {
  1316. let that = this;
  1317. uni.showModal({
  1318. title: "提示",
  1319. content: "确定退出登录吗?",
  1320. confirmColor: "#016BF6",
  1321. success: function (res) {
  1322. if (res.confirm) {
  1323. console.log("用户点击确定");
  1324. uni.removeStorageSync("userName");
  1325. uni.removeStorageSync("avatar");
  1326. uni.removeStorageSync("userId");
  1327. uni.removeStorageSync("token");
  1328. uni.removeStorageSync("phone");
  1329. uni.removeStorageSync("zhiFuBaoName");
  1330. uni.removeStorageSync("zhiFuBao");
  1331. uni.removeStorageSync("invitationCode");
  1332. uni.removeStorageSync("unionId");
  1333. uni.removeStorageSync("openId");
  1334. uni.removeStorageSync("isVIP");
  1335. uni.removeStorageSync("companyId");
  1336. // uni.removeStorageSync('userType')
  1337. uni.setStorageSync("userType", 1);
  1338. uni.setStorageSync("weixinPhone", false);
  1339. that.userId = "";
  1340. that.userType = 1;
  1341. that.money = 0;
  1342. that.deliveryCount = 0;
  1343. that.browseCount = 0;
  1344. that.collectionCount = 0;
  1345. that.token = "";
  1346. uni.showToast({
  1347. title: "退出成功!",
  1348. icon: "none",
  1349. });
  1350. that.isLogin = true;
  1351. that.userName = "登录";
  1352. that.avatar = "../../static/logo.png";
  1353. that.isVip = false;
  1354. // uni.reLaunch({
  1355. // url: '/pages/public/selectIdentity/selectIdentity'
  1356. // })
  1357. } else if (res.cancel) {
  1358. console.log("用户点击取消");
  1359. }
  1360. },
  1361. });
  1362. },
  1363. /**
  1364. * 我的钻石
  1365. */
  1366. getMyMoney() {
  1367. this.$Request.get("/app/userMoney/selectMyMoney").then((res) => {
  1368. if (res.code == 0) {
  1369. this.money = res.data.money;
  1370. }
  1371. });
  1372. },
  1373. /**
  1374. * 获取个人信息
  1375. */
  1376. getUserInfo() {
  1377. this.$Request.get("/app/user/selectUserById").then((res) => {
  1378. if (res.code == 0) {
  1379. uni.setStorageSync("weChatNum", res.data?.weChatNum);
  1380. uni.setStorageSync("zhiRate", res.data?.zhiRate);
  1381. if (res.data?.avatar) {
  1382. this.avatar = res.data.avatar;
  1383. }
  1384. if (res.data?.userName) {
  1385. this.userName = res.data.userName;
  1386. }
  1387. uni.setStorageSync("userId", res.data?.userId);
  1388. if (res.data?.companyId) {
  1389. uni.setStorageSync("companyId", res.data.companyId);
  1390. }
  1391. if (res.data?.userType == 1 || res.data?.userType == null) {
  1392. this.userType = 1;
  1393. uni.setStorageSync("userType", 1);
  1394. if (res.data?.isUserVip == 1) {
  1395. //判断用户是否是vip
  1396. this.isVip = true;
  1397. uni.setStorageSync("isUserVip", 1);
  1398. } else {
  1399. this.isVip = false;
  1400. }
  1401. } else {
  1402. this.userType = 2;
  1403. uni.setStorageSync("userType", 2);
  1404. uni.setStorageSync("vipDueTimes", res.data.vipDueTimes ? res.data.vipDueTimes : 0);
  1405. uni.setStorageSync("vipPostTimes", res.data.vipPostTimes ? res.data.vipPostTimes : 0);
  1406. if (res.data.isCompanyVip == 1) {
  1407. //判断企业用户是否是vip
  1408. this.isCompanyVip = true;
  1409. uni.setStorageSync("isCompanyVip", 0);
  1410. } else {
  1411. this.isCompanyVip = false;
  1412. }
  1413. }
  1414. }
  1415. });
  1416. },
  1417. goNavNoLogin(e) {
  1418. // #ifdef MP-WEIXIN
  1419. if (uni.getStorageSync("sendMsg")) {
  1420. // console.log('授权+1')
  1421. wx.requestSubscribeMessage({
  1422. tmplIds: this.arr,
  1423. success(re) {
  1424. var datas = JSON.stringify(re);
  1425. if (datas.indexOf("accept") != -1) {
  1426. // console.log(re)
  1427. }
  1428. },
  1429. fail: (res) => {
  1430. // console.log(res)
  1431. },
  1432. });
  1433. }
  1434. // #endif
  1435. uni.navigateTo({
  1436. url: e,
  1437. });
  1438. },
  1439. //跳转
  1440. goNav(e) {
  1441. if (this.userId) {
  1442. // #ifdef MP-WEIXIN
  1443. if (uni.getStorageSync("sendMsg")) {
  1444. // console.log('授权+1')
  1445. wx.requestSubscribeMessage({
  1446. tmplIds: this.arr,
  1447. success(re) {
  1448. var datas = JSON.stringify(re);
  1449. if (datas.indexOf("accept") != -1) {
  1450. // console.log(re)
  1451. }
  1452. },
  1453. fail: (res) => {
  1454. // console.log(res)
  1455. },
  1456. });
  1457. }
  1458. // #endif
  1459. uni.navigateTo({
  1460. url: e,
  1461. });
  1462. } else {
  1463. this.noLogin();
  1464. }
  1465. },
  1466. //获取企业认证状态(1:审核中 2:通过 3:拒绝)
  1467. getCompanyStatus() {
  1468. this.$Request.get("/app/company/selectCompanyByUserId").then((res) => {
  1469. if (res.code == 0 && res.data) {
  1470. console.log('我获取了公司信息')
  1471. this.companyInfo = res.data
  1472. this.companyStatus = res.data.status;
  1473. uni.setStorageSync("companyStatus", this.companyStatus);
  1474. uni.setStorageSync("companyName", res.data.companyAllName);
  1475. } else {
  1476. this.companyStatus = "";
  1477. this.companyInfo = {};
  1478. }
  1479. });
  1480. },
  1481. /**
  1482. * 获取用户企业实名数据
  1483. */
  1484. getCompany() {
  1485. this.$Request.get("/app/company/selectCompanyByUserId").then((res) => {
  1486. if (res.code == 0 && res.data) {
  1487. this.CompanyList = res.data;
  1488. if (this.CompanyList.status == 1) {
  1489. uni.showModal({
  1490. title: "提示",
  1491. content: "您提交的企业认证正在审核,是否查看修改?",
  1492. confirmColor: "#016BF6",
  1493. showCancel: false,
  1494. success: function (res) {
  1495. if (res.confirm) {
  1496. console.log("用户点击确定");
  1497. uni.navigateTo({
  1498. url: "/package/jobIntention/underReview",
  1499. });
  1500. } else if (res.cancel) {
  1501. console.log("用户点击取消");
  1502. }
  1503. },
  1504. });
  1505. } else if (this.CompanyList.status == 2) {
  1506. this.$Request
  1507. .postT("/app/user/updateUserEntity", {
  1508. userType: 2,
  1509. })
  1510. .then((res) => {
  1511. if (res.code == 0) {
  1512. // uni.setStorageSync('companyId', this.CompanyList.companyId)
  1513. this.getUserInfo();
  1514. }
  1515. });
  1516. this.getUserInfo();
  1517. // this.userType = 2
  1518. // uni.setStorageSync('userType', this.userType)
  1519. } else if (this.CompanyList.status == 3) {
  1520. uni.showModal({
  1521. title: "提示",
  1522. content: "您提交的企业认证已被拒绝,是否查看修改?",
  1523. confirmColor: "#016BF6",
  1524. success: function (res) {
  1525. if (res.confirm) {
  1526. console.log("用户点击确定");
  1527. uni.navigateTo({
  1528. url: "/package/jobIntention/underReview",
  1529. });
  1530. } else if (res.cancel) {
  1531. console.log("用户点击取消");
  1532. }
  1533. },
  1534. });
  1535. }
  1536. } else {
  1537. uni.showModal({
  1538. title: "提示",
  1539. content: "您还未企业认证,请先进行认证",
  1540. confirmColor: "#016BF6",
  1541. showCancel: false,
  1542. success: function (res) {
  1543. if (res.confirm) {
  1544. console.log("用户点击确定");
  1545. uni.navigateTo({
  1546. url: "/pages/my/businessLicense",
  1547. });
  1548. } else if (res.cancel) {
  1549. console.log("用户点击取消");
  1550. }
  1551. },
  1552. });
  1553. }
  1554. });
  1555. },
  1556. // 切换身份
  1557. bindQe() {
  1558. let that = this;
  1559. if (uni.getStorageSync("userId")) {
  1560. let index = 3 - this.userType
  1561. if (index == 1) {
  1562. //企业换个人
  1563. uni.showModal({
  1564. title: "提示",
  1565. content: "确认切换到求职者身份吗?",
  1566. confirmColor: "#016BF6",
  1567. complete(ret) {
  1568. if (ret.confirm) {
  1569. let data = {
  1570. userType: 1,
  1571. };
  1572. that.$Request.postT("/app/user/updateUserEntity", data).then((res) => {
  1573. if (res.code == 0) {
  1574. that.getUserInfo();
  1575. that.getUserData();
  1576. }
  1577. });
  1578. }
  1579. },
  1580. });
  1581. } else if (index == 2) {
  1582. //个人换企业
  1583. uni.showModal({
  1584. title: "提示",
  1585. content: "确认切换到招聘者身份吗?",
  1586. confirmColor: "#016BF6",
  1587. complete(ret) {
  1588. if (ret.confirm) {
  1589. that.getCompany();
  1590. }
  1591. },
  1592. });
  1593. }
  1594. } else {
  1595. this.noLogin();
  1596. }
  1597. },
  1598. // 开启订阅消息
  1599. openMsg() {
  1600. console.log("订阅消息");
  1601. var that = this;
  1602. uni.getSetting({
  1603. withSubscriptions: true, //是否获取用户订阅消息的订阅状态,默认false不返回
  1604. success(ret) {
  1605. console.log(ret.subscriptionsSetting, "------------------");
  1606. // if (ret.subscriptionsSetting.itemSettings && Object.keys(ret.subscriptionsSetting.itemSettings).length == 2) {
  1607. if (ret.subscriptionsSetting.itemSettings) {
  1608. uni.setStorageSync("sendMsg", true);
  1609. uni.openSetting({
  1610. // 打开设置页
  1611. success(rea) {
  1612. console.log(rea.authSetting);
  1613. },
  1614. });
  1615. } else {
  1616. // 用户没有点击“总是保持以上,不再询问”则每次都会调起订阅消息
  1617. console.log(99999);
  1618. uni.setStorageSync("sendMsg", false);
  1619. uni.showModal({
  1620. title: "提示",
  1621. content: "为了更好的体验,请绑定消息推送",
  1622. confirmText: "确定",
  1623. cancelText: "取消",
  1624. confirmColor: "#016BF6",
  1625. success: function (res) {
  1626. if (res.confirm) {
  1627. console.log(that.arr);
  1628. wx.requestSubscribeMessage({
  1629. tmplIds: that.arr,
  1630. success(re) {
  1631. console.log(JSON.stringify(re),
  1632. "++++++++++++++");
  1633. var datas = JSON.stringify(re);
  1634. if (datas.indexOf("accept") != -1) {
  1635. console.log(re);
  1636. uni.setStorageSync("sendMsg", true);
  1637. }
  1638. },
  1639. fail: (res) => {
  1640. console.log(res);
  1641. },
  1642. });
  1643. uni.setStorageSync("sendMsg", true);
  1644. console.log("确认");
  1645. that.showModal = false;
  1646. } else if (res.cancel) {
  1647. console.log("取消");
  1648. uni.setStorageSync("sendMsg", false);
  1649. that.showModal = true;
  1650. }
  1651. },
  1652. });
  1653. }
  1654. },
  1655. });
  1656. },
  1657. //未登录
  1658. noLogin() {
  1659. // uni.showModal({
  1660. // title: '提示',
  1661. // content: '您还未登录,请先登录',
  1662. // confirmColor:'#016BF6',
  1663. // success: function(res) {
  1664. // if (res.confirm) {
  1665. // console.log('用户点击确定');
  1666. // // uni.reLaunch({
  1667. // // url:'/pages/public/login'
  1668. // // })
  1669. // uni.navigateTo({
  1670. // url: '/pages/public/login'
  1671. // })
  1672. // } else if (res.cancel) {
  1673. // console.log('用户点击取消');
  1674. // }
  1675. // }
  1676. // })
  1677. uni.navigateTo({
  1678. url: "/pages/public/login",
  1679. });
  1680. },
  1681. },
  1682. };
  1683. </script>
  1684. <style lang="scss" scoped>
  1685. page {
  1686. background-color: #f5f7fa;
  1687. }
  1688. .report-content {
  1689. /* content */
  1690. width: 540rpx;
  1691. height: 590rpx;
  1692. /* 自动布局 */
  1693. display: flex;
  1694. flex-direction: column;
  1695. align-items: center;
  1696. justify-content: space-between;
  1697. gap: 33;
  1698. padding: 40rpx;
  1699. box-sizing: border-box;
  1700. .report-title {
  1701. width: 100%;
  1702. color: rgba(0, 0, 0, 1);
  1703. font-family: DM Sans;
  1704. font-size: 28rpx;
  1705. font-weight: 700;
  1706. line-height: 36rpx;
  1707. letter-spacing: 0%;
  1708. text-align: left;
  1709. }
  1710. .report-desc {
  1711. width: 100%;
  1712. color: rgba(158, 158, 158, 1);
  1713. font-family: DM Sans;
  1714. font-size: 28rpx;
  1715. font-weight: 400;
  1716. line-height: 36rpx;
  1717. letter-spacing: 0%;
  1718. text-align: left;
  1719. }
  1720. .report-desc-box {
  1721. width: 100%;
  1722. display: flex;
  1723. flex-direction: column;
  1724. justify-content: space-between;
  1725. gap: 20rpx;
  1726. padding: 66rpx 0;
  1727. box-sizing: border-box;
  1728. }
  1729. .report-desc-small {
  1730. width: 100%;
  1731. color: rgba(158, 158, 158, 1);
  1732. font-family: DM Sans;
  1733. font-size: 20rpx;
  1734. font-weight: 400;
  1735. line-height: 34rpx;
  1736. letter-spacing: 0%;
  1737. text-align: left;
  1738. padding-bottom: 66rpx;
  1739. }
  1740. .report-btn {
  1741. width: 100%;
  1742. border-radius: 999px;
  1743. background: linear-gradient(90.00deg, rgba(13, 39, 247, 1), rgba(19, 193, 234, 1) 100%);
  1744. color: rgba(255, 255, 255, 1);
  1745. font-family: DM Sans;
  1746. font-size: 32rpx;
  1747. font-weight: 400;
  1748. line-height: 48rpx;
  1749. letter-spacing: 0%;
  1750. text-align: center;
  1751. padding: 16rpx;
  1752. box-sizing: border-box;
  1753. }
  1754. }
  1755. .user-box {
  1756. position: absolute;
  1757. top: 0;
  1758. bottom: 0;
  1759. left: 0;
  1760. right: 0;
  1761. overflow: hidden;
  1762. display: flex;
  1763. flex-direction: column;
  1764. .user-top {
  1765. width: 100%;
  1766. flex-shrink: 0;
  1767. }
  1768. .user-content {
  1769. overflow: hidden;
  1770. overflow-y: auto;
  1771. width: 100%;
  1772. flex: 1;
  1773. .beian {
  1774. font-size: 20rpx;
  1775. color: #aaa;
  1776. text-align: center;
  1777. padding: 10rpx 0;
  1778. }
  1779. }
  1780. }
  1781. .status-txt {
  1782. color: #fff;
  1783. font-family: DM Sans;
  1784. font-size: 28rpx;
  1785. font-weight: 400;
  1786. line-height: 44rpx;
  1787. }
  1788. // 推广横幅
  1789. .promo-banner {
  1790. margin: 10rpx 40rpx 10rpx 40rpx;
  1791. background: var(--线性渐变,
  1792. linear-gradient(90deg, rgba(13, 39, 247, 1), rgba(19, 193, 234, 1) 100%));
  1793. border-radius: 24rpx;
  1794. padding: 16rpx 40rpx;
  1795. .banner-content {
  1796. display: flex;
  1797. justify-content: space-between;
  1798. align-items: center;
  1799. .banner-text {
  1800. flex: 1;
  1801. .banner-title {
  1802. color: rgba(255, 255, 255, 1);
  1803. font-family: HarmonyOS Sans SC;
  1804. font-size: 32rpx;
  1805. font-weight: 900;
  1806. line-height: 48rpx;
  1807. letter-spacing: 0%;
  1808. text-align: left;
  1809. display: block;
  1810. margin-bottom: 8rpx;
  1811. transform: skew(-10deg);
  1812. }
  1813. .banner-subtitle {
  1814. color: rgba(255, 255, 255, 0.7);
  1815. font-family: HarmonyOS Sans SC;
  1816. font-size: 26rpx;
  1817. font-weight: 400;
  1818. line-height: 36rpx;
  1819. letter-spacing: 0%;
  1820. text-align: left;
  1821. display: block;
  1822. }
  1823. }
  1824. .banner-button {
  1825. display: flex;
  1826. align-items: center;
  1827. justify-content: center;
  1828. width: 138rpx;
  1829. height: 48rpx;
  1830. border-radius: 26px;
  1831. background: #ffffff;
  1832. .button-text {
  1833. background: var(--线性渐变,
  1834. linear-gradient(90deg, rgba(13, 39, 247, 1), rgba(19, 193, 234, 1) 100%));
  1835. -webkit-background-clip: text;
  1836. -webkit-text-fill-color: transparent;
  1837. background-clip: text;
  1838. font-family: HarmonyOS Sans SC;
  1839. font-size: 26rpx;
  1840. font-weight: 500;
  1841. line-height: 18px;
  1842. letter-spacing: 0%;
  1843. text-align: left;
  1844. }
  1845. }
  1846. }
  1847. }
  1848. // VIP升级横幅
  1849. .vip-upgrade-banner {
  1850. margin: 20rpx 40rpx 10rpx 40rpx;
  1851. background: linear-gradient(165.89deg,
  1852. rgba(251, 231, 185, 1),
  1853. rgba(240, 176, 72, 1) 100%);
  1854. border-radius: 16rpx;
  1855. padding: 32rpx;
  1856. box-shadow: 0 4rpx 12rpx rgba(255, 154, 102, 0.3);
  1857. .vip-banner-content {
  1858. display: flex;
  1859. justify-content: space-between;
  1860. align-items: center;
  1861. .vip-banner-text {
  1862. flex: 1;
  1863. color: rgba(1, 107, 246, 1);
  1864. font-family: DM Sans;
  1865. font-size: 24rpx;
  1866. font-weight: 700;
  1867. line-height: 40rpx;
  1868. letter-spacing: 0px;
  1869. text-align: left;
  1870. }
  1871. .vip-upgrade-button {
  1872. display: flex;
  1873. align-items: center;
  1874. justify-content: center;
  1875. width: 100rpx;
  1876. height: 42rpx;
  1877. background: radial-gradient(184.79% 115.97% at 92% 113.99999999999999%,
  1878. rgba(255, 102, 0, 0.21),
  1879. rgba(255, 65, 86, 0.6) 100%);
  1880. border-radius: 28rpx;
  1881. color: rgba(255, 255, 255, 1);
  1882. font-family: HarmonyOS Sans SC;
  1883. font-size: 18rpx;
  1884. font-weight: 500;
  1885. line-height: 18rpx;
  1886. letter-spacing: 0%;
  1887. text-align: left;
  1888. box-shadow: 0 2rpx 8rpx rgba(255, 107, 107, 0.3);
  1889. }
  1890. }
  1891. }
  1892. .job-management-card {
  1893. margin: 0rpx 40rpx;
  1894. background: #ffffff;
  1895. border-radius: 12rpx;
  1896. padding: 12rpx 32rpx;
  1897. box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.05);
  1898. .job-management-content {
  1899. display: flex;
  1900. align-items: center;
  1901. justify-content: space-between;
  1902. .job-count-text {
  1903. display: flex;
  1904. align-items: center;
  1905. .count-number {
  1906. color: #016bf6;
  1907. font-size: 32rpx;
  1908. font-weight: 600;
  1909. margin-right: 8rpx;
  1910. }
  1911. .count-label {
  1912. color: #666666;
  1913. font-size: 28rpx;
  1914. font-weight: 400;
  1915. }
  1916. }
  1917. .arrow-icon {
  1918. display: flex;
  1919. align-items: center;
  1920. justify-content: center;
  1921. }
  1922. }
  1923. }
  1924. .my-center-page {
  1925. position: absolute;
  1926. left: 0;
  1927. right: 0;
  1928. top: 0;
  1929. bottom: 0;
  1930. }
  1931. .my-bg {
  1932. /* 容器 52 */
  1933. width: 100%;
  1934. height: 656rpx;
  1935. background: linear-gradient(90deg, rgba(13, 39, 247, 1), rgba(19, 193, 234, 1) 100%);
  1936. position: absolute;
  1937. top: 0;
  1938. left: 0;
  1939. right: 0;
  1940. z-index: -1;
  1941. .paopao {
  1942. position: absolute;
  1943. width: 662rpx;
  1944. height: 662rpx;
  1945. }
  1946. .paopao-one {
  1947. left: -221rpx;
  1948. top: -170rpx;
  1949. }
  1950. .paopao-two {
  1951. top: -374rpx;
  1952. right: 0rpx;
  1953. }
  1954. .paopao-three {
  1955. width: 320rpx;
  1956. height: 320rpx;
  1957. bottom: -170rpx;
  1958. left: -40rpx;
  1959. }
  1960. .my-bg-bottom {
  1961. background: linear-gradient(to top,
  1962. rgba(250, 250, 250, 1),
  1963. rgba(255, 255, 255, 0.5) 46%,
  1964. rgba(255, 255, 255, 0) 100%);
  1965. height: 328rpx;
  1966. position: absolute;
  1967. left: 0;
  1968. right: 0;
  1969. bottom: 0;
  1970. }
  1971. }
  1972. .info-box-btn {
  1973. width: 100%;
  1974. padding: 44rpx 0 40rpx 0;
  1975. box-sizing: border-box;
  1976. image {
  1977. width: 50rpx;
  1978. height: 50rpx;
  1979. padding: 9rpx;
  1980. }
  1981. }
  1982. .info {
  1983. width: 100%;
  1984. box-sizing: border-box;
  1985. .info-box {
  1986. width: 686rpx;
  1987. padding-bottom: 20rpx;
  1988. .info-box-header {
  1989. width: 100%;
  1990. margin-top: 20rpx;
  1991. height: 90rpx;
  1992. .info-box-header-l {
  1993. margin-right: 20rpx;
  1994. image {
  1995. width: 128rpx;
  1996. height: 128rpx;
  1997. border-radius: 50%;
  1998. display: block;
  1999. }
  2000. }
  2001. .info-box-header-r {
  2002. width: 80%;
  2003. .info-box-header-r-name {
  2004. color: rgba(255, 255, 255, 1);
  2005. font-family: DM Sans;
  2006. font-size: 48rpx;
  2007. font-weight: 400;
  2008. line-height: 72rpx;
  2009. text-align: left;
  2010. }
  2011. .info-box-header-r-bj {
  2012. color: rgba(255, 255, 255, 1);
  2013. font-family: DM Sans;
  2014. font-size: 24rpx;
  2015. font-weight: 400;
  2016. line-height: 32rpx;
  2017. letter-spacing: 0%;
  2018. text-align: left;
  2019. margin-top: 8rpx;
  2020. image {
  2021. width: 32rpx;
  2022. height: 32rpx;
  2023. margin-left: 8rpx;
  2024. }
  2025. }
  2026. }
  2027. }
  2028. .info-box-num {
  2029. margin-top: 50rpx;
  2030. padding: 0 24rpx;
  2031. // padding: 0 100rpx;
  2032. box-sizing: border-box;
  2033. .info-box-num-td {
  2034. // width: 200rpx;
  2035. .info-box-num-td-num {
  2036. width: 100%;
  2037. text-align: center;
  2038. color: #fff;
  2039. font-size: 38rpx;
  2040. font-weight: bold;
  2041. }
  2042. .info-box-num-td-name {
  2043. width: 100%;
  2044. text-align: center;
  2045. color: #fff;
  2046. font-size: 24rpx;
  2047. font-weight: 400;
  2048. margin-top: 20rpx;
  2049. }
  2050. }
  2051. }
  2052. }
  2053. }
  2054. .vip {
  2055. width: 100%;
  2056. height: 127rpx;
  2057. margin-top: 30rpx;
  2058. .vip-box {
  2059. width: 686rpx;
  2060. height: 100%;
  2061. position: relative;
  2062. .vip-box-bg {
  2063. position: absolute;
  2064. top: 0;
  2065. left: 0;
  2066. width: 100%;
  2067. height: 100%;
  2068. z-index: 1;
  2069. }
  2070. .vip-box-cont {
  2071. z-index: 2;
  2072. }
  2073. }
  2074. }
  2075. .jobServer {
  2076. width: 100%;
  2077. // height: 235rpx;
  2078. margin-top: 16rpx;
  2079. z-index: 1;
  2080. .jobServer-box {
  2081. width: 686rpx;
  2082. height: 100%;
  2083. // background-color: #fff;
  2084. // background: linear-gradient(90deg, rgba(13, 39, 247, 1), rgba(19, 193, 234, 1) 100%);
  2085. border-radius: 24rpx;
  2086. z-index: 1;
  2087. .jobServer-box-c {
  2088. width: 626rpx;
  2089. height: 100%;
  2090. }
  2091. .jobServer-box-title {
  2092. margin-top: 20rpx;
  2093. width: 100%;
  2094. color: rgba(29, 33, 41, 1);
  2095. font-family: DM Sans;
  2096. font-size: 28rpx;
  2097. font-weight: 500;
  2098. line-height: 44rpx;
  2099. }
  2100. .jobServer-box-btn {
  2101. width: 100%;
  2102. margin-top: 30rpx;
  2103. .item-width {
  2104. width: 110rpx !important;
  2105. }
  2106. .jobServer-box-btn-item {
  2107. width: 120rpx;
  2108. color: rgba(56, 58, 63, 1);
  2109. font-family: DM Sans;
  2110. font-size: 24rpx;
  2111. font-weight: 400;
  2112. line-height: 36rpx;
  2113. letter-spacing: 0%;
  2114. text-align: center;
  2115. image {
  2116. width: 62rpx;
  2117. height: 62rpx;
  2118. margin-bottom: 10rpx;
  2119. }
  2120. }
  2121. }
  2122. }
  2123. }
  2124. .utils {
  2125. width: 100%;
  2126. // height: 308rpx;
  2127. margin-top: 20rpx;
  2128. margin-bottom: 20rpx;
  2129. .utils-box {
  2130. width: 686rpx;
  2131. height: 100%;
  2132. background-color: #ffffff;
  2133. border-radius: 24rpx;
  2134. padding: 40rpx 20rpx;
  2135. box-sizing: border-box;
  2136. .utils-box-c {
  2137. width: 100%;
  2138. height: 100%;
  2139. .util-list {
  2140. display: grid;
  2141. grid-template-columns: repeat(4, 1fr);
  2142. gap: 30rpx 20rpx;
  2143. .util-item {
  2144. display: flex;
  2145. flex-direction: column;
  2146. justify-content: center;
  2147. align-items: center;
  2148. }
  2149. }
  2150. }
  2151. .utils-box-c-t {
  2152. width: 100%;
  2153. }
  2154. .utils-box-c-b {
  2155. background-color: #016bf6;
  2156. }
  2157. }
  2158. }
  2159. .money {
  2160. width: 100%;
  2161. height: 148rpx;
  2162. margin-top: 20rpx;
  2163. .money-box {
  2164. width: 686rpx;
  2165. height: 100%;
  2166. background-color: #ffffff;
  2167. border-radius: 24rpx;
  2168. .money-box-c {
  2169. width: 626rpx;
  2170. height: 90rpx;
  2171. }
  2172. .money-box-c-l {
  2173. width: 50%;
  2174. height: 100%;
  2175. border-right: 1rpx solid #e6e6e6;
  2176. box-sizing: border-box;
  2177. .money-box-c-l-name {
  2178. color: #333333;
  2179. font-size: 28rpx;
  2180. font-weight: bold;
  2181. width: 100%;
  2182. }
  2183. .money-box-c-l-price {
  2184. color: #1e1e1e;
  2185. font-size: 38rpx;
  2186. font-weight: bold;
  2187. width: 100%;
  2188. margin-top: 14rpx;
  2189. text {
  2190. font-size: 24rpx;
  2191. font-weight: 500;
  2192. }
  2193. }
  2194. }
  2195. .money-box-c-r {
  2196. width: 50%;
  2197. height: 100%;
  2198. .money-box-c-r-name {
  2199. width: 100%;
  2200. color: #333333;
  2201. font-size: 28rpx;
  2202. font-weight: bold;
  2203. padding-left: 30rpx;
  2204. }
  2205. .money-box-c-r-more {
  2206. width: 100%;
  2207. color: #999999;
  2208. font-size: 24rpx;
  2209. font-weight: 400;
  2210. padding-left: 30rpx;
  2211. margin-top: 20rpx;
  2212. }
  2213. }
  2214. }
  2215. }
  2216. // 更多功能区域
  2217. .more-functions {
  2218. margin: 48rpx 32rpx 0;
  2219. padding: 24rpx 48rpx 48rpx 48rpx;
  2220. /* background: #fff;
  2221. border-radius: 24rpx; */
  2222. .section-title {
  2223. color: rgba(29, 33, 41, 1);
  2224. font-family: DM Sans;
  2225. font-size: 28rpx;
  2226. font-weight: 500;
  2227. line-height: 44rpx;
  2228. letter-spacing: 0%;
  2229. text-align: left;
  2230. }
  2231. .function-grid {
  2232. margin-top: 24rpx;
  2233. display: flex;
  2234. // justify-content: space-between;
  2235. border-top: 0.5px solid rgba(238, 238, 238, 1);
  2236. padding-top: 16rpx;
  2237. gap: 70rpx;
  2238. .function-item {
  2239. display: flex;
  2240. flex-direction: column;
  2241. align-items: center;
  2242. gap: 16rpx;
  2243. .function-icon {
  2244. width: 48rpx;
  2245. height: 48rpx;
  2246. }
  2247. .function-text {
  2248. color: #333;
  2249. font-size: 24rpx;
  2250. font-weight: 500;
  2251. }
  2252. }
  2253. }
  2254. }
  2255. // 联系信息
  2256. .contact-info {
  2257. margin: 0 40rpx 120rpx 40rpx;
  2258. padding: 40rpx;
  2259. .contact-text,
  2260. .legal-text,
  2261. .icp-text {
  2262. display: block;
  2263. color: rgba(153, 153, 153, 1);
  2264. font-family: DM Sans;
  2265. font-size: 18rpx;
  2266. font-weight: 400;
  2267. line-height: 1.6;
  2268. letter-spacing: 0%;
  2269. text-align: center;
  2270. margin-bottom: 8rpx;
  2271. }
  2272. }
  2273. </style>