index.vue 71 KB

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