index.vue 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394
  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' : '100rpx' }">
  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="aspectFill"></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号-2A</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="aspectFill"></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号-2A</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.interviewCount = 0;
  880. that.token = "";
  881. that.isLogin = true;
  882. that.userName = "登录";
  883. that.avatar = "../../static/logo.png";
  884. that.isVip = false;
  885. that.companyInfo = '';
  886. })
  887. console.log(uni.getStorageSync("userType"))
  888. this.$queue.changeTabbar(uni.getStorageSync("userType") || 1)
  889. },
  890. onUnload() {
  891. uni.$off('changeRole')
  892. },
  893. onShow() {
  894. this.token = uni.getStorageSync("token");
  895. console.log(this.token, "myToken");
  896. if (uni.getStorageSync("userType")) {
  897. this.userType = uni.getStorageSync("userType");
  898. }
  899. this.userId = uni.getStorageSync("userId");
  900. if (this.userId) {
  901. this.getUserInfo();
  902. this.getMyMoney();
  903. this.getUserData();
  904. if (this.userType == 1) {
  905. this.getJlInfo();
  906. } else {
  907. this.getCompanyStatus();
  908. }
  909. this.$Request.getT("/app/common/type/310").then((res) => {
  910. //消息未读提醒
  911. if (res.code == 0) {
  912. if (res.data && res.data.value) {
  913. this.arr.push(res.data.value);
  914. }
  915. }
  916. });
  917. this.$Request.getT("/app/common/type/337").then((res) => {
  918. //预约成功通知(通用)
  919. if (res.code == 0) {
  920. if (res.data && res.data.value) {
  921. this.arr.push(res.data.value);
  922. }
  923. }
  924. });
  925. this.$Request.getT("/app/common/type/338").then((res) => {
  926. //订单状态通知
  927. if (res.code == 0) {
  928. if (res.data && res.data.value) {
  929. this.arr.push(res.data.value);
  930. }
  931. }
  932. });
  933. // #ifdef MP-WEIXIN
  934. if (this.showModal) {
  935. this.openMsg();
  936. }
  937. // #endif
  938. }
  939. },
  940. methods: {
  941. // 入职公司
  942. goBusinessLicense(pageType) {
  943. uni.navigateTo({
  944. url: "/pages/my/ad?pageType=" + pageType,
  945. });
  946. },
  947. // 在线客服
  948. goChat() {
  949. let that = this;
  950. if (uni.getStorageSync("userType") == 1) {
  951. //用户端
  952. // #ifdef MP-WEIXIN
  953. wx.openCustomerServiceChat({
  954. extInfo: {
  955. url: that.$queue.getData("kefu"),
  956. },
  957. corpId: that.$queue.getData("kefuAppid"),
  958. success(res) {
  959. console.log(res);
  960. },
  961. });
  962. // #endif
  963. // #ifdef H5
  964. window.location.href = that.$queue.getData("kefu");
  965. // #endif
  966. // #ifdef APP
  967. let kefu = that.$queue.getData("kefu");
  968. console.log(kefu);
  969. plus.runtime.openURL(kefu, function (res) { });
  970. // #endif
  971. } else {
  972. //企业端
  973. // #ifdef MP-WEIXIN
  974. wx.openCustomerServiceChat({
  975. extInfo: {
  976. url: that.$queue.getData("kefuq"),
  977. },
  978. corpId: that.$queue.getData("kefuAppidq"),
  979. success(res) {
  980. console.log(res);
  981. },
  982. });
  983. // #endif
  984. // #ifdef H5
  985. window.location.href = that.$queue.getData("kefuq");
  986. // #endif
  987. // #ifdef APP
  988. let kefu = that.$queue.getData("kefuq");
  989. console.log(kefu);
  990. plus.runtime.openURL(kefu, function (res) { });
  991. // #endif
  992. }
  993. },
  994. showToast(title) {
  995. uni.showToast({
  996. title: title,
  997. icon: "none",
  998. });
  999. },
  1000. goNavStatus(url) {
  1001. if (this.companyStatus) {
  1002. if (this.companyStatus == 1) {
  1003. uni.showToast({
  1004. title: "企业认证审核中,请审核通过后操作!",
  1005. icon: "none",
  1006. });
  1007. return;
  1008. }
  1009. if (this.companyStatus == 3) {
  1010. uni.showToast({
  1011. title: "企业认证审核未通过,请重新认证!",
  1012. icon: "none",
  1013. });
  1014. return;
  1015. }
  1016. uni.navigateTo({
  1017. url: url,
  1018. });
  1019. } else {
  1020. uni.showModal({
  1021. title: "提示",
  1022. content: "还未完成企业认证,请完成企业认证后操作",
  1023. success(ret) {
  1024. if (ret.confirm) {
  1025. uni.navigateTo({
  1026. url: "/pages/my/businessLicense",
  1027. })
  1028. }
  1029. },
  1030. });
  1031. }
  1032. },
  1033. currenStatus() {
  1034. if (uni.getStorageSync("token")) {
  1035. this.show = true;
  1036. } else {
  1037. this.noLogin();
  1038. }
  1039. },
  1040. //修改用户身份状态
  1041. async updateUserResumes(userType) {
  1042. // 调用接口提交
  1043. uni.showLoading({
  1044. title: "切换中..."
  1045. });
  1046. this.$Request.postJson("/app/user/updateUserResumes", {
  1047. userType: userType
  1048. })
  1049. .then((res) => {
  1050. uni.hideLoading();
  1051. if (res.code === 0) {
  1052. uni.setStorageSync('userType', userType)
  1053. uni.switchTab({
  1054. url: '/pages/my/index'
  1055. });
  1056. } else {
  1057. uni.switchTab({
  1058. url: '/pages/my/index'
  1059. });
  1060. }
  1061. })
  1062. .catch((err) => {
  1063. uni.hideLoading();
  1064. console.error("提交失败:", err);
  1065. uni.showToast({
  1066. title: "网络异常",
  1067. icon: "none"
  1068. });
  1069. return 1
  1070. });
  1071. },
  1072. //查询简历信息
  1073. getJlInfo() {
  1074. this.$Request.getT("/app/resumes/selectResumesByUserId").then((res) => {
  1075. if (res.code == 0) {
  1076. if (res.data) {
  1077. this.resumesStatus = res.data.resumesStatus;
  1078. this.resumesId = res.data.resumesId;
  1079. if (this.resumesStatus == 1) {
  1080. this.list = [{
  1081. id: 2,
  1082. text: "在职-考虑机会",
  1083. fontSize: 24,
  1084. },
  1085. {
  1086. id: 3,
  1087. text: "在职-暂不考虑",
  1088. fontSize: 24,
  1089. },
  1090. ];
  1091. } else if (this.resumesStatus == 2) {
  1092. this.list = [{
  1093. id: 1,
  1094. text: "离职-正在找工作",
  1095. fontSize: 24,
  1096. },
  1097. {
  1098. id: 3,
  1099. text: "在职-暂不考虑",
  1100. fontSize: 24,
  1101. },
  1102. ];
  1103. } else {
  1104. this.list = [{
  1105. id: 1,
  1106. text: "离职-正在找工作",
  1107. fontSize: 24,
  1108. },
  1109. {
  1110. id: 2,
  1111. text: "在职-考虑机会",
  1112. fontSize: 24,
  1113. },
  1114. ];
  1115. }
  1116. } else {
  1117. uni.showToast({
  1118. title: "暂无简历,请添加简历",
  1119. icon: "none",
  1120. });
  1121. }
  1122. } else {
  1123. uni.showToast({
  1124. title: res.msg,
  1125. icon: "none",
  1126. });
  1127. }
  1128. });
  1129. },
  1130. //切换求职状态
  1131. click(e) {
  1132. console.log(this.list[e].text);
  1133. let that = this;
  1134. uni.showModal({
  1135. title: "提示",
  1136. content: "确认求职状态切换为:" + that.list[e].text + " 吗?",
  1137. confirmColor: "#016BF6",
  1138. complete(ret) {
  1139. if (ret.confirm) {
  1140. let data = {
  1141. resumesId: that.resumesId,
  1142. resumesStatus: that.list[e].id,
  1143. };
  1144. that.$Request.postT("/app/resumes/updateResumesStatus", data).then((res) => {
  1145. if (res.code == 0) {
  1146. uni.showToast({
  1147. title: "已切换",
  1148. });
  1149. that.getJlInfo();
  1150. } else {
  1151. uni.showToast({
  1152. title: res.msg,
  1153. icon: "none",
  1154. });
  1155. }
  1156. });
  1157. }
  1158. },
  1159. });
  1160. },
  1161. //招聘刷新
  1162. refreshJob() {
  1163. if (uni.getStorageSync("userId")) {
  1164. this.$Request.postT("/app/postPush/refreshPostPush").then((res) => {
  1165. if (res.code == 0) {
  1166. uni.showToast({
  1167. title: "刷新成功",
  1168. });
  1169. } else {
  1170. if (this.isCompanyVip) {
  1171. uni.showToast({
  1172. title: res.msg,
  1173. icon: "none",
  1174. });
  1175. } else {
  1176. uni.showModal({
  1177. title: "提示",
  1178. content: "今日可刷新次数已使用完,开通会员可享更多刷新次数以及其他特权",
  1179. confirmText: "开通会员",
  1180. confirmColor: "#016BF6",
  1181. complete(ree) {
  1182. if (ree.confirm) {
  1183. uni.navigateTo({
  1184. url: "/my/vip/index",
  1185. });
  1186. }
  1187. },
  1188. });
  1189. }
  1190. }
  1191. });
  1192. } else {
  1193. this.noLogin();
  1194. }
  1195. },
  1196. //简历刷新
  1197. refresh() {
  1198. if (uni.getStorageSync("userId")) {
  1199. this.$Request.getT("/app/resumes/selectResumesByUserId").then((res) => {
  1200. if (res.code == 0) {
  1201. if (res.data && res.data.resumesId) {
  1202. this.$Request
  1203. .postT("/app/resumes/refreshResumes", {
  1204. resumesId: res.data.resumesId,
  1205. })
  1206. .then((ret) => {
  1207. if (ret.code == 0) {
  1208. uni.showToast({
  1209. title: "刷新成功",
  1210. });
  1211. } else {
  1212. if (this.isVip) {
  1213. uni.showToast({
  1214. title: ret.msg,
  1215. icon: "none",
  1216. });
  1217. } else {
  1218. uni.showModal({
  1219. title: "提示",
  1220. content: "今日可刷新次数已使用完,开通会员可享更多刷新次数以及其他特权",
  1221. confirmText: "开通会员",
  1222. confirmColor: "#016BF6",
  1223. complete(ree) {
  1224. if (ree.confirm) {
  1225. uni.navigateTo({
  1226. url: "/my/vip/index",
  1227. });
  1228. }
  1229. },
  1230. });
  1231. }
  1232. }
  1233. });
  1234. } else {
  1235. uni.showModal({
  1236. title: "提示",
  1237. content: "暂无简历,请添加简历后重试",
  1238. confirmColor: "#016BF6",
  1239. complete(ree) {
  1240. if (ree.confirm) {
  1241. uni.navigateTo({
  1242. url: "/package/my/resume",
  1243. });
  1244. }
  1245. },
  1246. });
  1247. }
  1248. } else {
  1249. uni.showToast({
  1250. title: res.msg,
  1251. icon: "none",
  1252. });
  1253. }
  1254. });
  1255. } else {
  1256. this.noLogin();
  1257. }
  1258. },
  1259. /**
  1260. * 获取投递记录、收藏记录、浏览记录
  1261. */
  1262. getUserData() {
  1263. this.$Request.getT("/app/user/userData").then((res) => {
  1264. if (res.code == 0) {
  1265. this.browseCount = res.data.browseCount;
  1266. this.collectionCount = res.data.collectionCount;
  1267. this.deliveryCount = res.data.deliveryCount;
  1268. this.chatCount = res.data.chatCount;
  1269. this.interviewCount = res.data.interviewCount;
  1270. this.postPushCount = res.data.postPushCount;
  1271. this.iosAudit = res.data.iosAudit
  1272. }
  1273. });
  1274. },
  1275. /**
  1276. * @param {Object} url 跳转路径
  1277. * @param {Object} name 名称
  1278. */
  1279. gojiLuList(url, name) {
  1280. if (uni.getStorageSync("token")) {
  1281. uni.navigateTo({
  1282. url: url + "?title=" + name,
  1283. });
  1284. } else {
  1285. this.noLogin();
  1286. }
  1287. },
  1288. // 跳转到职位管理页面
  1289. goJobManagement() {
  1290. let status = '';
  1291. if (this.companyInfo && !this.companyInfo.companyCertification) {
  1292. status = 1;
  1293. }
  1294. if (uni.getStorageSync("token")) {
  1295. uni.navigateTo({
  1296. url: `/pages/jobManagement/jobManagement?status=${status}&companyId=${this.companyInfo.companyId}`,
  1297. });
  1298. } else {
  1299. this.noLogin();
  1300. }
  1301. },
  1302. // VIP升级页面跳转
  1303. goVipUpgrade() {
  1304. if (uni.getStorageSync("token")) {
  1305. uni.navigateTo({
  1306. url: "/pages/my/VIP/benefits",
  1307. //url: "/my/vip/index"
  1308. });
  1309. } else {
  1310. this.noLogin();
  1311. }
  1312. },
  1313. /**
  1314. * 退出登录
  1315. */
  1316. goOut() {
  1317. let that = this;
  1318. uni.showModal({
  1319. title: "提示",
  1320. content: "确定退出登录吗?",
  1321. confirmColor: "#016BF6",
  1322. success: function (res) {
  1323. if (res.confirm) {
  1324. console.log("用户点击确定");
  1325. uni.removeStorageSync("userName");
  1326. uni.removeStorageSync("avatar");
  1327. uni.removeStorageSync("userId");
  1328. uni.removeStorageSync("token");
  1329. uni.removeStorageSync("phone");
  1330. uni.removeStorageSync("zhiFuBaoName");
  1331. uni.removeStorageSync("zhiFuBao");
  1332. uni.removeStorageSync("invitationCode");
  1333. uni.removeStorageSync("unionId");
  1334. uni.removeStorageSync("openId");
  1335. uni.removeStorageSync("isVIP");
  1336. uni.removeStorageSync("companyId");
  1337. // uni.removeStorageSync('userType')
  1338. uni.setStorageSync("userType", 1);
  1339. uni.setStorageSync("weixinPhone", false);
  1340. that.userId = "";
  1341. that.userType = 1;
  1342. that.money = 0;
  1343. that.deliveryCount = 0;
  1344. that.browseCount = 0;
  1345. that.collectionCount = 0;
  1346. that.token = "";
  1347. uni.showToast({
  1348. title: "退出成功!",
  1349. icon: "none",
  1350. });
  1351. that.isLogin = true;
  1352. that.userName = "登录";
  1353. that.avatar = "../../static/logo.png";
  1354. that.isVip = false;
  1355. // uni.reLaunch({
  1356. // url: '/pages/public/selectIdentity/selectIdentity'
  1357. // })
  1358. } else if (res.cancel) {
  1359. console.log("用户点击取消");
  1360. }
  1361. },
  1362. });
  1363. },
  1364. /**
  1365. * 我的钻石
  1366. */
  1367. getMyMoney() {
  1368. this.$Request.get("/app/userMoney/selectMyMoney").then((res) => {
  1369. if (res.code == 0) {
  1370. this.money = res.data.money;
  1371. }
  1372. });
  1373. },
  1374. /**
  1375. * 获取个人信息
  1376. */
  1377. getUserInfo() {
  1378. this.$Request.get("/app/user/selectUserById").then((res) => {
  1379. if (res.code == 0) {
  1380. uni.setStorageSync("weChatNum", res.data?.weChatNum);
  1381. uni.setStorageSync("zhiRate", res.data?.zhiRate);
  1382. if (res.data?.avatar) {
  1383. this.avatar = res.data.avatar;
  1384. }
  1385. if (res.data?.userName) {
  1386. this.userName = res.data.userName;
  1387. }
  1388. uni.setStorageSync("userId", res.data?.userId);
  1389. if (res.data?.companyId) {
  1390. uni.setStorageSync("companyId", res.data.companyId);
  1391. }
  1392. if (res.data?.userType == 1 || res.data?.userType == null) {
  1393. this.userType = 1;
  1394. uni.setStorageSync("userType", 1);
  1395. if (res.data?.isUserVip == 1) {
  1396. //判断用户是否是vip
  1397. this.isVip = true;
  1398. uni.setStorageSync("isUserVip", 1);
  1399. } else {
  1400. this.isVip = false;
  1401. }
  1402. } else {
  1403. this.userType = 2;
  1404. uni.setStorageSync("userType", 2);
  1405. uni.setStorageSync("vipDueTimes", res.data.vipDueTimes ? res.data.vipDueTimes : 0);
  1406. uni.setStorageSync("vipPostTimes", res.data.vipPostTimes ? res.data.vipPostTimes : 0);
  1407. if (res.data.isCompanyVip == 1) {
  1408. //判断企业用户是否是vip
  1409. this.isCompanyVip = true;
  1410. uni.setStorageSync("isCompanyVip", 0);
  1411. } else {
  1412. this.isCompanyVip = false;
  1413. }
  1414. }
  1415. }
  1416. });
  1417. },
  1418. goNavNoLogin(e) {
  1419. // #ifdef MP-WEIXIN
  1420. if (uni.getStorageSync("sendMsg")) {
  1421. // console.log('授权+1')
  1422. wx.requestSubscribeMessage({
  1423. tmplIds: this.arr,
  1424. success(re) {
  1425. var datas = JSON.stringify(re);
  1426. if (datas.indexOf("accept") != -1) {
  1427. // console.log(re)
  1428. }
  1429. },
  1430. fail: (res) => {
  1431. // console.log(res)
  1432. },
  1433. });
  1434. }
  1435. // #endif
  1436. uni.navigateTo({
  1437. url: e,
  1438. });
  1439. },
  1440. //跳转
  1441. goNav(e) {
  1442. if (this.userId) {
  1443. // #ifdef MP-WEIXIN
  1444. if (uni.getStorageSync("sendMsg")) {
  1445. // console.log('授权+1')
  1446. wx.requestSubscribeMessage({
  1447. tmplIds: this.arr,
  1448. success(re) {
  1449. var datas = JSON.stringify(re);
  1450. if (datas.indexOf("accept") != -1) {
  1451. // console.log(re)
  1452. }
  1453. },
  1454. fail: (res) => {
  1455. // console.log(res)
  1456. },
  1457. });
  1458. }
  1459. // #endif
  1460. uni.navigateTo({
  1461. url: e,
  1462. });
  1463. } else {
  1464. this.noLogin();
  1465. }
  1466. },
  1467. //获取企业认证状态(1:审核中 2:通过 3:拒绝)
  1468. getCompanyStatus() {
  1469. this.$Request.get("/app/company/selectCompanyByUserId").then((res) => {
  1470. if (res.code == 0 && res.data) {
  1471. console.log('我获取了公司信息')
  1472. this.companyInfo = res.data
  1473. this.companyStatus = res.data.status;
  1474. uni.setStorageSync("companyStatus", this.companyStatus);
  1475. uni.setStorageSync("companyName", res.data.companyAllName);
  1476. if(res.data.companyId)
  1477. this.$queue.setData('companyId',res.data.companyId)
  1478. } else {
  1479. this.companyStatus = "";
  1480. this.companyInfo = {};
  1481. }
  1482. });
  1483. },
  1484. /**
  1485. * 获取用户企业实名数据
  1486. */
  1487. getCompany() {
  1488. this.$Request.get("/app/company/selectCompanyByUserId").then((res) => {
  1489. if (res.code == 0 && res.data) {
  1490. this.CompanyList = res.data;
  1491. if (this.CompanyList.status == 1) {
  1492. uni.showModal({
  1493. title: "提示",
  1494. content: "您提交的企业认证正在审核,是否查看修改?",
  1495. confirmColor: "#016BF6",
  1496. showCancel: false,
  1497. success: function (res) {
  1498. if (res.confirm) {
  1499. console.log("用户点击确定");
  1500. uni.navigateTo({
  1501. url: "/package/jobIntention/underReview",
  1502. });
  1503. } else if (res.cancel) {
  1504. console.log("用户点击取消");
  1505. }
  1506. },
  1507. });
  1508. } else if (this.CompanyList.status == 2) {
  1509. this.$Request
  1510. .postT("/app/user/updateUserEntity", {
  1511. userType: 2,
  1512. })
  1513. .then((res) => {
  1514. if (res.code == 0) {
  1515. // uni.setStorageSync('companyId', this.CompanyList.companyId)
  1516. this.getUserInfo();
  1517. }
  1518. });
  1519. this.getUserInfo();
  1520. // this.userType = 2
  1521. // uni.setStorageSync('userType', this.userType)
  1522. } else if (this.CompanyList.status == 3) {
  1523. uni.showModal({
  1524. title: "提示",
  1525. content: "您提交的企业认证已被拒绝,是否查看修改?",
  1526. confirmColor: "#016BF6",
  1527. success: function (res) {
  1528. if (res.confirm) {
  1529. console.log("用户点击确定");
  1530. uni.navigateTo({
  1531. url: "/package/jobIntention/underReview",
  1532. });
  1533. } else if (res.cancel) {
  1534. console.log("用户点击取消");
  1535. }
  1536. },
  1537. });
  1538. }
  1539. } else {
  1540. uni.showModal({
  1541. title: "提示",
  1542. content: "您还未企业认证,请先进行认证",
  1543. confirmColor: "#016BF6",
  1544. showCancel: false,
  1545. success: function (res) {
  1546. if (res.confirm) {
  1547. console.log("用户点击确定");
  1548. uni.navigateTo({
  1549. url: "/pages/my/businessLicense",
  1550. });
  1551. } else if (res.cancel) {
  1552. console.log("用户点击取消");
  1553. }
  1554. },
  1555. });
  1556. }
  1557. });
  1558. },
  1559. // 切换身份
  1560. bindQe() {
  1561. let that = this;
  1562. if (uni.getStorageSync("userId")) {
  1563. let index = 3 - this.userType
  1564. if (index == 1) {
  1565. //企业换个人
  1566. uni.showModal({
  1567. title: "提示",
  1568. content: "确认切换到求职者身份吗?",
  1569. confirmColor: "#016BF6",
  1570. complete(ret) {
  1571. if (ret.confirm) {
  1572. let data = {
  1573. userType: 1,
  1574. };
  1575. that.$Request.postT("/app/user/updateUserEntity", data).then((res) => {
  1576. if (res.code == 0) {
  1577. that.getUserInfo();
  1578. that.getUserData();
  1579. }
  1580. });
  1581. }
  1582. },
  1583. });
  1584. } else if (index == 2) {
  1585. //个人换企业
  1586. uni.showModal({
  1587. title: "提示",
  1588. content: "确认切换到招聘者身份吗?",
  1589. confirmColor: "#016BF6",
  1590. complete(ret) {
  1591. if (ret.confirm) {
  1592. that.getCompany();
  1593. }
  1594. },
  1595. });
  1596. }
  1597. } else {
  1598. this.noLogin();
  1599. }
  1600. },
  1601. // 开启订阅消息
  1602. openMsg() {
  1603. console.log("订阅消息");
  1604. var that = this;
  1605. uni.getSetting({
  1606. withSubscriptions: true, //是否获取用户订阅消息的订阅状态,默认false不返回
  1607. success(ret) {
  1608. console.log(ret.subscriptionsSetting, "------------------");
  1609. // if (ret.subscriptionsSetting.itemSettings && Object.keys(ret.subscriptionsSetting.itemSettings).length == 2) {
  1610. if (ret.subscriptionsSetting.itemSettings) {
  1611. uni.setStorageSync("sendMsg", true);
  1612. uni.openSetting({
  1613. // 打开设置页
  1614. success(rea) {
  1615. console.log(rea.authSetting);
  1616. },
  1617. });
  1618. } else {
  1619. // 用户没有点击“总是保持以上,不再询问”则每次都会调起订阅消息
  1620. console.log(99999);
  1621. uni.setStorageSync("sendMsg", false);
  1622. uni.showModal({
  1623. title: "提示",
  1624. content: "为了更好的体验,请绑定消息推送",
  1625. confirmText: "确定",
  1626. cancelText: "取消",
  1627. confirmColor: "#016BF6",
  1628. success: function (res) {
  1629. if (res.confirm) {
  1630. console.log(that.arr);
  1631. wx.requestSubscribeMessage({
  1632. tmplIds: that.arr,
  1633. success(re) {
  1634. console.log(JSON.stringify(re),
  1635. "++++++++++++++");
  1636. var datas = JSON.stringify(re);
  1637. if (datas.indexOf("accept") != -1) {
  1638. console.log(re);
  1639. uni.setStorageSync("sendMsg", true);
  1640. }
  1641. },
  1642. fail: (res) => {
  1643. console.log(res);
  1644. },
  1645. });
  1646. uni.setStorageSync("sendMsg", true);
  1647. console.log("确认");
  1648. that.showModal = false;
  1649. } else if (res.cancel) {
  1650. console.log("取消");
  1651. uni.setStorageSync("sendMsg", false);
  1652. that.showModal = true;
  1653. }
  1654. },
  1655. });
  1656. }
  1657. },
  1658. });
  1659. },
  1660. //未登录
  1661. noLogin() {
  1662. // uni.showModal({
  1663. // title: '提示',
  1664. // content: '您还未登录,请先登录',
  1665. // confirmColor:'#016BF6',
  1666. // success: function(res) {
  1667. // if (res.confirm) {
  1668. // console.log('用户点击确定');
  1669. // // uni.reLaunch({
  1670. // // url:'/pages/public/login'
  1671. // // })
  1672. // uni.navigateTo({
  1673. // url: '/pages/public/login'
  1674. // })
  1675. // } else if (res.cancel) {
  1676. // console.log('用户点击取消');
  1677. // }
  1678. // }
  1679. // })
  1680. uni.navigateTo({
  1681. url: "/pages/public/login",
  1682. });
  1683. },
  1684. },
  1685. };
  1686. </script>
  1687. <style lang="scss" scoped>
  1688. page {
  1689. background-color: #f5f7fa;
  1690. }
  1691. .report-content {
  1692. /* content */
  1693. width: 540rpx;
  1694. height: 590rpx;
  1695. /* 自动布局 */
  1696. display: flex;
  1697. flex-direction: column;
  1698. align-items: center;
  1699. justify-content: space-between;
  1700. gap: 33;
  1701. padding: 40rpx;
  1702. box-sizing: border-box;
  1703. .report-title {
  1704. width: 100%;
  1705. color: rgba(0, 0, 0, 1);
  1706. font-family: DM Sans;
  1707. font-size: 28rpx;
  1708. font-weight: 700;
  1709. line-height: 36rpx;
  1710. letter-spacing: 0%;
  1711. text-align: left;
  1712. }
  1713. .report-desc {
  1714. width: 100%;
  1715. color: rgba(158, 158, 158, 1);
  1716. font-family: DM Sans;
  1717. font-size: 28rpx;
  1718. font-weight: 400;
  1719. line-height: 36rpx;
  1720. letter-spacing: 0%;
  1721. text-align: left;
  1722. }
  1723. .report-desc-box {
  1724. width: 100%;
  1725. display: flex;
  1726. flex-direction: column;
  1727. justify-content: space-between;
  1728. gap: 20rpx;
  1729. padding: 66rpx 0;
  1730. box-sizing: border-box;
  1731. }
  1732. .report-desc-small {
  1733. width: 100%;
  1734. color: rgba(158, 158, 158, 1);
  1735. font-family: DM Sans;
  1736. font-size: 20rpx;
  1737. font-weight: 400;
  1738. line-height: 34rpx;
  1739. letter-spacing: 0%;
  1740. text-align: left;
  1741. padding-bottom: 66rpx;
  1742. }
  1743. .report-btn {
  1744. width: 100%;
  1745. border-radius: 999px;
  1746. background: linear-gradient(90.00deg, rgba(13, 39, 247, 1), rgba(19, 193, 234, 1) 100%);
  1747. color: rgba(255, 255, 255, 1);
  1748. font-family: DM Sans;
  1749. font-size: 32rpx;
  1750. font-weight: 400;
  1751. line-height: 48rpx;
  1752. letter-spacing: 0%;
  1753. text-align: center;
  1754. padding: 16rpx;
  1755. box-sizing: border-box;
  1756. }
  1757. }
  1758. .user-box {
  1759. position: absolute;
  1760. top: 0;
  1761. bottom: 0;
  1762. left: 0;
  1763. right: 0;
  1764. overflow: hidden;
  1765. display: flex;
  1766. flex-direction: column;
  1767. .user-top {
  1768. width: 100%;
  1769. flex-shrink: 0;
  1770. }
  1771. .user-content {
  1772. overflow: hidden;
  1773. overflow-y: auto;
  1774. width: 100%;
  1775. flex: 1;
  1776. .beian {
  1777. font-size: 20rpx;
  1778. color: #aaa;
  1779. text-align: center;
  1780. padding: 10rpx 0;
  1781. }
  1782. }
  1783. }
  1784. .status-txt {
  1785. color: #fff;
  1786. font-family: DM Sans;
  1787. font-size: 28rpx;
  1788. font-weight: 400;
  1789. line-height: 44rpx;
  1790. }
  1791. // 推广横幅
  1792. .promo-banner {
  1793. margin: 10rpx 40rpx 10rpx 40rpx;
  1794. background: var(--线性渐变,
  1795. linear-gradient(90deg, rgba(13, 39, 247, 1), rgba(19, 193, 234, 1) 100%));
  1796. border-radius: 24rpx;
  1797. padding: 16rpx 40rpx;
  1798. .banner-content {
  1799. display: flex;
  1800. justify-content: space-between;
  1801. align-items: center;
  1802. .banner-text {
  1803. flex: 1;
  1804. .banner-title {
  1805. color: rgba(255, 255, 255, 1);
  1806. font-family: HarmonyOS Sans SC;
  1807. font-size: 32rpx;
  1808. font-weight: 900;
  1809. line-height: 48rpx;
  1810. letter-spacing: 0%;
  1811. text-align: left;
  1812. display: block;
  1813. margin-bottom: 8rpx;
  1814. transform: skew(-10deg);
  1815. }
  1816. .banner-subtitle {
  1817. color: rgba(255, 255, 255, 0.7);
  1818. font-family: HarmonyOS Sans SC;
  1819. font-size: 26rpx;
  1820. font-weight: 400;
  1821. line-height: 36rpx;
  1822. letter-spacing: 0%;
  1823. text-align: left;
  1824. display: block;
  1825. }
  1826. }
  1827. .banner-button {
  1828. display: flex;
  1829. align-items: center;
  1830. justify-content: center;
  1831. width: 138rpx;
  1832. height: 48rpx;
  1833. border-radius: 26px;
  1834. background: #ffffff;
  1835. .button-text {
  1836. background: var(--线性渐变,
  1837. linear-gradient(90deg, rgba(13, 39, 247, 1), rgba(19, 193, 234, 1) 100%));
  1838. -webkit-background-clip: text;
  1839. -webkit-text-fill-color: transparent;
  1840. background-clip: text;
  1841. font-family: HarmonyOS Sans SC;
  1842. font-size: 26rpx;
  1843. font-weight: 500;
  1844. line-height: 18px;
  1845. letter-spacing: 0%;
  1846. text-align: left;
  1847. }
  1848. }
  1849. }
  1850. }
  1851. // VIP升级横幅
  1852. .vip-upgrade-banner {
  1853. margin: 20rpx 40rpx 10rpx 40rpx;
  1854. background: linear-gradient(165.89deg,
  1855. rgba(251, 231, 185, 1),
  1856. rgba(240, 176, 72, 1) 100%);
  1857. border-radius: 16rpx;
  1858. padding: 32rpx;
  1859. box-shadow: 0 4rpx 12rpx rgba(255, 154, 102, 0.3);
  1860. .vip-banner-content {
  1861. display: flex;
  1862. justify-content: space-between;
  1863. align-items: center;
  1864. .vip-banner-text {
  1865. flex: 1;
  1866. color: rgba(1, 107, 246, 1);
  1867. font-family: DM Sans;
  1868. font-size: 24rpx;
  1869. font-weight: 700;
  1870. line-height: 40rpx;
  1871. letter-spacing: 0px;
  1872. text-align: left;
  1873. }
  1874. .vip-upgrade-button {
  1875. display: flex;
  1876. align-items: center;
  1877. justify-content: center;
  1878. width: 100rpx;
  1879. height: 42rpx;
  1880. background: radial-gradient(184.79% 115.97% at 92% 113.99999999999999%,
  1881. rgba(255, 102, 0, 0.21),
  1882. rgba(255, 65, 86, 0.6) 100%);
  1883. border-radius: 28rpx;
  1884. color: rgba(255, 255, 255, 1);
  1885. font-family: HarmonyOS Sans SC;
  1886. font-size: 18rpx;
  1887. font-weight: 500;
  1888. line-height: 18rpx;
  1889. letter-spacing: 0%;
  1890. text-align: left;
  1891. box-shadow: 0 2rpx 8rpx rgba(255, 107, 107, 0.3);
  1892. }
  1893. }
  1894. }
  1895. .job-management-card {
  1896. margin: 0rpx 40rpx;
  1897. background: #ffffff;
  1898. border-radius: 12rpx;
  1899. padding: 12rpx 32rpx;
  1900. box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.05);
  1901. .job-management-content {
  1902. display: flex;
  1903. align-items: center;
  1904. justify-content: space-between;
  1905. .job-count-text {
  1906. display: flex;
  1907. align-items: center;
  1908. .count-number {
  1909. color: #016bf6;
  1910. font-size: 32rpx;
  1911. font-weight: 600;
  1912. margin-right: 8rpx;
  1913. }
  1914. .count-label {
  1915. color: #666666;
  1916. font-size: 28rpx;
  1917. font-weight: 400;
  1918. }
  1919. }
  1920. .arrow-icon {
  1921. display: flex;
  1922. align-items: center;
  1923. justify-content: center;
  1924. }
  1925. }
  1926. }
  1927. .my-center-page {
  1928. position: absolute;
  1929. left: 0;
  1930. right: 0;
  1931. top: 0;
  1932. bottom: 0;
  1933. }
  1934. .my-bg {
  1935. /* 容器 52 */
  1936. width: 100%;
  1937. height: 656rpx;
  1938. background: linear-gradient(90deg, rgba(13, 39, 247, 1), rgba(19, 193, 234, 1) 100%);
  1939. position: absolute;
  1940. top: 0;
  1941. left: 0;
  1942. right: 0;
  1943. z-index: -1;
  1944. .paopao {
  1945. position: absolute;
  1946. width: 662rpx;
  1947. height: 662rpx;
  1948. }
  1949. .paopao-one {
  1950. left: -221rpx;
  1951. top: -170rpx;
  1952. }
  1953. .paopao-two {
  1954. top: -374rpx;
  1955. right: 0rpx;
  1956. }
  1957. .paopao-three {
  1958. width: 320rpx;
  1959. height: 320rpx;
  1960. bottom: -170rpx;
  1961. left: -40rpx;
  1962. }
  1963. .my-bg-bottom {
  1964. background: linear-gradient(to top,
  1965. rgba(250, 250, 250, 1),
  1966. rgba(255, 255, 255, 0.5) 46%,
  1967. rgba(255, 255, 255, 0) 100%);
  1968. height: 328rpx;
  1969. position: absolute;
  1970. left: 0;
  1971. right: 0;
  1972. bottom: 0;
  1973. }
  1974. }
  1975. .info-box-btn {
  1976. width: 100%;
  1977. padding: 60rpx 0 40rpx 0;
  1978. box-sizing: border-box;
  1979. image {
  1980. width: 60rpx;
  1981. height: 60rpx;
  1982. padding: 9rpx;
  1983. }
  1984. }
  1985. .info {
  1986. width: 100%;
  1987. box-sizing: border-box;
  1988. .info-box {
  1989. width: 686rpx;
  1990. padding-bottom: 20rpx;
  1991. .info-box-header {
  1992. width: 100%;
  1993. margin-top: 20rpx;
  1994. // height: 90rpx;
  1995. .info-box-header-l {
  1996. margin-right: 20rpx;
  1997. image {
  1998. width: 128rpx;
  1999. height: 128rpx;
  2000. border-radius: 50%;
  2001. display: block;
  2002. }
  2003. }
  2004. .info-box-header-r {
  2005. width: 80%;
  2006. .info-box-header-r-name {
  2007. color: rgba(255, 255, 255, 1);
  2008. font-family: DM Sans;
  2009. font-size: 48rpx;
  2010. font-weight: 400;
  2011. line-height: 72rpx;
  2012. text-align: left;
  2013. }
  2014. .info-box-header-r-bj {
  2015. color: rgba(255, 255, 255, 1);
  2016. font-family: DM Sans;
  2017. font-size: 24rpx;
  2018. font-weight: 400;
  2019. line-height: 32rpx;
  2020. letter-spacing: 0%;
  2021. text-align: left;
  2022. margin-top: 8rpx;
  2023. image {
  2024. width: 32rpx;
  2025. height: 32rpx;
  2026. margin-left: 8rpx;
  2027. }
  2028. }
  2029. }
  2030. }
  2031. .info-box-num {
  2032. margin-top: 50rpx;
  2033. padding: 0 24rpx;
  2034. // padding: 0 100rpx;
  2035. box-sizing: border-box;
  2036. .info-box-num-td {
  2037. // width: 200rpx;
  2038. .info-box-num-td-num {
  2039. width: 100%;
  2040. text-align: center;
  2041. color: #fff;
  2042. font-size: 38rpx;
  2043. font-weight: bold;
  2044. }
  2045. .info-box-num-td-name {
  2046. width: 100%;
  2047. text-align: center;
  2048. color: #fff;
  2049. font-size: 24rpx;
  2050. font-weight: 400;
  2051. margin-top: 20rpx;
  2052. }
  2053. }
  2054. }
  2055. }
  2056. }
  2057. .vip {
  2058. width: 100%;
  2059. height: 127rpx;
  2060. margin-top: 30rpx;
  2061. .vip-box {
  2062. width: 686rpx;
  2063. height: 100%;
  2064. position: relative;
  2065. .vip-box-bg {
  2066. position: absolute;
  2067. top: 0;
  2068. left: 0;
  2069. width: 100%;
  2070. height: 100%;
  2071. z-index: 1;
  2072. }
  2073. .vip-box-cont {
  2074. z-index: 2;
  2075. }
  2076. }
  2077. }
  2078. .jobServer {
  2079. width: 100%;
  2080. // height: 235rpx;
  2081. margin-top: 16rpx;
  2082. z-index: 1;
  2083. .jobServer-box {
  2084. width: 686rpx;
  2085. height: 100%;
  2086. // background-color: #fff;
  2087. // background: linear-gradient(90deg, rgba(13, 39, 247, 1), rgba(19, 193, 234, 1) 100%);
  2088. border-radius: 24rpx;
  2089. z-index: 1;
  2090. .jobServer-box-c {
  2091. width: 626rpx;
  2092. height: 100%;
  2093. }
  2094. .jobServer-box-title {
  2095. margin-top: 20rpx;
  2096. width: 100%;
  2097. color: rgba(29, 33, 41, 1);
  2098. font-family: DM Sans;
  2099. font-size: 28rpx;
  2100. font-weight: 500;
  2101. line-height: 44rpx;
  2102. }
  2103. .jobServer-box-btn {
  2104. width: 100%;
  2105. margin-top: 30rpx;
  2106. .item-width {
  2107. width: 110rpx !important;
  2108. }
  2109. .jobServer-box-btn-item {
  2110. width: 120rpx;
  2111. color: rgba(56, 58, 63, 1);
  2112. font-family: DM Sans;
  2113. font-size: 24rpx;
  2114. font-weight: 400;
  2115. line-height: 36rpx;
  2116. letter-spacing: 0%;
  2117. text-align: center;
  2118. image {
  2119. width: 62rpx;
  2120. height: 62rpx;
  2121. margin-bottom: 10rpx;
  2122. }
  2123. }
  2124. }
  2125. }
  2126. }
  2127. .utils {
  2128. width: 100%;
  2129. // height: 308rpx;
  2130. margin-top: 20rpx;
  2131. margin-bottom: 20rpx;
  2132. .utils-box {
  2133. width: 686rpx;
  2134. height: 100%;
  2135. background-color: #ffffff;
  2136. border-radius: 24rpx;
  2137. padding: 40rpx 20rpx;
  2138. box-sizing: border-box;
  2139. .utils-box-c {
  2140. width: 100%;
  2141. height: 100%;
  2142. .util-list {
  2143. display: grid;
  2144. grid-template-columns: repeat(4, 1fr);
  2145. gap: 30rpx 20rpx;
  2146. .util-item {
  2147. display: flex;
  2148. flex-direction: column;
  2149. justify-content: center;
  2150. align-items: center;
  2151. }
  2152. }
  2153. }
  2154. .utils-box-c-t {
  2155. width: 100%;
  2156. }
  2157. .utils-box-c-b {
  2158. background-color: #016bf6;
  2159. }
  2160. }
  2161. }
  2162. .money {
  2163. width: 100%;
  2164. height: 148rpx;
  2165. margin-top: 20rpx;
  2166. .money-box {
  2167. width: 686rpx;
  2168. height: 100%;
  2169. background-color: #ffffff;
  2170. border-radius: 24rpx;
  2171. .money-box-c {
  2172. width: 626rpx;
  2173. height: 90rpx;
  2174. }
  2175. .money-box-c-l {
  2176. width: 50%;
  2177. height: 100%;
  2178. border-right: 1rpx solid #e6e6e6;
  2179. box-sizing: border-box;
  2180. .money-box-c-l-name {
  2181. color: #333333;
  2182. font-size: 28rpx;
  2183. font-weight: bold;
  2184. width: 100%;
  2185. }
  2186. .money-box-c-l-price {
  2187. color: #1e1e1e;
  2188. font-size: 38rpx;
  2189. font-weight: bold;
  2190. width: 100%;
  2191. margin-top: 14rpx;
  2192. text {
  2193. font-size: 24rpx;
  2194. font-weight: 500;
  2195. }
  2196. }
  2197. }
  2198. .money-box-c-r {
  2199. width: 50%;
  2200. height: 100%;
  2201. .money-box-c-r-name {
  2202. width: 100%;
  2203. color: #333333;
  2204. font-size: 28rpx;
  2205. font-weight: bold;
  2206. padding-left: 30rpx;
  2207. }
  2208. .money-box-c-r-more {
  2209. width: 100%;
  2210. color: #999999;
  2211. font-size: 24rpx;
  2212. font-weight: 400;
  2213. padding-left: 30rpx;
  2214. margin-top: 20rpx;
  2215. }
  2216. }
  2217. }
  2218. }
  2219. // 更多功能区域
  2220. .more-functions {
  2221. margin: 48rpx 32rpx 0;
  2222. padding: 24rpx 48rpx 48rpx 48rpx;
  2223. /* background: #fff;
  2224. border-radius: 24rpx; */
  2225. .section-title {
  2226. color: rgba(29, 33, 41, 1);
  2227. font-family: DM Sans;
  2228. font-size: 28rpx;
  2229. font-weight: 500;
  2230. line-height: 44rpx;
  2231. letter-spacing: 0%;
  2232. text-align: left;
  2233. }
  2234. .function-grid {
  2235. margin-top: 24rpx;
  2236. display: flex;
  2237. // justify-content: space-between;
  2238. border-top: 0.5px solid rgba(238, 238, 238, 1);
  2239. padding-top: 16rpx;
  2240. gap: 70rpx;
  2241. .function-item {
  2242. display: flex;
  2243. flex-direction: column;
  2244. align-items: center;
  2245. gap: 16rpx;
  2246. .function-icon {
  2247. width: 48rpx;
  2248. height: 48rpx;
  2249. }
  2250. .function-text {
  2251. color: #333;
  2252. font-size: 24rpx;
  2253. font-weight: 500;
  2254. }
  2255. }
  2256. }
  2257. }
  2258. // 联系信息
  2259. .contact-info {
  2260. margin: 0 40rpx 120rpx 40rpx;
  2261. padding: 40rpx;
  2262. .contact-text,
  2263. .legal-text,
  2264. .icp-text {
  2265. display: block;
  2266. color: rgba(153, 153, 153, 1);
  2267. font-family: DM Sans;
  2268. font-size: 18rpx;
  2269. font-weight: 400;
  2270. line-height: 1.6;
  2271. letter-spacing: 0%;
  2272. text-align: center;
  2273. margin-bottom: 8rpx;
  2274. }
  2275. }
  2276. </style>