index.vue 66 KB

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