index.vue 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784
  1. <template>
  2. <view>
  3. <block v-if="XCXIsSelect!='是'">
  4. <view class="banner flex justify-center">
  5. <view class="banner-box">
  6. <swiper :indicator-dots="false" style="width: 100%;height: 100%;" :autoplay="true" :interval="300"
  7. :duration="1000">
  8. <swiper-item v-for="(item,index) in bannerList" :key="index" @click="goNave(item.url)">
  9. <view class="swiper-item" style="width: 100%;height: 100%;">
  10. <image :src="item.imageUrl" style="width: 100%;height: 100%;border-radius: 24rpx;"
  11. mode="scaleToFill"></image>
  12. </view>
  13. </swiper-item>
  14. </swiper>
  15. </view>
  16. </view>
  17. <view class="" style="width: 100%;margin-top: 20rpx;" v-for="(item,index) in dataList" :key="index">
  18. <view class=""
  19. style="padding: 20rpx 20rpx;width: 686rpx;background-color: #ffffff;border-radius: 18rpx;margin: auto;">
  20. <view class="">
  21. <text>{{item.company?item.company.companyName:''}}</text>信息简介
  22. </view>
  23. <view class="flex flex-wrap" style="margin-top: 20rpx;">
  24. <text
  25. style="color: #666666;font-size: 26rpx;padding: 10rpx 25rpx 10rpx 25rpx;background-color: #F6F6F6;border-radius: 8rpx;margin-right: 20rpx;margin-bottom: 20rpx;"
  26. v-for="(ite,ind) in item.positionWelfare" :key="ind">{{ite}}</text>
  27. </view>
  28. <view class="" style="margin-top: 20rpx;">
  29. <text>{{item.company?item.company.companyName:''}}提供数据支持</text>
  30. </view>
  31. </view>
  32. </view>
  33. </block>
  34. <block v-else>
  35. <!-- 用户端 -->
  36. <block v-if="userType==1">
  37. <!-- <view class="topbg"> -->
  38. <!-- 顶部图片区 -->
  39. <!-- #ifdef H5 -->
  40. <!-- <view class="banner flex justify-center" style="padding-top: 20rpx;"
  41. v-if="bannerListuser.length!=0"> -->
  42. <!-- #endif -->
  43. <!-- #ifndef H5 -->
  44. <!-- <view class="banner flex justify-center" v-if="bannerListuser.length!=0"> -->
  45. <!-- #endif -->
  46. <!-- <view class="banner-box">
  47. <swiper :indicator-dots="false" style="width: 100%;height: 100%;" :autoplay="true"
  48. :interval="5000" :duration="300">
  49. <swiper-item v-for="(item,index) in bannerListuser" :key="index"
  50. @click="goNave(item.url)">
  51. <view class="swiper-item" style="width: 100%;height: 100%;">
  52. <image :src="item.imageUrl"
  53. style="width: 100%;height: 100%;border-radius: 24rpx;"
  54. mode="scaleToFill">
  55. </image>
  56. </view>
  57. </swiper-item>
  58. </swiper>
  59. </view>
  60. </view> -->
  61. <!-- 公告区 -->
  62. <!-- <view class="announcement" v-if="gongao.length!=0">
  63. <view class="announcementbox">
  64. <view class="anount">最新公告</view>
  65. <view class="anounts flex align-center" v-if="gongao.length>0">
  66. <view class="" style="width: 100%;">
  67. <u-notice-bar color="#333" bg-color="#e5fff2" padding="0rpx 24rpx 4rpx 24rpx"
  68. :volume-icon="false" style="height: 100%;" mode="vertical"
  69. :list="gongao"></u-notice-bar>
  70. </view>
  71. </view>
  72. <view class="anounts flex align-center" style="padding-left: 30rpx;" v-else>
  73. 暂无公告
  74. </view>
  75. </view>
  76. </view> -->
  77. <!-- 企业端 -->
  78. <!-- <view v-if="gridlist.length!=0">
  79. <u-grid :col="4" :border="false">
  80. <u-grid-item bg-color="#00DD9A">
  81. <view v-for="(item,index) in gridlist" :key="index" style="text-align: center;"
  82. @click="goNave(item.url)">
  83. <image :src="item.imageUrl"
  84. style="width:80rpx;height: 80rpx;border-radius: 50%;">
  85. </image>
  86. <view style="color: #FFFFFF;">{{item.name}}</view>
  87. </view>
  88. </u-grid-item>
  89. </u-grid>
  90. </view> -->
  91. <!-- </view> -->
  92. <view class="topbg-sticky">
  93. <image class="top-bg" src="/static/images/index/index-bg.png" mode="widthFix" />
  94. <!-- <view class="top-bg"></view> -->
  95. <!-- 标题-搜索 -->
  96. <view class="topbg-sticky-box" :style="{ paddingTop: (12 + statusBarHeight) + 'px' }">
  97. <view class="topbg-sticky-title flex justify-between align-center">
  98. <view class="topbg-sticky-title-left flex align-center">
  99. <image src="../../static/images/index/xingIcon.svg" class="xing-icon" />
  100. <view>星光不负逐梦人</view>
  101. </view>
  102. <view class="topbg-sticky-title-right flex align-center"
  103. @click="goNavs('/package/search/search')">
  104. <u-icon name="search" color="#ffffff" size="40"></u-icon>
  105. </view>
  106. </view>
  107. <view class="topbg-sticky-subtitle">亿职赞,愿你在追梦路上找到心仪工作</view>
  108. </view>
  109. <!-- tabs和筛选 -->
  110. <view class="topbg-type flex justify-center">
  111. <view class="topbg-type-box">
  112. <!-- 第一行:tabs -->
  113. <view class="topbg-type-box-row flex justify-between align-center">
  114. <view class="topbg-type-box-l flex align-center">
  115. <view class="topbg-type-box-l-i" :class="current==index?'active':''"
  116. @tap="current = index" v-for="(item,index) in typeList" :key="index">
  117. {{item.label}}
  118. </view>
  119. </view>
  120. <!-- 添加求职意向 -->
  121. <view class="topbg-yx-box-r flex align-center" @click="addDirection">
  122. <image src="../../static/images/index/Attachment.svg" class="attachment-icon" />
  123. </view>
  124. </view>
  125. <!-- 第二行:筛选 -->
  126. <view class="topbg-sx-box flex justify-between align-center">
  127. <!-- 分类 -->
  128. <view class="topbg-sx-box-l flex align-center">
  129. <view class="topbg-sx-box-l-i" :class="currentSx==index?'active3':''"
  130. @click="currentSx = index" v-for="(item,index) in sxTypeList" :key="index">
  131. {{item.name}}
  132. </view>
  133. </view>
  134. <view class="topbg-sx-box-r flex align-center">
  135. <!-- 城市 -->
  136. <view class="topbg-sx-box-r-i flex align-center" style=""
  137. @click="goNav('/package/screen/city?city='+city+'&county='+county+'&type='+'search')">
  138. <text style="margin-right: 10rpx;">{{county?county:city?city:'选择城市'}}</text>
  139. <u-icon name="arrow-down" color="#016bf6" size="16"></u-icon>
  140. </view>
  141. <!-- <text style="color: #CCCCCC;margin-left: 30rpx;margin-right: 30rpx;">|</text> -->
  142. <block v-if="current != typeList.length - 1">
  143. <!-- 筛选 -->
  144. <view class="topbg-sx-box-filter flex align-center"
  145. :class="{ activeColor: filledFieldsCount }">
  146. <text style="margin-right: 10rpx;"
  147. @click="goNavs('/package/screen/screen')">筛选{{filledFieldsCount}}</text>
  148. <u-icon name="arrow-down" :color="filledFieldsCount?'#016bf6':'#999999'"
  149. size="16" @click="goNavs('/package/screen/screen')"></u-icon>
  150. </view>
  151. </block>
  152. <block v-else>
  153. <!-- 筛选 -->
  154. <view class="topbg-sx-box-filter flex align-center"
  155. :class="{ activeColor: filledFieldsCount }">
  156. <text style="margin-right: 10rpx;"
  157. @click="goNavs('/package/screen/screenComp')">筛选{{filledFieldsCount}}</text>
  158. <u-icon name="arrow-down" color="filledFieldsCount?'#016bf6':'#999999'"
  159. size="16" @click="goNavs('/package/screen/screenComp')"></u-icon>
  160. </view>
  161. </block>
  162. </view>
  163. </view>
  164. <!-- 从事方向 -->
  165. <view class="direction-tip">
  166. <view class="direction-tip-title">请选择您可从事方向</view>
  167. <view class="direction-tip-subtitle">您的偏好选择将用于为您推荐更匹配的职位</view>
  168. <!-- 标签选择 -->
  169. <view class="direction-tags flex align-center flex-wrap">
  170. <view class="direction-tag"
  171. :class="preference.indexOf(item.id)>=0||(preference.length<=0&&item.id=='不限')?'active':''"
  172. @click="selectPreference(item)" v-for="(item,index) in directionList"
  173. :key="index">
  174. {{item.name}}
  175. </view>
  176. <!-- <view class="direction-tag-add" @click="addDirection">
  177. <text>对应职位相关标签</text>
  178. </view> -->
  179. <view class="direction-tag-plus" @click="goPreference">
  180. <u-icon name="plus" color="#999999" size="16"></u-icon>
  181. </view>
  182. </view>
  183. </view>
  184. </view>
  185. </view>
  186. <!-- 求职意向 -->
  187. <!-- <view class="topbg-yx flex justify-center flex-wrap">
  188. <view v-if="current != typeList.length - 1"
  189. class="topbg-yx-box flex justify-between align-center">
  190. <view class="topbg-yx-box-l ">
  191. <scroll-view scroll-x="true" class="topbg-scroll"
  192. :scroll-into-view="'bottomView'+currentjob" scroll-with-animation="true">
  193. <view class="topbg-yx-box-l-i" :id="'bottomView'+index"
  194. :class="currentjob==index?'active2':''" @click="currentjob=index"
  195. v-for="(item,index) in jobTypeList" :key="index">
  196. <view class="topbg-yx-box-l-i-c">
  197. <view class="topbg-yx-box-l-i-text">{{item.name}}</view>
  198. <view v-if="currentjob==index" class="topbg-yx-box-l-i-line"></view>
  199. </view>
  200. </view>
  201. </scroll-view>
  202. </view>
  203. </view>
  204. </view> -->
  205. <!-- <view
  206. style="width: 100%;height: 40rpx;background: #F2F2F7;border-radius: 40rpx 40rpx 0 0;margin-top: 20rpx;"
  207. v-if="current == typeList.length - 1 && companList.length>0"></view> -->
  208. </view>
  209. <!-- 岗位推荐 -->
  210. <block v-if="current != typeList.length - 1">
  211. <view class="gwList flex justify-center" v-if="dataList.length>0">
  212. <view class="gwList-box">
  213. <scroll-view scroll-y="true" style="width: 100%;height: 60vh;">
  214. <view class="gwList-box-item flex justify-center" @click="gotoInfo(item.postPushId)"
  215. v-for="(item,index) in dataList" :key="index">
  216. <view class="gwList-box-item-box">
  217. <!-- 标题-薪资 -->
  218. <view class="gwList-box-item-box-title flex justify-between align-center">
  219. <view class="title-left flex align-center">
  220. <view class="job-title-text"
  221. style="max-width: 450rpx;overflow:hidden;white-space: nowrap;text-overflow: ellipsis;-o-text-overflow:ellipsis;">
  222. <!-- <block v-if="isSameName(item.ruleClassifyName,item.stationName)">
  223. {{item.ruleClassifyName}}-
  224. </block> -->
  225. <block>
  226. {{item.ruleClassifyName}}
  227. </block>
  228. </view>
  229. <view v-if="item.isDue==1" class="salary-text-box">
  230. <image src="../../static/images/index/jipinIcom.svg"
  231. class="jipin-icon" />
  232. <text class="jipin-text">急聘</text>
  233. </view>
  234. </view>
  235. <text class="salary-text">{{item.salaryRange}}</text>
  236. </view>
  237. <!-- 公司名称-公司人数 -->
  238. <view class="gwList-box-item-box-name flex align-center">
  239. <text class="company-name"
  240. style="margin-right: 8rpx;">{{item.company?item.company.companyName:''}}</text>
  241. <text class="company-people"
  242. v-if="item.company">{{item.company?item.company.companyPeople:'0人'}}</text>
  243. </view>
  244. <!-- 职位标签 -->
  245. <view class="gwList-box-item-box-label flex align-center flex-wrap">
  246. <text class="job-tag">{{item.education}}</text>
  247. <text class="job-tag">{{item.experience}}</text>
  248. <text class="job-tag" v-for="(ite,ind) in item.welfareTag||[]"
  249. :key="ind">{{ite}}</text>
  250. </view>
  251. <!-- <view class="gwList-box-item-box-line"></view> -->
  252. <!-- 公司简介-位置 -->
  253. <view class="gwList-box-item-box-info flex justify-between align-center">
  254. <view class="gwList-box-item-box-info-l flex align-center">
  255. <image
  256. :src="item.hr&&item.hr.hrImg?item.hr.hrImg:'../../static/logo.png'"
  257. style="width: 58rpx;height: 58rpx;border-radius: 50%;" mode="">
  258. </image>
  259. <view class="company-info-text">
  260. {{item.user&&item.user.userName||'未知'}}·{{item.hr&&item.hr.hrPosition||'未知'}}
  261. </view>
  262. <view v-if="item.respondTime" class="reply-time">{{item.respondTime}}
  263. </view>
  264. </view>
  265. <view class="location-text">
  266. {{item.distance}} {{item.county}}
  267. </view>
  268. </view>
  269. </view>
  270. </view>
  271. </scroll-view>
  272. </view>
  273. </view>
  274. <!-- 暂无数据 -->
  275. <view class="gwList" v-else>
  276. <empty />
  277. </view>
  278. </block>
  279. <view class="companyListBox" v-if="current == typeList.length - 1 && companList.length>0">
  280. <companyListIndex @goInfo="goInfo" :item="item" v-for="(item,index) in companList" :key="index" />
  281. </view>
  282. <view class="gwList" v-if="current == typeList.length - 1 && companList.length==0">
  283. <empty />
  284. </view>
  285. </block>
  286. <!-- 企业版 -->
  287. <block v-else>
  288. <!-- 顶部banner图片 -->
  289. <!--
  290. <view class="banner flex justify-center">
  291. <view class="banner-box">
  292. <swiper :indicator-dots="false" style="width: 100%;height: 100%;" :autoplay="true"
  293. :interval="5000" :duration="300">
  294. <swiper-item v-for="(item,index) in bannerList" :key="index">
  295. <view class="swiper-item" style="width: 100%;height: 100%;">
  296. <image :src="item.imageUrl" style="width: 100%;height: 100%;border-radius: 24rpx;"
  297. mode="scaleToFill"></image>
  298. </view>
  299. </swiper-item>
  300. </swiper>
  301. </view>
  302. </view>
  303. -->
  304. <view class="topbg-sticky">
  305. <!-- <image class="top-bg" src="/static/images/index/index-bg1.png" mode="widthFix" /> -->
  306. <!-- <view class="top-bg"></view> -->
  307. <!-- 标题-搜索 -->
  308. <view class="topbg-sticky-box" :style="{ paddingTop: (12 + statusBarHeight) + 'px' }">
  309. <view class="topbg-sticky-title flex justify-between align-center">
  310. <view class="topbg-sticky-title-left flex align-center">
  311. <image src="../../static/images/index/xingIcon.svg" class="xing-icon" />
  312. <view>星光不负逐梦人</view>
  313. </view>
  314. </view>
  315. <view class="topbg-sticky-subtitle">亿职赞,愿你在逐梦路上找到心仪伙伴</view>
  316. </view>
  317. <!-- tabs和筛选 -->
  318. </view>
  319. <!-- 最新公告 -->
  320. <view class="announcement" v-if="gongao.length!=0">
  321. <view class="announcementbox">
  322. <view class="anount">最新公告</view>
  323. <view class="anounts flex align-center" v-if="gongao.length>0">
  324. <view class="" style="width: 100%;">
  325. <u-notice-bar color="#333" bg-color="#e5fff2" padding="0rpx 24rpx 4rpx 24rpx"
  326. :volume-icon="false" style="height: 100%;" mode="vertical"
  327. :list="gongao"></u-notice-bar>
  328. </view>
  329. </view>
  330. </view>
  331. </view>
  332. <view v-if="gridlist.length!=0">
  333. <u-grid :col="4" :border="false">
  334. <u-grid-item bg-color="#f2f2f7">
  335. <view v-for="(item,index) in gridlist" :key="index" style="text-align: center;"
  336. @click="goNave(item.url)">
  337. <image :src="item.imageUrl" style="width:80rpx;height: 80rpx;border-radius: 50%;">
  338. </image>
  339. <view style="color: #333333;">{{item.name}}</view>
  340. </view>
  341. </u-grid-item>
  342. </u-grid>
  343. </view>
  344. <!-- 筛选 -->
  345. <!-- :style="{ paddingTop: (12 + statusBarHeight) + 'px !important' }" -->
  346. <u-sticky @fixed="isfixed" @unfixed="isunfixed" h5-nav-height="0" bg-color="#F2F2F7" :enable="enable">
  347. <view class="qySx flex justify-center" :class="isfixeds==true?'isfixed':'isfixeds'">
  348. <image class="qySx-bg" src="/static/images/index/index-bg1.png" mode="widthFix"></image>
  349. <view class="qySx-box">
  350. <!-- 第一行:tabs -->
  351. <view class="qySx-box-row flex justify-between align-center">
  352. <view class="qySx-box-l flex align-center">
  353. <view class="qySx-box-l-i" :class="currentJobSx==index?'active':''"
  354. @tap="currentJobSx=index;getDomWidth()" v-for="(item,index) in jobSxTypeList"
  355. :key="index">
  356. {{item.name}}
  357. </view>
  358. </view>
  359. <!-- 发布招聘 -->
  360. <!-- <view class="qySx-box-r flex align-center" @click="goNavss('/package/addJob/addJob')">
  361. <image src="../../static/images/index/Attachment.svg" class="attachment-icon" />
  362. </view> -->
  363. <view class="qySx-box-r flex align-center"
  364. @click="goNavss('/pages/my/jobPosting?companyId='+companyId+'&status='+companyStatus+'&companyName='+companyName)">
  365. <image src="../../static/images/index/Attachment.svg" class="attachment-icon" />
  366. </view>
  367. </view>
  368. <!-- 第二行:筛选 -->
  369. <view class="qySx-sx-box flex justify-between align-center">
  370. <!-- 分类 -->
  371. <view class="qySx-sx-box-l flex align-center">
  372. <view class="qySx-sx-box-l-i" :class="currentJobSxs==index?'active3':''"
  373. @click="currentJobSxs=index" v-for="(item,index) in jobSxsTypeList"
  374. :key="index">
  375. {{item.name}}
  376. </view>
  377. </view>
  378. <view class="qySx-sx-box-r flex align-center">
  379. <!-- 城市 -->
  380. <view class="qySx-sx-box-r-i flex align-center">
  381. <text style="margin-right: 10rpx;"
  382. @click="goNav('/package/jobIntention/city')">{{city?city:'选择城市'}}</text>
  383. <u-icon name="arrow-down" color="#00B78F" size="16"
  384. @click="goNav('/package/jobIntention/city')"></u-icon>
  385. </view>
  386. <!-- 筛选 -->
  387. <view class="qySx-sx-box-filter flex align-center">
  388. <text style="margin-right: 10rpx;"
  389. @click="goNav('/package/screen/screen?type=2')">筛选</text>
  390. <u-icon name="arrow-down" color="#999999" size="16"
  391. @click="goNav('/package/screen/screen?type=2')"></u-icon>
  392. </view>
  393. </view>
  394. </view>
  395. </view>
  396. </view>
  397. </u-sticky>
  398. <!-- Vip推荐 -->
  399. <!-- <view class="vipRecommend">
  400. <view class="vipRecommend-box">
  401. <view class="vipRecommend-close" @click="closeVipRecommend">
  402. <image src="../../static/images/index/qiyeDelete.svg" class="close-icon" />
  403. </view>
  404. <view class="vipRecommend-content">
  405. <view class="vipRecommend-title">
  406. <text class="job-title">亚马逊运营总监</text>
  407. <text class="job-status">职位体验中</text>
  408. </view>
  409. <view class="vipRecommend-message">
  410. 今日已错过24位新增牛人
  411. </view>
  412. <view class="vipRecommend-hint">
  413. 升级VIP正式版,享更多查看沟通权益
  414. </view>
  415. </view>
  416. </view>
  417. </view> -->
  418. <!-- 简历列表 -->
  419. <view class="qyList flex justify-center">
  420. <view class="qyList-box">
  421. <view class="qyList-box-item flex justify-center" v-for="(item,index) in datasList" :key="index"
  422. @click="goNav('/pages/talentSearch/resumeDetail?resumesId='+item.resumesId+'&postPushId='+jobSxTypeList[currentJobSx].id)">
  423. <!-- /pages/index/game/orderDet -->
  424. <view class="qyList-box-item-box">
  425. <view class="qyList-box-item-info flex justify-between align-center">
  426. <view class="qyList-box-item-info-l">
  427. <view class="" style="color: #212121;font-size: 38rpx;font-weight: 800;">
  428. {{item.userName}}
  429. </view>
  430. <view class="flex align-center flex-wrap"
  431. style="color: #999999;font-size: 26rpx;margin-top: 10rpx;">
  432. <text>{{item.userAge}}岁</text>
  433. <text style="margin-left: 20rpx;margin-right: 20rpx;">|</text>
  434. <text>{{item.resumesWorkExperience || 0}}年</text>
  435. <text style="margin-left: 20rpx;margin-right: 20rpx;">|</text>
  436. <text>{{item.degree}}</text>
  437. <text style="margin-left: 20rpx;margin-right: 20rpx;">|</text>
  438. <text>期望{{item.minSalary}}-{{item.maxSalary}}元</text>
  439. </view>
  440. </view>
  441. <view class="qyList-box-item-info-r">
  442. <image :src="item.userAvatar?item.userAvatar:'../../static/logo.png'"
  443. style="width: 95rpx;height: 95rpx;border-radius: 50%;" mode=""></image>
  444. </view>
  445. </view>
  446. <view class="qyList-box-item-job flex align-center">
  447. <image src="../../static/images/qi.png"
  448. style="width: 30rpx;height: 32rpx;margin-right: 16rpx;" mode=""></image>
  449. <block v-if="item.workType">
  450. {{item.workType?item.workType:''}} /
  451. {{item.workType?item.workType:''}}
  452. </block>
  453. <block v-else>
  454. 暂无工作经历
  455. </block>
  456. </view>
  457. <view class="qyList-box-item-job flex align-center">
  458. <u-icon name="heart-fill" color="#016BF6" size="30" style="margin-right: 16rpx;">
  459. </u-icon>
  460. 求职期望:{{item.expectedPosition}}
  461. </view>
  462. <view class="resume-skills" v-if="item.skills && item.skills.length > 0">
  463. <!-- <text class="skills-label">技能标签:</text> -->
  464. <view class="skills-tags flex flex-wrap">
  465. <text class="tag-item" v-for="(skill, skillIdx) in item.skills.split(',')"
  466. :key="skillIdx">
  467. {{skill}}
  468. </text>
  469. </view>
  470. </view>
  471. <view class="qyList-box-item-rem" v-if="item.workContent">
  472. 优势:{{item.workContent}}
  473. </view>
  474. </view>
  475. </view>
  476. <empty :isShow="false" v-if="datasList.length==0" />
  477. </view>
  478. </view>
  479. </block>
  480. </block>
  481. <view v-if="goback==true" class="goback" @click="gotoBack">
  482. <image style="width: 88rpx;height: 88rpx;border-radius: 50%;" src="../../static/images/up.jpg" mode="">
  483. </image>
  484. </view>
  485. </view>
  486. </template>
  487. <script>
  488. import empty from '../../components/empty.vue'
  489. import permision from '@/js_sdk/wa-permission/permission.js'
  490. import companyListIndex from '@/components/companyListIndex/companyListIndex.vue'
  491. export default {
  492. components: {
  493. empty,
  494. companyListIndex
  495. },
  496. data() {
  497. return {
  498. statusBarHeight: 0, // 状态栏高度
  499. enable: true, //开启吸顶
  500. goback: false,
  501. county: '', //区
  502. city: '',
  503. companyName: "",
  504. companyId: "",
  505. datasList: [],
  506. isfixeds: false,
  507. userType: 1,
  508. dataList: [],
  509. current: 0,
  510. typeList: [],
  511. currentSx: 0,
  512. sxTypeList: [{
  513. id: 1,
  514. name: '推荐',
  515. },
  516. {
  517. id: 2,
  518. name: '最新',
  519. },
  520. {
  521. id: 3,
  522. name: '附近',
  523. }
  524. ],
  525. currentjob: 0,
  526. jobTypeList: [{
  527. projectName: '',
  528. name: '全部',
  529. }, ],
  530. currentJobSx: 0,
  531. jobSxTypeList: [{
  532. projectName: '',
  533. name: '全部',
  534. }],
  535. currentJobSxs: 0,
  536. jobSxsTypeList: [{
  537. id: 1,
  538. name: '推荐',
  539. },
  540. {
  541. id: 2,
  542. name: '最新',
  543. },
  544. //{
  545. // id: 2,
  546. // name: '优选',
  547. // }
  548. ],
  549. token: '',
  550. page: 1,
  551. limit: 10,
  552. latitude: '',
  553. longitude: '',
  554. totlo: '',
  555. education: '', //学历
  556. experience: '', //经验
  557. industry: '', //行业
  558. salaryRange: '', //薪资
  559. companyPeople: '', //公司规模
  560. preference: [],
  561. domeWidth: 0,
  562. showModal: true,
  563. arr: [],
  564. companyStatus: '',
  565. XCXIsSelect: '是',
  566. bannerList: [], //企业端轮播图
  567. bannerListuser: [], //用户端轮播图
  568. gridlist: [], //用户端分类
  569. gongao: [], //公告
  570. tuiguang: '', //分享标题
  571. bgImg: '', //分享图片
  572. companList: [], //公司列表
  573. directionList: [ //方向列表
  574. {
  575. id: '不限',
  576. name: '不限'
  577. }
  578. ],
  579. };
  580. },
  581. onShareAppMessage(res) {
  582. return {
  583. path: '/pages/index/index?invitation=' + uni.getStorageSync(
  584. 'invitationCode'), //这是为了传参 onload(data){let id=data.id;}
  585. title: this.tuiguang,
  586. imageUrl: this.bgImg
  587. }
  588. },
  589. onShareTimeline(res) {
  590. return {
  591. path: '/pages/index/index?invitation=' + uni.getStorageSync(
  592. 'invitationCode'), //这是为了传参
  593. title: this.tuiguang,
  594. imageUrl: this.bgImg
  595. }
  596. },
  597. computed: {
  598. filledFieldsCount() {
  599. const fields = [this.education, this.experience, this.industry, this.salaryRange, this.companyPeople];
  600. const count = fields.filter(item => item).length;
  601. return count > 0 ? '·' + count : '';
  602. }
  603. },
  604. watch: {
  605. current(newData, oldData) {
  606. console.log(this.current)
  607. uni.showLoading({
  608. title: '加载中'
  609. })
  610. this.page = 1
  611. if (this.current == this.typeList.length - 1) { //公司
  612. this.getComanyList()
  613. } else {
  614. this.getUserList()
  615. }
  616. },
  617. currentSx(newData, oldData) {
  618. uni.showLoading({
  619. title: '加载中'
  620. })
  621. this.page = 1
  622. this.getUserList();
  623. },
  624. currentjob(newData, oldData) {
  625. uni.showLoading({
  626. title: '加载中'
  627. })
  628. this.page = 1
  629. this.getUserList()
  630. },
  631. currentJobSx(newData, oldData) {
  632. uni.showLoading({
  633. title: '加载中'
  634. })
  635. this.page = 1
  636. this.getPeopList()
  637. },
  638. currentJobSxs(newData, oldData) {
  639. uni.showLoading({
  640. title: '加载中'
  641. })
  642. this.page = 1
  643. this.getPeopList()
  644. },
  645. //监听userType的变化 如果有旧值跟新值不同 则把分页重置为初始状态,为了解决切换身份后数据分页错误的问题
  646. userType(newType, oldType) {
  647. if (newType != oldType) {
  648. this.page = 1
  649. if (this.userType == 1) {
  650. uni.showLoading({
  651. title: '加载中'
  652. })
  653. this.page = 1
  654. this.getUserList()
  655. } else {
  656. uni.showLoading({
  657. title: '加载中'
  658. })
  659. this.page = 1
  660. this.getPeopList()
  661. }
  662. }
  663. }
  664. },
  665. onPageScroll(e) {
  666. if (e.scrollTop > 350) {
  667. this.goback = true
  668. } else {
  669. this.goback = false
  670. }
  671. },
  672. onLoad(e) {
  673. // 获取状态栏高度
  674. let systemInfo = uni.getSystemInfoSync();
  675. this.statusBarHeight = systemInfo.statusBarHeight || 0;
  676. this.companyId = uni.getStorageSync('companyId');
  677. // #ifdef APP
  678. this.getAudioPermision()
  679. // #endif
  680. // 获取邀请码保存到本地
  681. if (e.invitation) {
  682. this.$queue.setData('inviterCode', e.invitation);
  683. }
  684. // #ifdef MP-WEIXIN
  685. if (e.scene) {
  686. const scene = decodeURIComponent(e.scene);
  687. this.$queue.setData('inviterCode', scene.split(',')[0]);
  688. }
  689. // #endif
  690. // this.XCXIsSelect = this.$queue.getData("XCXIsSelect");
  691. uni.showLoading({
  692. title: '加载中'
  693. })
  694. if (uni.getStorageSync('userType')) {
  695. this.userType = uni.getStorageSync('userType');
  696. }
  697. let that = this
  698. uni.$on('preferenceUpdated', (data) => {
  699. let prefer = []
  700. data.preferences.forEach(function(item) {
  701. var tem = {
  702. id: item,
  703. name: item
  704. }
  705. prefer.push(tem)
  706. })
  707. that.directionList = prefer
  708. })
  709. this.getDomWidth()
  710. this.$Request.getT('/app/common/type/255').then(res => {
  711. uni.hideLoading();
  712. if (res.code === 0) {
  713. if (res.data && res.data.value) {
  714. this.tuiguang = res.data.value;
  715. }
  716. }
  717. });
  718. if (this.userType == 1) { //用户邀请图
  719. this.$Request.getT('/app/banner/selectBannerList?state=-1&classify=5').then(res => {
  720. if (res.code === 0) {
  721. this.bgImg = res.data[0].imageUrl;
  722. }
  723. });
  724. } else { //企业邀请图
  725. this.$Request.getT('/app/banner/selectBannerList?state=-1&classify=6').then(res => {
  726. if (res.code === 0) {
  727. this.bgImg = res.data[0].imageUrl;
  728. }
  729. });
  730. }
  731. // 监听筛选条件触发getJobSearchList
  732. uni.$on('updateScreenFilterRecord', () => {
  733. //待处理
  734. })
  735. // uni.$on('city', data => {
  736. // that.city = data.city
  737. // uni.setStorageSync('city', that.city)
  738. // })
  739. uni.$on('filterCity', data => {
  740. console.log(data, '选择的市')
  741. that.city = data.city
  742. that.county = data.county
  743. uni.setStorageSync('city', that.city)
  744. this.page = 1
  745. that.getUserList();
  746. })
  747. },
  748. onUnload() {
  749. uni.$off('filterCity');
  750. uni.$off('preferenceUpdated')
  751. uni.$off('updateScreenFilterRecord')
  752. // uni.$off('city')
  753. },
  754. //下拉刷新
  755. onPullDownRefresh() {
  756. this.page = 1
  757. if (this.userType == 1) {
  758. if (this.current != this.typeList.length - 1) {
  759. this.getUserList()
  760. } else {
  761. this.getComanyList()
  762. }
  763. } else {
  764. this.getPeopList()
  765. }
  766. },
  767. //加载更多
  768. onReachBottom() {
  769. if (this.page < this.totlo) {
  770. this.page += 1
  771. if (this.userType == 1) {
  772. if (this.current != this.typeList.length - 1) {
  773. this.getUserList()
  774. } else {
  775. this.getComanyList()
  776. }
  777. } else {
  778. this.getPeopList()
  779. }
  780. }
  781. },
  782. onHide() {
  783. //离开页面时关闭吸顶功能,用于处理h5环境运行下'bottom' of null报错的问题
  784. this.enable = false
  785. },
  786. onShow() {
  787. let that = this;
  788. this.getBannerList()
  789. this.getgridList()
  790. this.getgonggaoList()
  791. // #ifdef MP-WEIXIN
  792. this.$Request.get('/app/common/type/257').then(res => {
  793. if (res.code == 0) {
  794. // #ifdef MP-WEIXIN
  795. this.XCXIsSelect = res.data.value
  796. // #endif
  797. // #ifndef MP-WEIXIN
  798. this.XCXIsSelect = '是'
  799. // #endif
  800. }
  801. });
  802. // this.$Request.get('/app/common/type/238').then(res => {
  803. // if (res.code == 0) {
  804. // // #ifdef MP-WEIXIN
  805. // this.XCXIsSelect = res.data.value
  806. // // #endif
  807. // // #ifndef MP-WEIXIN
  808. // this.XCXIsSelect = '是'
  809. // // #endif
  810. // }
  811. // });
  812. // #endif
  813. this.enable = true
  814. if (uni.getStorageSync('userType')) {
  815. this.userType = uni.getStorageSync('userType');
  816. }
  817. this.token = uni.getStorageSync('token');
  818. const condition = this.$queue.getFilterData()
  819. this.education = condition.education //学历
  820. this.experience = condition.experience //经验
  821. this.industry = condition.industry //行业
  822. this.salaryRange = condition.salaryRange //薪资
  823. this.companyPeople = condition.companyPeople //公司规模
  824. // this.getPostType();
  825. if (this.userType == 1) {
  826. uni.setNavigationBarColor({
  827. frontColor: '#ffffff',
  828. backgroundColor: '#00DD9A'
  829. })
  830. } else {
  831. uni.setNavigationBarColor({
  832. frontColor: '#000000',
  833. backgroundColor: '#F2F2F7'
  834. })
  835. }
  836. if (this.token) {
  837. this.getUserInfo();
  838. if (this.userType == 1) {
  839. this.getJobType();
  840. } else {
  841. this.jobTypeList = [{
  842. projectName: '',
  843. name: '全部',
  844. }]
  845. this.getCompanyClassify()
  846. this.getCompanyStatus()
  847. }
  848. this.$Request.getT('/app/common/type/310').then(res => { //消息未读提醒
  849. if (res.code == 0) {
  850. if (res.data && res.data.value) {
  851. this.arr.push(res.data.value)
  852. }
  853. }
  854. })
  855. this.$Request.getT('/app/common/type/337').then(res => { //预约成功通知(通用)
  856. if (res.code == 0) {
  857. if (res.data && res.data.value) {
  858. this.arr.push(res.data.value)
  859. }
  860. }
  861. })
  862. this.$Request.getT('/app/common/type/338').then(res => { //订单状态通知
  863. if (res.code == 0) {
  864. if (res.data && res.data.value) {
  865. this.arr.push(res.data.value)
  866. }
  867. }
  868. })
  869. // #ifdef MP-WEIXIN
  870. if (this.showModal) {
  871. this.openMsg()
  872. }
  873. // #endif
  874. } else {
  875. this.jobTypeList = [{
  876. projectName: '',
  877. name: '全部',
  878. }]
  879. }
  880. if (uni.getStorageSync('city')) {
  881. this.city = uni.getStorageSync('city')
  882. } else {
  883. this.city = ''
  884. }
  885. if (this.city) {
  886. if (this.userType == 1) {
  887. if (this.current != this.typeList.length - 1) {
  888. this.getPostType();
  889. } else {
  890. this.getComanyList()
  891. }
  892. } else {
  893. this.getCompanyClassify()
  894. }
  895. // if (this.userType == 1) { //用户端岗位
  896. // that.getPostType();
  897. // } else { //企业端简历
  898. // that.getPeopList();
  899. // }
  900. }
  901. },
  902. methods: {
  903. //去企业详情
  904. goInfo(item) {
  905. uni.navigateTo({
  906. url: '/my/enterpriseInfo/enterpriseInfo?companyId=' + item.companyId
  907. })
  908. },
  909. //
  910. async getLocalJobs() {
  911. const hasLocation = await this.$queue.checkPermission(
  912. 'location',
  913. '获取位置需要定位权限,用于推荐同城的求职岗位'
  914. );
  915. if (!hasLocation) return;
  916. // 权限通过,调用定位API
  917. uni.getLocation({
  918. type: 'wgs84', //wgs84 gcj02
  919. success: function(res) {
  920. console.log(res, '地理位置');
  921. that.latitude = res.latitude;
  922. that.longitude = res.longitude;
  923. if (that.userType == 1) {
  924. // that.getUserList();
  925. that.getPostType()
  926. } else {
  927. that.getCompanyClassify()
  928. }
  929. // console.log(uni.getStorageSync('city') == '', '22222222222')
  930. if (!uni.getStorageSync('city') || uni.getStorageSync('city') == '' || uni
  931. .getStorageSync(
  932. 'city') == null) {
  933. // #ifdef APP-PLUS
  934. if (res.address) {
  935. that.city = res.address.city
  936. } else {
  937. that.getSelectCity(that.longitude, that.latitude);
  938. }
  939. // #endif
  940. // #ifndef APP
  941. that.getSelectCity(that.longitude, that.latitude);
  942. // #endif
  943. }
  944. },
  945. fail: function() {
  946. console.log('获取地址失败');
  947. // 获取位置失败时也要关闭加载并调用数据接口
  948. uni.hideLoading()
  949. // 即使没有位置信息,也要加载数据
  950. if (that.userType == 1) {
  951. that.getPostType()
  952. } else {
  953. that.getCompanyClassify()
  954. }
  955. }
  956. })
  957. },
  958. //获取公司列表
  959. getComanyList() {
  960. let data = {
  961. page: this.page,
  962. limit: this.limit,
  963. city: this.city == '全国' ? '' : this.city, //城市
  964. companyScope: this.industry,
  965. companyPeople: this.companyPeople
  966. }
  967. this.$Request.getT('/app/company/listCompany', data).then(res => {
  968. uni.hideLoading()
  969. uni.stopPullDownRefresh()
  970. if (res.code == 0) {
  971. this.totlo = res.data.pages
  972. if (this.page == 1) {
  973. this.companList = res.data.records
  974. } else {
  975. this.companList = [...this.companList, ...res.data.records]
  976. }
  977. // this.companList = res.data
  978. } else {
  979. uni.showToast({
  980. title: res.msg,
  981. icon: 'none'
  982. })
  983. }
  984. })
  985. },
  986. isSameName(className, name) {
  987. let str1 = className.trim();
  988. if (str2 == null)
  989. return false;
  990. let str2 = name.trim();
  991. if (str1.length !== str2.length) {
  992. return true;
  993. }
  994. return str1.toLowerCase() !== str2.toLowerCase();
  995. },
  996. //获取麦克风/摄像头权限
  997. async getAudioPermision() {
  998. let status = permision.isIOS ? await permision.judgeIosPermission("record") : await permision
  999. .requestAndroidPermission("android.permission.RECORD_AUDIO")
  1000. let status2 = permision.isIOS ? await permision.judgeIosPermission("camera") : await permision
  1001. .requestAndroidPermission("android.permission.CAMERA")
  1002. if (status === null || status === 1 || status == true) { //已经同意授权
  1003. console.log('获取到权限了')
  1004. } else { //未授权的
  1005. this.popupshowsq = true
  1006. }
  1007. },
  1008. goNave(url) {
  1009. if (url.indexOf('/pages/') !== -1 || url.indexOf('/my/') !== -1 || url.indexOf('/package/') !== -1) {
  1010. uni.navigateTo({
  1011. url
  1012. });
  1013. } else {
  1014. //#ifndef H5
  1015. uni.navigateTo({
  1016. url: '/pages/index/webView?url=' + url
  1017. });
  1018. //#endif
  1019. //#ifdef H5
  1020. window.location.href = url;
  1021. //#endif
  1022. }
  1023. },
  1024. //获取公告
  1025. getgonggaoList() {
  1026. if (!uni.getStorageSync('userType') || uni.getStorageSync('userType') == 1) {
  1027. this.$Request.get('/app/message/page/1/1/100').then(res => {
  1028. if (res.code == 0) {
  1029. let arr = []
  1030. res.data.list.map(item => {
  1031. if (item.type == 1) {
  1032. arr.push(item.title)
  1033. }
  1034. })
  1035. this.gongao = arr
  1036. } else {
  1037. this.gongao = []
  1038. }
  1039. })
  1040. } else if (uni.getStorageSync('userType') == 2) {
  1041. this.$Request.get('/app/message/page/1/1/100').then(res => {
  1042. if (res.code == 0) {
  1043. let arr = []
  1044. res.data.list.map(item => {
  1045. if (item.type == 2) {
  1046. arr.push(item.title)
  1047. }
  1048. })
  1049. this.gongao = arr
  1050. } else {
  1051. this.gongao = []
  1052. }
  1053. })
  1054. }
  1055. },
  1056. //获取金刚区
  1057. getgridList() {
  1058. if (uni.getStorageSync('userType') == 1) {
  1059. this.$Request.get('/app/banner/selectBannerList?classify=2').then(res => {
  1060. if (res.code == 0) {
  1061. this.gridlist = res.data
  1062. } else {
  1063. this.gridlist = []
  1064. }
  1065. })
  1066. } else {
  1067. this.$Request.get('/app/banner/selectBannerList?classify=4').then(res => {
  1068. if (res.code == 0) {
  1069. this.gridlist = res.data
  1070. } else {
  1071. this.gridlist = []
  1072. }
  1073. })
  1074. }
  1075. },
  1076. //获取bannerlist
  1077. getBannerList() {
  1078. if (!uni.getStorageSync('userType') || uni.getStorageSync('userType') == 1) {
  1079. this.$Request.get('/app/banner/selectBannerList?classify=1').then(res => {
  1080. if (res.code == 0) {
  1081. this.bannerListuser = res.data
  1082. this.bannerList = res.data
  1083. } else {
  1084. this.bannerListuser = [
  1085. 'https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fup.enterdesk.com%2Fphoto%2F2007-11-7%2F200711072147151187.jpg&refer=http%3A%2F%2Fup.enterdesk.com&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=auto?sec=1674883340&t=4b9cbb7796600699ac28f75cd138ba04'
  1086. ]
  1087. }
  1088. })
  1089. } else if (uni.getStorageSync('userType') == 2) {
  1090. this.$Request.get('/app/banner/selectBannerList?classify=3').then(res => {
  1091. if (res.code == 0) {
  1092. this.bannerList = res.data
  1093. } else {
  1094. this.bannerList = [
  1095. 'https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fup.enterdesk.com%2Fphoto%2F2007-11-7%2F200711072147151187.jpg&refer=http%3A%2F%2Fup.enterdesk.com&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=auto?sec=1674883340&t=4b9cbb7796600699ac28f75cd138ba04'
  1096. ]
  1097. }
  1098. })
  1099. }
  1100. },
  1101. goNavss(url) {
  1102. if (this.companyStatus) {
  1103. if (this.companyStatus == 1) {
  1104. uni.showToast({
  1105. title: '企业认证审核中,请审核通过后操作!',
  1106. icon: 'none'
  1107. })
  1108. return
  1109. }
  1110. if (this.companyStatus == 3) {
  1111. uni.showToast({
  1112. title: '企业认证审核未通过,请重新认证!',
  1113. icon: 'none'
  1114. })
  1115. return
  1116. }
  1117. uni.navigateTo({
  1118. url: url
  1119. })
  1120. } else {
  1121. uni.showModal({
  1122. title: '提示',
  1123. content: '还未完成企业认证,请完成企业认证后操作',
  1124. complete(ret) {
  1125. if (ret.confirm) {
  1126. }
  1127. }
  1128. })
  1129. }
  1130. },
  1131. //获取企业认证状态(1:审核中 2:通过 3:拒绝)
  1132. getCompanyStatus() {
  1133. this.$Request.get("/app/company/selectCompanyByUserId").then(res => {
  1134. if (res.code == 0 && res.data) {
  1135. this.companyStatus = res.data.status
  1136. this.companyId = res.data.companyId
  1137. this.companyName = res.data.companyAllName
  1138. uni.setStorageSync('companyStatus', this.companyStatus)
  1139. uni.setStorageSync('companyId', res.data.companyId)
  1140. this.companyId = this.companyId
  1141. if (this.companyStatus == 1) {
  1142. uni.showModal({
  1143. title: '提示',
  1144. content: '企业正在认证审核中。',
  1145. complete(ret) {
  1146. if (ret.confirm) {
  1147. uni.navigateTo({
  1148. url: "/my/renzheng/editCompany"
  1149. });
  1150. }
  1151. }
  1152. })
  1153. }
  1154. if (this.companyStatus == 3) {
  1155. uni.showModal({
  1156. title: '提示',
  1157. content: '企业认证被拒绝。请修改',
  1158. complete(ret) {
  1159. if (ret.confirm) {
  1160. uni.navigateTo({
  1161. url: "/package/jobIntention/underReview"
  1162. });
  1163. }
  1164. }
  1165. })
  1166. }
  1167. } else {
  1168. this.companyStatus = ''
  1169. }
  1170. })
  1171. },
  1172. // 开启订阅消息
  1173. openMsg() {
  1174. console.log('订阅消息')
  1175. var that = this
  1176. uni.getSetting({
  1177. withSubscriptions: true, //是否获取用户订阅消息的订阅状态,默认false不返回
  1178. success(ret) {
  1179. console.log(ret.subscriptionsSetting, '------------------')
  1180. // if (ret.subscriptionsSetting.itemSettings && Object.keys(ret.subscriptionsSetting.itemSettings).length == 2) {
  1181. if (ret.subscriptionsSetting.itemSettings) {
  1182. uni.setStorageSync('sendMsg', true)
  1183. uni.openSetting({ // 打开设置页
  1184. success(rea) {
  1185. console.log(rea.authSetting)
  1186. }
  1187. });
  1188. } else { // 用户没有点击“总是保持以上,不再询问”则每次都会调起订阅消息
  1189. console.log(99999)
  1190. uni.setStorageSync('sendMsg', false)
  1191. uni.showModal({
  1192. title: '提示',
  1193. content: '为了更好的体验,请绑定消息推送',
  1194. confirmText: '确定',
  1195. cancelText: '取消',
  1196. confirmColor: '#016BF6',
  1197. success: function(res) {
  1198. if (res.confirm) {
  1199. console.log(that.arr)
  1200. wx.requestSubscribeMessage({
  1201. tmplIds: that.arr,
  1202. success(re) {
  1203. console.log(JSON.stringify(re),
  1204. '++++++++++++++')
  1205. var datas = JSON.stringify(re);
  1206. if (datas.indexOf("accept") != -1) {
  1207. console.log(re)
  1208. uni.setStorageSync('sendMsg', true)
  1209. }
  1210. },
  1211. fail: (res) => {
  1212. console.log(res)
  1213. }
  1214. })
  1215. uni.setStorageSync('sendMsg', true)
  1216. console.log('确认')
  1217. that.showModal = false
  1218. } else if (res.cancel) {
  1219. console.log('取消')
  1220. uni.setStorageSync('sendMsg', false)
  1221. that.showModal = true
  1222. }
  1223. }
  1224. })
  1225. }
  1226. }
  1227. })
  1228. },
  1229. //回到顶部
  1230. gotoBack() {
  1231. uni.pageScrollTo({
  1232. scrollTop: 0,
  1233. duration: 300
  1234. })
  1235. },
  1236. /**
  1237. * 获取简历列表
  1238. */
  1239. getPeopList() {
  1240. let data = {
  1241. page: this.page,
  1242. limit: this.limit,
  1243. postType: '', //工作性质
  1244. expectedPosition: this.jobSxTypeList[this.currentJobSx].projectName, //岗位名称
  1245. screen: +this.currentJobSxs + 1, //1推荐 2最新
  1246. expectedCity: this.city == '全国' ? '' : this.city, //城市
  1247. salaryRange: this.salaryRange, //薪资范围
  1248. eduRange: this.education, //学历
  1249. expRange: this.experience, //经验
  1250. //industryName: this.industry, //行业
  1251. // companyPeople: this.companyPeople, //公司规模
  1252. lng: this.longitude,
  1253. lat: this.latitude,
  1254. //isRecommend:this.currentJobSxs==1?this.currentJobSxs:0,//推荐
  1255. companyId: uni.getStorageSync('companyId') ? uni.getStorageSync('companyId') : ''
  1256. }
  1257. this.$Request.postJson('/app/resumes/selectResumesList', data).then(res => {
  1258. // 1. 停止下拉刷新和隐藏loading(无论请求结果如何都执行)
  1259. uni.stopPullDownRefresh()
  1260. uni.hideLoading()
  1261. // 2. 第一层校验:确保res、res.data、res.data.records都存在且为数组
  1262. if (res.code == 0 && res.data && Array.isArray(res.data.records)) {
  1263. this.totalPage = res.data.totalPage
  1264. this.totlo = res.data.totalPage // 注意:变量名疑似笔误(totlo → totalPage?)
  1265. // 3. 处理列表:过滤null/undefined元素 + 安全访问skillTags
  1266. const list = res.data.records
  1267. .filter(item => item !== null && item !== undefined) // 过滤空元素
  1268. .map(item => {
  1269. // 安全赋值:item存在时才访问skillTags,否则赋值为空字符串
  1270. item.skills = item?.skillTags || '';
  1271. return item;
  1272. });
  1273. // 4. 分页赋值(避免空数组覆盖)
  1274. if (this.page == 1) {
  1275. this.datasList = list
  1276. } else {
  1277. this.datasList = [...this.datasList, ...list]
  1278. }
  1279. } else {
  1280. // 5. 异常情况:仅第一页清空列表,避免翻页时丢失数据
  1281. if (this.page === 1) {
  1282. this.datasList = []
  1283. }
  1284. // 可选:提示用户无数据
  1285. // uni.showToast({ title: '暂无数据', icon: 'none' })
  1286. }
  1287. }).catch(err => {
  1288. // 6. 捕获请求异常(如网络错误、接口500)
  1289. uni.stopPullDownRefresh()
  1290. uni.hideLoading()
  1291. uni.showToast({
  1292. title: '请求失败,请重试',
  1293. icon: 'none'
  1294. })
  1295. console.error('简历列表请求失败:', err)
  1296. })
  1297. },
  1298. /**
  1299. * 获取公司发布的岗位列表
  1300. */
  1301. getCompanyClassify() {
  1302. let data = {
  1303. companyId: uni.getStorageSync('companyId')
  1304. }
  1305. this.$Request.getT('/app/postPush/getCompanyClassify', data).then(res => {
  1306. if (res.code == 0) {
  1307. let arr = [
  1308. /* {
  1309. projectName: '',
  1310. name: '全部',
  1311. }, */
  1312. ]
  1313. console.log("布的岗位列表", res.data.length)
  1314. if (res.data.length == 0) {
  1315. // uni.navigateTo({
  1316. // url: '/pages/my/jobPosting?companyId=' + data.companyId + '&status=' + this
  1317. // .companyStatus + '&companyName=' + this.companyName
  1318. // })
  1319. uni.navigateTo({
  1320. url: '/pages/jobManagement/jobManagement'
  1321. })
  1322. }
  1323. res.data.map(item => {
  1324. let obj = {
  1325. id: item.postPushId,
  1326. projectName: item.ruleClassifyName,
  1327. name: item.ruleClassifyName,
  1328. }
  1329. arr.push(obj)
  1330. })
  1331. this.jobSxTypeList = arr
  1332. this.getPeopList()
  1333. }
  1334. })
  1335. },
  1336. /**
  1337. * 获取dom元素的宽度
  1338. */
  1339. getDomWidth() {
  1340. this.$nextTick(() => {
  1341. let that = this
  1342. let obj = uni.createSelectorQuery().select('#bottomView' + that
  1343. .currentJobSx) // xx为class或者id,如 .block, #block
  1344. obj.boundingClientRect(function(data) { // data - dom中的参数,宽高等
  1345. // console.log(data.width)
  1346. if (data && data.width) {
  1347. that.domeWidth = data.width * 2 * 0.8
  1348. } else {
  1349. that.domeWidth = 0
  1350. }
  1351. }).exec()
  1352. })
  1353. },
  1354. /**
  1355. * @param {Object} longitude
  1356. * @param {Object} latitude
  1357. * 使用经纬度获取城市
  1358. */
  1359. getSelectCity(longitude, latitude) {
  1360. this.$Request.get('/app/Login/selectCity?lat=' + latitude + '&lng=' + longitude).then(res => {
  1361. if (res.code == 0) {
  1362. // console.log(res, '获取地址信息')
  1363. this.city = res.data.city ? res.data.city : '区域'
  1364. uni.setStorageSync('city', res.data.city)
  1365. if (this.userType == 1) {
  1366. this.getUserList()
  1367. } else {
  1368. this.getPeopList()
  1369. }
  1370. }
  1371. });
  1372. },
  1373. /**
  1374. * 获取求职意向
  1375. */
  1376. getJobType() {
  1377. return
  1378. this.$Request.get('/app/intention/getIntentionList').then(res => {
  1379. if (res.code == 0 && res.data.records.length > 0) {
  1380. let arr = [{
  1381. projectName: '',
  1382. name: '全部',
  1383. }, ]
  1384. res.data.records.map(item => {
  1385. let obj = {
  1386. projectName: item.ruleClassifyName,
  1387. name: item.ruleClassifyName,
  1388. }
  1389. arr.push(obj)
  1390. })
  1391. this.jobTypeList = arr
  1392. }
  1393. })
  1394. },
  1395. /**
  1396. * 获取岗位列表
  1397. */
  1398. getUserList() {
  1399. let data = {
  1400. page: this.page,
  1401. limit: this.limit,
  1402. //postType: this.typeList.length > 0 ? this.typeList[this.current].id : '',
  1403. ruleClassifyName: this.typeList[this.current].name, //岗位名称
  1404. screen: +this.currentSx + 1, //1推荐 2最新
  1405. county: this.county, //区
  1406. city: this.city == '全国' ? '' : this.city, //城市
  1407. salaryRange: this.salaryRange, //薪资范围
  1408. education: this.education, //学历
  1409. experience: this.experience, //经验
  1410. industry: this.industry, //行业
  1411. preference: this.preference.join(','),
  1412. companyPeople: this.companyPeople, //公司规模
  1413. lng: this.longitude,
  1414. lat: this.latitude,
  1415. //userId: uni.getStorageSync('userId') ? uni.getStorageSync('userId') : ''
  1416. }
  1417. this.$Request.get('/app/postPush/userGetPostPushList', data).then(res => {
  1418. uni.stopPullDownRefresh()
  1419. uni.hideLoading()
  1420. if (res.code == 0) {
  1421. res.data.records.map(item => {
  1422. if (item.welfareTag) {
  1423. item.welfareTag = item.welfareTag.split(';')
  1424. } else {
  1425. item.welfareTag = []
  1426. }
  1427. if (item.distance) {
  1428. if (parseFloat(item.distance) > 1000) {
  1429. item.distance = (parseFloat(item.distance) / 1000).toFixed(2) + 'km'
  1430. } else {
  1431. item.distance = (parseFloat(item.distance)).toFixed(2) + 'm'
  1432. }
  1433. } else {
  1434. item.distance = ''
  1435. }
  1436. })
  1437. if (this.page == 1) {
  1438. // console.log(res.data.records, '岗位数据')
  1439. this.dataList = res.data.records
  1440. } else {
  1441. this.dataList = [...this.dataList, ...res.data.records]
  1442. }
  1443. this.totlo = res.data.pages
  1444. }
  1445. })
  1446. },
  1447. /**
  1448. * 工作性质
  1449. */
  1450. getPostType() {
  1451. var that = this
  1452. //行业期望
  1453. this.$Request.get('/app/intention/getIntentionList', {
  1454. }).then(res => {
  1455. if (res.code == 0) {
  1456. let arr = res.data
  1457. let classRule = [
  1458. /* {
  1459. id: '',
  1460. name: '',
  1461. label: '全部'
  1462. } */
  1463. ]
  1464. let industry = this.directionList
  1465. var industryArr = this.industry == '' ? [] : this.industry.split(',')
  1466. industryArr.forEach(function(item) {
  1467. if (that.$queue.array_column(that.directionList, 'name').indexOf(item) < 0)
  1468. industry.push({
  1469. id: item,
  1470. name: item
  1471. })
  1472. })
  1473. arr.forEach(function(item) {
  1474. var tmp = {}
  1475. tmp.id = item.ruleClassifyId
  1476. tmp.name = item.ruleClassifyName
  1477. tmp.label = item.ruleClassifyName
  1478. classRule.push(tmp)
  1479. var indus = item.industry ? item.industry.split('/') : []
  1480. indus.forEach(function(ind) {
  1481. var tm = {}
  1482. tm.name = ind
  1483. tm.id = ind
  1484. if (that.$queue.array_column(industry, 'name').indexOf(tm.name) <
  1485. 0)
  1486. industry.push(tm)
  1487. })
  1488. })
  1489. classRule.push({
  1490. id: '',
  1491. name: '',
  1492. label: ''
  1493. }) //模拟个空企业选项,为了兼容源码和设计图
  1494. this.typeList = classRule
  1495. this.directionList = industry
  1496. // console.log(this.typeList, '1111')
  1497. this.getUserList()
  1498. }
  1499. })
  1500. return;
  1501. this.$Request.get('/app/dict/list', {
  1502. type: '工作性质'
  1503. }).then(res => {
  1504. if (res.code == 0) {
  1505. let arr = res.data
  1506. arr = JSON.parse(JSON.stringify(arr).replace(/code/g, 'label'))
  1507. let obj = {
  1508. id: -1,
  1509. label: '企业',
  1510. name: '企业'
  1511. }
  1512. arr.push(obj)
  1513. this.typeList = arr
  1514. // console.log(this.typeList, '1111')
  1515. this.getUserList()
  1516. }
  1517. })
  1518. },
  1519. /**
  1520. * 获取个人信息
  1521. */
  1522. getUserInfo() {
  1523. this.$Request.get("/app/user/selectUserById").then(res => {
  1524. if (res.code == 0) {
  1525. console.log(res.data)
  1526. this.$queue.setData('weChatNum', res.data?.weChatNum)
  1527. if (res.data && res.data.companyId) {
  1528. uni.setStorageSync('companyId', res.data?.companyId)
  1529. }
  1530. if (res.data?.userType == 1 || res.data?.userType == null) {
  1531. this.userType = 1
  1532. uni.setStorageSync('userType', 1)
  1533. } else {
  1534. this.userType = 2
  1535. uni.setStorageSync('userType', 2)
  1536. }
  1537. }
  1538. })
  1539. },
  1540. gotoInfo(postPushId) {
  1541. if (uni.getStorageSync('token')) {
  1542. // #ifdef MP-WEIXIN
  1543. if (uni.getStorageSync('sendMsg')) {
  1544. // console.log('授权+1')
  1545. wx.requestSubscribeMessage({
  1546. tmplIds: this.arr,
  1547. success(re) {
  1548. // console.log(JSON.stringify(re), 111111111111)
  1549. var datas = JSON.stringify(re);
  1550. if (datas.indexOf("accept") != -1) {
  1551. // console.log(re)
  1552. }
  1553. },
  1554. fail: (res) => {
  1555. // console.log(res)
  1556. }
  1557. })
  1558. }
  1559. // #endif
  1560. // uni.navigateTo({
  1561. // url: '/pages/index/game/order?postPushId=' + postPushId
  1562. // })
  1563. }
  1564. // else {
  1565. // this.noLogin()
  1566. // }
  1567. uni.navigateTo({
  1568. url: '/pages/index/game/order?postPushId=' + postPushId
  1569. })
  1570. },
  1571. //不需要登录跳转
  1572. goNavs(url) {
  1573. // #ifdef MP-WEIXIN
  1574. if (uni.getStorageSync('sendMsg')) {
  1575. // console.log('授权+1')
  1576. wx.requestSubscribeMessage({
  1577. tmplIds: this.arr,
  1578. success(re) {
  1579. // console.log(JSON.stringify(re), 111111111111)
  1580. var datas = JSON.stringify(re);
  1581. if (datas.indexOf("accept") != -1) {
  1582. // console.log(re)
  1583. }
  1584. },
  1585. fail: (res) => {
  1586. // console.log(res)
  1587. }
  1588. })
  1589. }
  1590. // #endif
  1591. uni.navigateTo({
  1592. url: url
  1593. })
  1594. },
  1595. //跳转
  1596. goNav(url) {
  1597. if (uni.getStorageSync('token')) {
  1598. // #ifdef MP-WEIXIN
  1599. if (uni.getStorageSync('sendMsg')) {
  1600. // console.log('授权+1')
  1601. wx.requestSubscribeMessage({
  1602. tmplIds: this.arr,
  1603. success(re) {
  1604. // console.log(JSON.stringify(re), 111111111111)
  1605. var datas = JSON.stringify(re);
  1606. if (datas.indexOf("accept") != -1) {
  1607. // console.log(re)
  1608. }
  1609. },
  1610. fail: (res) => {
  1611. // console.log(res)
  1612. }
  1613. })
  1614. }
  1615. // #endif
  1616. uni.navigateTo({
  1617. url: url
  1618. })
  1619. } else {
  1620. this.noLogin()
  1621. }
  1622. },
  1623. //未登录
  1624. noLogin() {
  1625. uni.showModal({
  1626. title: '提示',
  1627. content: '您还未登录,请先登录',
  1628. confirmColor: '#016BF6',
  1629. success: function(res) {
  1630. if (res.confirm) {
  1631. // console.log('用户点击确定');
  1632. uni.navigateTo({
  1633. url: '/pages/public/login'
  1634. })
  1635. } else if (res.cancel) {
  1636. // console.log('用户点击取消');
  1637. }
  1638. }
  1639. })
  1640. },
  1641. //吸顶
  1642. isfixed(e) {
  1643. // console.log(e, '+++++++++++++')
  1644. this.isfixeds = true
  1645. },
  1646. //不吸顶
  1647. isunfixed() {
  1648. this.isfixeds = false
  1649. },
  1650. //添加方向标签
  1651. addDirection() {
  1652. uni.navigateTo({
  1653. url: '/package/jobIntention/tagManage'
  1654. })
  1655. },
  1656. //关闭VIP推荐
  1657. closeVipRecommend() {
  1658. // 这里可以添加关闭逻辑,比如隐藏卡片或记录用户选择
  1659. console.log('关闭VIP推荐')
  1660. // 可以通过v-if控制显示隐藏
  1661. },
  1662. selectIndustry(item) {
  1663. var industry = this.industry == '' ? [] : this.industry.split(',')
  1664. var res = industry.indexOf(item.id)
  1665. if (res >= 0) {
  1666. industry.splice(res, 1)
  1667. } else {
  1668. if (item.id == '不限')
  1669. industry = []
  1670. else
  1671. industry.push(item.id)
  1672. }
  1673. this.industry = industry.length > 0 ? industry.join(',') : ''
  1674. this.setIndustry()
  1675. this.page = 1
  1676. if (this.current == this.typeList.length - 1) { //公司
  1677. this.getComanyList()
  1678. } else {
  1679. this.getUserList()
  1680. }
  1681. },
  1682. setIndustry() {
  1683. if (uni.getStorageSync('filter') && (uni.getStorageSync('filter')).length > 0) {
  1684. let filter = uni.getStorageSync('filter')
  1685. console.log(filter)
  1686. let industry = this.industry == '' ? [] : this.industry.split(',')
  1687. filter.forEach(function(item) {
  1688. if (item.name == '行业') {
  1689. let list = []
  1690. industry.forEach(function(ite) {
  1691. var tmp = {}
  1692. tmp.value = ite
  1693. tmp.childrenList = []
  1694. tmp.isEnable = 1
  1695. tmp.select = true
  1696. list.push(tmp)
  1697. })
  1698. item.list = list
  1699. }
  1700. })
  1701. uni.setStorageSync("filter", filter);
  1702. }
  1703. },
  1704. goIndustry() {
  1705. uni.navigateTo({
  1706. url: '/package/screen/screen?industry=' + this.directionList.join('/')
  1707. })
  1708. },
  1709. goPreference() {
  1710. var jobId = this.typeList[this.current].id
  1711. var jobTitle = this.typeList[this.current].name
  1712. uni.navigateTo({
  1713. url: '/package/jobIntention/preferenceSetting?jobId=' + jobId + '&jobTitle=' + jobTitle +
  1714. '&selectedPreferences=' + encodeURIComponent(JSON.stringify(this.$queue.array_column(this
  1715. .directionList, 'name')))
  1716. })
  1717. },
  1718. selectPreference(item) {
  1719. var preference = this.preference
  1720. var res = preference.indexOf(item.id)
  1721. if (res >= 0) {
  1722. preference.splice(res, 1)
  1723. } else {
  1724. if (item.id == '不限')
  1725. preference = []
  1726. else
  1727. preference.push(item.id)
  1728. }
  1729. this.preference = preference
  1730. this.page = 1
  1731. if (this.current == this.typeList.length - 1) { //公司
  1732. this.getComanyList()
  1733. } else {
  1734. this.getUserList()
  1735. }
  1736. },
  1737. }
  1738. }
  1739. </script>
  1740. <style lang="scss">
  1741. page {
  1742. background: #F2F2F7;
  1743. }
  1744. .goback {
  1745. position: fixed;
  1746. top: 80%;
  1747. right: 30rpx;
  1748. }
  1749. .jobtitle {
  1750. position: relative;
  1751. .jobtitleBom {
  1752. position: absolute;
  1753. width: 30rpx;
  1754. left: 50%;
  1755. top: 80%;
  1756. transform: translate(-50%, 0);
  1757. }
  1758. }
  1759. .topbg-scroll {
  1760. width: 100%;
  1761. white-space: nowrap;
  1762. }
  1763. .activeQs {
  1764. color: #1A1A1A !important;
  1765. font-weight: 800;
  1766. }
  1767. .activeQ {
  1768. color: #1A1A1A !important;
  1769. font-size: 38rpx;
  1770. font-weight: 800;
  1771. }
  1772. .active {
  1773. font-size: 38rpx !important;
  1774. font-weight: 800 !important;
  1775. }
  1776. .active2 {
  1777. color: #1A1A1A !important;
  1778. font-size: 38rpx !important;
  1779. font-weight: 800 !important;
  1780. }
  1781. .active3 {
  1782. color: #1A1A1A !important;
  1783. font-size: 28rpx !important;
  1784. font-weight: 800 !important;
  1785. }
  1786. .topbg {
  1787. width: 100%;
  1788. // height: 100rpx;
  1789. background-color: #00DD9A;
  1790. // position: fixed;
  1791. // /* #ifdef MP-WEIXIN */
  1792. // top: 0;
  1793. // /* #endif */
  1794. // /* #ifdef H5 */
  1795. // top: 78rpx;
  1796. // /* #endif */
  1797. // /* #ifdef APP-PLUS */
  1798. // top: 0;
  1799. // /* #endif */
  1800. // z-index: 998;
  1801. }
  1802. .topbg-sticky {}
  1803. .top-bg {
  1804. // box-shadow: 0px 4px 62px 0px rgba(153, 171, 198, 0.18);
  1805. // background: linear-gradient(90deg, rgba(13, 39, 247, 1), rgba(19, 193, 234, 1) 100%);
  1806. // width: 100%;
  1807. // height: 300rpx;
  1808. // position: sticky;
  1809. // top: 0px;
  1810. // z-index: 999;
  1811. /* 波浪效果 */
  1812. // --c: rgba(255, 255, 255, 0.1);
  1813. // --w1: radial-gradient(100% 57% at top, #0000 100%, var(--c) 100.5%) no-repeat;
  1814. // --w2: radial-gradient(100% 57% at bottom, var(--c) 100%, #0000 100.5%) no-repeat;
  1815. // background: var(--w1), var(--w2), linear-gradient(90deg, rgba(13, 39, 247, 1), rgba(19, 193, 234, 1) 100%);
  1816. // background-position: 0% 100%, 100% 100%, 0 0;
  1817. // background-size: 50% 100%, 50% 100%, 100% 100%;
  1818. position: absolute;
  1819. top: 0;
  1820. z-index: 0;
  1821. width: 100%;
  1822. }
  1823. .topbg-sticky-box {
  1824. width: 100%;
  1825. padding: 0 40rpx;
  1826. position: relative;
  1827. z-index: 1;
  1828. }
  1829. .topbg-sticky-title {
  1830. width: 100%;
  1831. margin-bottom: 20rpx;
  1832. }
  1833. .topbg-sticky-title-left {
  1834. color: rgba(255, 255, 255, 1);
  1835. font-family: DM Sans;
  1836. font-size: 32rpx;
  1837. font-weight: 700;
  1838. line-height: 36rpx;
  1839. letter-spacing: 0%;
  1840. text-align: left;
  1841. }
  1842. .xing-icon {
  1843. width: 42rpx;
  1844. height: 42rpx;
  1845. margin-right: 12rpx;
  1846. }
  1847. .topbg-sticky-title-right {
  1848. color: #ffffff;
  1849. }
  1850. .topbg-sticky-subtitle {
  1851. color: rgba(255, 255, 255, 1);
  1852. font-family: DM Sans;
  1853. font-size: 30rpx;
  1854. font-weight: 700;
  1855. line-height: 36rpx;
  1856. letter-spacing: 0%;
  1857. text-align: left;
  1858. }
  1859. .topbg-type {
  1860. width: 710rpx;
  1861. border-radius: 6px;
  1862. box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.05);
  1863. background: rgba(255, 255, 255, 1);
  1864. // background: transparent;
  1865. padding: 18rpx;
  1866. margin: 24rpx auto 12rpx auto;
  1867. position: relative;
  1868. z-index: 1;
  1869. .topbg-type-box {
  1870. width: 100%;
  1871. margin: 0 20rpx;
  1872. }
  1873. .topbg-type-box-row {
  1874. margin-bottom: 20rpx;
  1875. }
  1876. .topbg-type-box-l {
  1877. flex: 1;
  1878. white-space: nowrap;
  1879. overflow-x: auto;
  1880. }
  1881. .topbg-type-box-l-i {
  1882. color: rgba(153, 153, 153, 1);
  1883. font-family: DM Sans;
  1884. font-size: 28rpx;
  1885. font-weight: 400;
  1886. line-height: 28rpx;
  1887. letter-spacing: 0%;
  1888. text-align: left;
  1889. margin-right: 14rpx;
  1890. &.active {
  1891. background: linear-gradient(90deg, rgba(13, 39, 247, 1), rgba(19, 193, 234, 1) 100%);
  1892. -webkit-background-clip: text;
  1893. -webkit-text-fill-color: transparent;
  1894. background-clip: text;
  1895. text-fill-color: transparent;
  1896. font-family: DM Sans;
  1897. font-size: 24rpx;
  1898. font-weight: 700;
  1899. line-height: 48rpx;
  1900. letter-spacing: 0%;
  1901. text-align: left;
  1902. }
  1903. }
  1904. .topbg-type-box-r {
  1905. color: #ffffff;
  1906. }
  1907. .attachment-icon {
  1908. width: 38rpx;
  1909. height: 38rpx;
  1910. }
  1911. }
  1912. .direction-tip {
  1913. margin-top: 20rpx;
  1914. .direction-tip-title {
  1915. color: rgba(51, 51, 51, 1);
  1916. font-family: DM Sans;
  1917. font-size: 26rpx;
  1918. font-weight: 400;
  1919. line-height: 26rpx;
  1920. letter-spacing: 0%;
  1921. text-align: left;
  1922. margin-bottom: 8rpx;
  1923. }
  1924. .direction-tip-subtitle {
  1925. margin-top: 16rpx;
  1926. color: rgba(153, 153, 153, 1);
  1927. font-family: DM Sans;
  1928. font-size: 24rpx;
  1929. font-weight: 400;
  1930. line-height: 24rpx;
  1931. letter-spacing: 0%;
  1932. text-align: left;
  1933. }
  1934. .direction-tags {
  1935. margin-top: 16rpx;
  1936. .direction-tag {
  1937. color: rgba(153, 153, 153, 1);
  1938. font-family: DM Sans;
  1939. font-size: 20rpx;
  1940. font-weight: 400;
  1941. line-height: 36rpx;
  1942. letter-spacing: 0%;
  1943. text-align: center;
  1944. margin-right: 18rpx;
  1945. margin-bottom: 18rpx;
  1946. border-radius: 6px;
  1947. background: rgba(198, 198, 198, 0.1);
  1948. padding: 8rpx 12rpx;
  1949. display: inline-block;
  1950. min-width: 60rpx;
  1951. white-space: nowrap;
  1952. cursor: pointer;
  1953. transition: all 0.3s ease;
  1954. &.active {
  1955. font-family: DM Sans;
  1956. font-size: 20rpx !important;
  1957. font-weight: 400 !important;
  1958. line-height: 36rpx;
  1959. letter-spacing: 0%;
  1960. text-align: left;
  1961. padding: 8rpx 12rpx !important;
  1962. color: rgba(1, 107, 246, 1) !important;
  1963. background: #D6E7FD !important;
  1964. border: 1px solid rgba(1, 107, 246, 1);
  1965. }
  1966. }
  1967. .direction-tag-add {
  1968. color: rgba(153, 153, 153, 1);
  1969. font-family: DM Sans;
  1970. font-size: 20rpx;
  1971. font-weight: 400;
  1972. line-height: 36rpx;
  1973. letter-spacing: 0%;
  1974. text-align: center;
  1975. margin-right: 20rpx;
  1976. border-radius: 6px;
  1977. background: rgba(198, 198, 198, 0.1);
  1978. padding: 8rpx 12rpx;
  1979. display: inline-block;
  1980. min-width: 60rpx;
  1981. white-space: nowrap;
  1982. cursor: pointer;
  1983. transition: all 0.3s ease;
  1984. &:hover {
  1985. background: rgba(198, 198, 198, 0.2);
  1986. }
  1987. }
  1988. .direction-tag-plus {
  1989. margin-bottom: 18rpx;
  1990. width: 40rpx;
  1991. height: 36rpx;
  1992. padding: 8rpx;
  1993. border-radius: 6px;
  1994. background: rgba(198, 198, 198, 0.1);
  1995. display: inline-flex;
  1996. align-items: center;
  1997. justify-content: center;
  1998. transition: all 0.3s ease;
  1999. &:hover {
  2000. background: rgba(198, 198, 198, 0.2);
  2001. }
  2002. }
  2003. }
  2004. }
  2005. .companyListBox {
  2006. width: 100%;
  2007. background-color: #F2F2F7;
  2008. // margin-top: 30rpx;
  2009. }
  2010. .topbg-yx {
  2011. width: 100%;
  2012. // height: 366rpx;
  2013. background: #F2F2F7;
  2014. border-radius: 40rpx 40rpx 0 0;
  2015. margin-top: 20rpx;
  2016. align-content: flex-start;
  2017. .topbg-yx-box {
  2018. width: 686rpx;
  2019. height: 40rpx;
  2020. margin-top: 35rpx;
  2021. }
  2022. .topbg-yx-box-l {
  2023. width: 62%;
  2024. .topbg-yx-box-l-i {
  2025. display: inline-block;
  2026. margin-right: 50rpx;
  2027. color: #999999;
  2028. font-size: 32rpx;
  2029. font-weight: 500;
  2030. .topbg-yx-box-l-i-c {
  2031. z-index: 1 !important;
  2032. // position: relative;
  2033. .topbg-yx-box-l-i-text {
  2034. z-index: 3 !important;
  2035. }
  2036. }
  2037. .topbg-yx-box-l-i-line {
  2038. margin-top: -10rpx;
  2039. width: 100%;
  2040. height: 10rpx;
  2041. background: linear-gradient(90deg, #08F3CE 0%, #05F3A7 100%);
  2042. border-radius: 7rpx;
  2043. z-index: 2 !important;
  2044. }
  2045. }
  2046. }
  2047. .topbg-yx-box-r {
  2048. text {
  2049. color: #016BF6;
  2050. font-size: 28rpx;
  2051. font-weight: 500;
  2052. margin-right: 20rpx;
  2053. }
  2054. }
  2055. }
  2056. .topbg-sx-box {
  2057. width: 100%;
  2058. margin-top: 0rpx;
  2059. .topbg-sx-box-l-i {
  2060. color: rgba(153, 153, 153, 1);
  2061. font-family: DM Sans;
  2062. font-size: 24rpx;
  2063. font-weight: 400;
  2064. line-height: 36rpx;
  2065. letter-spacing: 0%;
  2066. text-align: center;
  2067. margin-right: 20rpx;
  2068. border-radius: 6px;
  2069. background: rgba(198, 198, 198, 0.1);
  2070. padding: 8rpx 12rpx;
  2071. display: inline-block;
  2072. min-width: 60rpx;
  2073. white-space: nowrap;
  2074. &.active3 {
  2075. font-family: DM Sans;
  2076. font-size: 24rpx !important;
  2077. font-weight: 400 !important;
  2078. line-height: 36rpx;
  2079. letter-spacing: 0%;
  2080. text-align: left;
  2081. padding: 8rpx 12rpx !important;
  2082. color: rgba(1, 107, 246, 1) !important;
  2083. background: #D6E7FD !important;
  2084. border: 1px solid rgba(1, 107, 246, 1);
  2085. }
  2086. }
  2087. .topbg-sx-box-r-i {
  2088. color: rgba(1, 107, 246, 1);
  2089. font-family: DM Sans;
  2090. font-size: 24rpx;
  2091. font-weight: 400;
  2092. line-height: 36rpx;
  2093. letter-spacing: 0%;
  2094. text-align: center;
  2095. margin-right: 20rpx;
  2096. border-radius: 6px;
  2097. background: #D6E7FD;
  2098. padding: 8rpx 12rpx;
  2099. // display: inline-block;
  2100. min-width: 60rpx;
  2101. white-space: nowrap;
  2102. cursor: pointer;
  2103. transition: all 0.3s ease;
  2104. border: 0.5px solid rgba(1, 107, 246, 1);
  2105. }
  2106. .topbg-sx-box-filter {
  2107. color: rgba(153, 153, 153, 1);
  2108. font-family: DM Sans;
  2109. font-size: 24rpx;
  2110. font-weight: 400;
  2111. line-height: 36rpx;
  2112. letter-spacing: 0%;
  2113. text-align: center;
  2114. border-radius: 6px;
  2115. background: rgba(198, 198, 198, 0.1);
  2116. padding: 8rpx 12rpx;
  2117. // display: inline-block;
  2118. min-width: 60rpx;
  2119. white-space: nowrap;
  2120. cursor: pointer;
  2121. transition: all 0.3s ease;
  2122. }
  2123. }
  2124. .title-left {
  2125. display: flex;
  2126. align-items: center;
  2127. gap: 8rpx;
  2128. }
  2129. .job-title-text {
  2130. color: rgba(23, 23, 37, 1);
  2131. font-family: DM Sans;
  2132. font-size: 38rpx;
  2133. font-weight: 700;
  2134. line-height: 48rpx;
  2135. letter-spacing: 0.5%;
  2136. text-align: left;
  2137. }
  2138. .salary-text-box {
  2139. border-radius: 24rpx;
  2140. background: #FEE2E3;
  2141. display: flex;
  2142. justify-content: flex-start;
  2143. align-items: center;
  2144. padding: 6rpx 24rpx;
  2145. .jipin-icon {
  2146. width: 20rpx;
  2147. height: 20rpx;
  2148. margin-right: 4rpx;
  2149. }
  2150. .jipin-text {
  2151. color: rgba(237, 66, 69, 1);
  2152. font-family: DM Sans;
  2153. font-size: 18rpx;
  2154. font-weight: 400;
  2155. line-height: 30rpx;
  2156. letter-spacing: 0.5%;
  2157. text-align: left;
  2158. }
  2159. }
  2160. .salary-text {
  2161. color: rgba(27, 229, 223, 1);
  2162. font-family: DM Sans;
  2163. font-size: 28rpx;
  2164. font-weight: 700;
  2165. line-height: 40rpx;
  2166. letter-spacing: 0.5%;
  2167. text-align: right;
  2168. }
  2169. .company-name,
  2170. .company-people {
  2171. color: rgba(156, 164, 171, 1);
  2172. font-family: DM Sans;
  2173. font-size: 24rpx;
  2174. font-weight: 400;
  2175. line-height: 40rpx;
  2176. letter-spacing: 0.5%;
  2177. text-align: left;
  2178. }
  2179. .job-tag {
  2180. height: 42rpx;
  2181. display: flex;
  2182. flex-direction: row;
  2183. justify-content: center;
  2184. align-items: center;
  2185. padding: 8rpx;
  2186. border-radius: 8rpx;
  2187. background: rgba(198, 198, 198, 0.1);
  2188. margin-right: 16rpx;
  2189. margin-bottom: 16rpx;
  2190. color: rgba(153, 153, 153, 1);
  2191. font-size: 26rpx;
  2192. }
  2193. .company-info-text,
  2194. .location-text {
  2195. color: rgba(156, 164, 171, 1);
  2196. font-family: DM Sans;
  2197. font-size: 20rpx;
  2198. font-weight: 400;
  2199. line-height: 40rpx;
  2200. letter-spacing: 0.5%;
  2201. text-align: left;
  2202. }
  2203. .reply-time {
  2204. display: flex;
  2205. flex-direction: row;
  2206. justify-content: center;
  2207. align-items: center;
  2208. padding: 8rpx;
  2209. font-family: DM Sans;
  2210. font-size: 20rpx;
  2211. font-weight: 400;
  2212. line-height: 40rpx;
  2213. letter-spacing: 0.5%;
  2214. text-align: left;
  2215. border-radius: 12rpx;
  2216. background: #ECE1FD;
  2217. color: #8858C5;
  2218. }
  2219. .gwList {
  2220. width: 100%;
  2221. // margin-top: 220rpx;
  2222. .gwList-box {
  2223. width: 710rpx;
  2224. height: 100%;
  2225. .gwList-box-item {
  2226. width: 100%;
  2227. // height: 329rpx;
  2228. background-color: #ffffff;
  2229. border-radius: 12rpx;
  2230. margin-bottom: 20rpx;
  2231. padding-bottom: 20rpx;
  2232. }
  2233. .gwList-box-item-box {
  2234. width: 623rpx;
  2235. height: 100%;
  2236. .gwList-box-item-box-title {
  2237. margin-top: 28rpx;
  2238. }
  2239. .gwList-box-item-box-label {
  2240. margin-top: 14rpx;
  2241. }
  2242. .gwList-box-item-box-name {
  2243. margin-top: 14rpx;
  2244. color: #999999;
  2245. font-size: 28rpx;
  2246. font-weight: 500;
  2247. }
  2248. .gwList-box-item-box-line {
  2249. width: 100%;
  2250. border: 1rpx solid #E6E6E6;
  2251. margin-top: 30rpx;
  2252. margin-bottom: 20rpx;
  2253. }
  2254. .gwList-box-item-box-info {
  2255. font-size: 26rpx;
  2256. .gwList-box-item-box-info-l {
  2257. color: #1A1A1A;
  2258. display: flex;
  2259. align-items: center;
  2260. gap: 12rpx;
  2261. .people {
  2262. max-width: 110rpx;
  2263. overflow: hidden; //超出的文本隐藏
  2264. text-overflow: ellipsis; //溢出用省略号显示
  2265. white-space: nowrap; // 默认不换行;
  2266. }
  2267. }
  2268. .gwList-box-item-box-info-r {
  2269. color: #999999;
  2270. max-width: 50%;
  2271. overflow: hidden; //超出的文本隐藏
  2272. text-overflow: ellipsis; //溢出用省略号显示
  2273. white-space: nowrap; // 默认不换行;
  2274. }
  2275. }
  2276. }
  2277. }
  2278. }
  2279. .banner {
  2280. width: 100%;
  2281. height: 250rpx;
  2282. // margin-top: 20rpx;
  2283. .banner-box {
  2284. width: 686rpx;
  2285. height: 100%;
  2286. border-radius: 24rpx;
  2287. }
  2288. }
  2289. .isfixed {
  2290. border-radius: 0 !important;
  2291. }
  2292. .isfixeds {
  2293. // border-radius: 40rpx 40rpx 0 0;
  2294. }
  2295. .qySx {
  2296. // position: fixed;
  2297. // top: 0;
  2298. // z-index: 999;
  2299. // width: 100%;
  2300. // background: linear-gradient(180.00deg, rgba(255, 102, 0, 1), rgba(255, 89, 89, 1) 83%);
  2301. // padding-bottom: 40rpx;
  2302. // padding: 20rpx;
  2303. margin-bottom: 12rpx;
  2304. .qySx-bg {
  2305. position: absolute;
  2306. top: 0;
  2307. z-index: 0;
  2308. width: 100%;
  2309. }
  2310. .qySx-box {
  2311. width: 100%;
  2312. height: 100%;
  2313. border-radius: 12rpx;
  2314. box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.05);
  2315. background: rgba(255, 255, 255, 1);
  2316. padding: 28rpx;
  2317. position: relative;
  2318. z-index: 1;
  2319. margin: 52rpx 20rpx 0;
  2320. .qySx-box-row {
  2321. margin-bottom: 20rpx;
  2322. }
  2323. .qySx-box-l {
  2324. flex: 1;
  2325. white-space: nowrap;
  2326. overflow-x: auto;
  2327. }
  2328. .qySx-box-l-i {
  2329. color: rgba(153, 153, 153, 1);
  2330. font-family: DM Sans;
  2331. font-size: 28rpx;
  2332. font-weight: 400;
  2333. line-height: 36rpx;
  2334. letter-spacing: 0%;
  2335. text-align: left;
  2336. margin-right: 14rpx;
  2337. &.active {
  2338. background: linear-gradient(90deg, rgba(13, 39, 247, 1), rgba(19, 193, 234, 1) 100%);
  2339. -webkit-background-clip: text;
  2340. -webkit-text-fill-color: transparent;
  2341. background-clip: text;
  2342. text-fill-color: transparent;
  2343. font-family: DM Sans;
  2344. font-size: 24rpx;
  2345. font-weight: 700;
  2346. line-height: 48rpx;
  2347. letter-spacing: 0%;
  2348. text-align: left;
  2349. }
  2350. }
  2351. .qySx-box-r {
  2352. color: #ffffff;
  2353. .attachment-icon {
  2354. width: 38rpx;
  2355. height: 38rpx;
  2356. }
  2357. }
  2358. }
  2359. .qySx-sx-box {
  2360. width: 100%;
  2361. margin-top: 0rpx;
  2362. .qySx-sx-box-l-i {
  2363. color: rgba(153, 153, 153, 1);
  2364. font-family: DM Sans;
  2365. font-size: 24rpx;
  2366. font-weight: 400;
  2367. line-height: 36rpx;
  2368. letter-spacing: 0%;
  2369. text-align: center;
  2370. margin-right: 20rpx;
  2371. border-radius: 6px;
  2372. background: rgba(198, 198, 198, 0.1);
  2373. padding: 8rpx 12rpx;
  2374. display: inline-block;
  2375. min-width: 60rpx;
  2376. white-space: nowrap;
  2377. &.active3 {
  2378. font-family: DM Sans;
  2379. font-size: 24rpx !important;
  2380. font-weight: 400 !important;
  2381. line-height: 36rpx;
  2382. letter-spacing: 0%;
  2383. text-align: left;
  2384. padding: 8rpx 12rpx !important;
  2385. color: rgba(1, 107, 246, 1) !important;
  2386. // background: #D6E7FD !important;
  2387. background: rgba(252, 233, 220, 1);
  2388. border: 1px solid rgba(1, 107, 246, 1);
  2389. }
  2390. }
  2391. .qySx-sx-box-r-i {
  2392. color: rgba(1, 107, 246, 1);
  2393. font-family: DM Sans;
  2394. font-size: 24rpx;
  2395. font-weight: 400;
  2396. line-height: 36rpx;
  2397. letter-spacing: 0%;
  2398. text-align: center;
  2399. margin-right: 20rpx;
  2400. border-radius: 6px;
  2401. // background: #D6E7FD;
  2402. background: rgba(252, 233, 220, 1);
  2403. padding: 8rpx 12rpx;
  2404. display: inline-block;
  2405. min-width: 60rpx;
  2406. white-space: nowrap;
  2407. cursor: pointer;
  2408. transition: all 0.3s ease;
  2409. border: 0.5px solid rgba(1, 107, 246, 1);
  2410. }
  2411. .qySx-sx-box-filter {
  2412. color: rgba(153, 153, 153, 1);
  2413. font-family: DM Sans;
  2414. font-size: 24rpx;
  2415. font-weight: 400;
  2416. line-height: 36rpx;
  2417. letter-spacing: 0%;
  2418. text-align: center;
  2419. border-radius: 6px;
  2420. background: rgba(198, 198, 198, 0.1);
  2421. padding: 8rpx 12rpx;
  2422. display: inline-block;
  2423. min-width: 60rpx;
  2424. white-space: nowrap;
  2425. cursor: pointer;
  2426. transition: all 0.3s ease;
  2427. }
  2428. }
  2429. }
  2430. .vipRecommend {
  2431. width: 100%;
  2432. // margin-top: 280rpx;
  2433. padding: 0 20rpx;
  2434. box-sizing: border-box;
  2435. .vipRecommend-box {
  2436. width: 100%;
  2437. background: #ffffff;
  2438. border-radius: 12rpx;
  2439. box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.05);
  2440. padding: 28rpx;
  2441. position: relative;
  2442. .vipRecommend-close {
  2443. position: absolute;
  2444. top: 24rpx;
  2445. right: 24rpx;
  2446. width: 48rpx;
  2447. height: 48rpx;
  2448. display: flex;
  2449. align-items: center;
  2450. justify-content: center;
  2451. border-radius: 50%;
  2452. .close-icon {
  2453. width: 48rpx;
  2454. height: 48rpx;
  2455. }
  2456. }
  2457. .vipRecommend-content {
  2458. padding-right: 60rpx;
  2459. .vipRecommend-title {
  2460. margin-bottom: 16rpx;
  2461. .job-title {
  2462. color: rgba(23, 23, 37, 1);
  2463. font-family: DM Sans;
  2464. font-size: 28rpx;
  2465. font-weight: 700;
  2466. line-height: 48rpx;
  2467. text-align: left;
  2468. margin-right: 8rpx;
  2469. }
  2470. .job-status {
  2471. color: rgba(156, 164, 171, 1);
  2472. font-family: DM Sans;
  2473. font-size: 24rpx;
  2474. font-weight: 400;
  2475. line-height: 40rpx;
  2476. letter-spacing: 0.5%;
  2477. text-align: left;
  2478. }
  2479. }
  2480. .vipRecommend-message {
  2481. color: rgba(102, 102, 102, 1);
  2482. font-family: DM Sans;
  2483. font-size: 24rpx;
  2484. font-weight: 400;
  2485. line-height: 32rpx;
  2486. letter-spacing: 0.5%;
  2487. text-align: left;
  2488. margin-bottom: 16rpx;
  2489. }
  2490. .vipRecommend-hint {
  2491. color: rgba(102, 102, 102, 1);
  2492. font-family: DM Sans;
  2493. font-size: 18rpx;
  2494. font-weight: 400;
  2495. line-height: 20rpx;
  2496. letter-spacing: 0.5%;
  2497. text-align: left;
  2498. }
  2499. }
  2500. }
  2501. }
  2502. .qyList {
  2503. width: 100%;
  2504. height: auto;
  2505. /* 技能标签区域 */
  2506. .resume-skills {
  2507. margin: 20rpx 0; // 与上下模块的间距
  2508. .skills-label {
  2509. font-size: 24rpx;
  2510. color: #212121;
  2511. font-weight: 500;
  2512. display: block;
  2513. margin-bottom: 12rpx;
  2514. }
  2515. .skills-tags {
  2516. gap: 16rpx; // 标签间距
  2517. .tag-item {
  2518. background: #F6F6F6;
  2519. color: #666666;
  2520. font-size: 22rpx;
  2521. padding: 8rpx 20rpx;
  2522. border-radius: 8rpx;
  2523. line-height: 32rpx;
  2524. }
  2525. }
  2526. }
  2527. .qyList-box {
  2528. width: 716rpx;
  2529. height: 100%;
  2530. .qyList-box-item {
  2531. width: 100%;
  2532. // height: 400rpx;
  2533. padding-bottom: 40rpx;
  2534. background-color: #ffffff;
  2535. border-radius: 24rpx;
  2536. margin-bottom: 20rpx;
  2537. .qyList-box-item-box {
  2538. width: 626rpx;
  2539. height: 100%;
  2540. }
  2541. .qyList-box-item-info {
  2542. margin-top: 40rpx;
  2543. }
  2544. .qyList-box-item-job {
  2545. width: 100%;
  2546. color: #121212;
  2547. font-size: 28rpx;
  2548. font-weight: 500;
  2549. margin-top: 20rpx;
  2550. }
  2551. .qyList-box-item-rem {
  2552. color: #999999;
  2553. font-size: 26rpx;
  2554. margin-top: 20rpx;
  2555. }
  2556. }
  2557. }
  2558. }
  2559. .announcement {
  2560. // background: #ffffff;
  2561. padding: 0px 0px 10px 10px;
  2562. margin-top: 20rpx;
  2563. }
  2564. .announcementbox {
  2565. width: 712upx;
  2566. height: 64upx;
  2567. background: #e5fff2;
  2568. border-radius: 32upx;
  2569. display: flex;
  2570. align-items: center;
  2571. padding: 0px 24upx;
  2572. }
  2573. .anount {
  2574. color: #00DD9A;
  2575. font-weight: bold;
  2576. }
  2577. .anounts {
  2578. width: 80%;
  2579. height: 64rpx;
  2580. color: #333333;
  2581. font-size: 24upx;
  2582. }
  2583. .activeColor {
  2584. color: #016bf6 !important;
  2585. border: 1rpx solid #016bf6;
  2586. background: #D6E7FD !important;
  2587. }
  2588. </style>