index.vue 64 KB

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