index.vue 59 KB

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