enterpriseInfo.vue 25 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111
  1. <template>
  2. <view class="content" :style="{ paddingTop: (12 + statusBarHeight + 88 - 60) + 'px' }">
  3. <!-- 固定顶部导航 -->
  4. <view class="fixed-nav" :style="{ paddingTop: (12 + statusBarHeight) + 'px' }">
  5. <view class="nav-bar">
  6. <view class="nav-left" @click="goBack">
  7. <u-icon name="arrow-leftward" color="rgba(51, 51, 51, 1)" style="font-size: 38rpx;"></u-icon>
  8. </view>
  9. <view class="nav-title">公司介绍</view>
  10. <view class="nav-right">
  11. <view class="nav-icons">
  12. <view v-if="false" class="nav-icon" @click="setCollection">
  13. <image v-if="isCollection == 0" src="/static/images/index/guanzhu.svg" class="icon-img">
  14. </image>
  15. <image v-else src="/static/images/index/gzActive.svg" class="icon-img"></image>
  16. </view>
  17. <view class="nav-icon" @click="showShare">
  18. <image src="/static/images/index/fenxiang.svg" class="icon-img"></image>
  19. </view>
  20. </view>
  21. </view>
  22. </view>
  23. </view>
  24. <!-- 企业信息 -->
  25. <view class="info flex justify-center">
  26. <view class="info-box flex align-center justify-between">
  27. <view class="info-box-r">
  28. <view class="info-box-r-title" v-show="info.companyName">
  29. {{ info.companyName }}
  30. </view>
  31. <view class="info-box-r-label flex align-center flex-wrap">
  32. <view class="info-box-r-label-item" v-if="info.companyPeople">
  33. {{ info.companyPeople }}
  34. </view>
  35. <!-- <view class="info-box-r-label-item" v-show="info.companyScope">
  36. {{ info.companyScope }}
  37. </view> -->
  38. </view>
  39. <view class="info-box-r-label-item" v-show="info.companyAllName">
  40. {{ info.companyAllName ? info.companyAllName : '--' }}
  41. </view>
  42. </view>
  43. <image :src="info.companyLogo ? info.companyLogo : '../../static/logo.png'"
  44. style="width: 120rpx;height: 120rpx;border-radius: 50%;" mode="">
  45. </image>
  46. </view>
  47. </view>
  48. <!-- 急聘标签 -->
  49. <!-- 公司地址 -->
  50. <view class="address flex justify-center">
  51. <view class="address-box flex justify-center">
  52. <view class="address-box-c">
  53. <!-- 工作时间 -->
  54. <view class="working-hours flex align-center">
  55. <u-icon name="clock" color="rgba(51, 51, 51, 1)" size="38"
  56. style="margin-right: 12rpx;"></u-icon>
  57. <text>{{ info.workTime }}</text>
  58. </view>
  59. <!-- 福利标签 -->
  60. <view class="benefits-section">
  61. <view class="benefits-tags flex align-center flex-wrap">
  62. <view class="benefit-tag" v-for="item in info.welfareArr">
  63. <image src="/static/images/index/huizhang.svg" class="tag-icon"></image>
  64. <text>{{ item }}</text>
  65. </view>
  66. </view>
  67. </view>
  68. <!-- 地址信息 -->
  69. <view @click="openMap()" class="address-box-c-add flex justify-between align-center">
  70. <view class="address-box-c-add-l flex align-center">
  71. <u-icon name="map" style="margin-right: 12rpx;" color="rgba(51, 51, 51, 1)"
  72. size="24"></u-icon>
  73. <!-- <text v-if="info.companyAddress">{{ info.province ? info.province : '' }}{{ info.city ? info.city : ''
  74. }}{{
  75. info.district ? info.district : '' }}{{ info.companyAddress ? info.companyAddress : ''
  76. }}</text> -->
  77. <text v-if="info.companyAddress">{{ info.companyAddress }}</text>
  78. <text v-else>暂无地址信息</text>
  79. </view>
  80. <!--
  81. <view class="address-box-c-add-r">
  82. <u-icon name="arrow-right" color="rgba(51, 51, 51, 1)" size="24"></u-icon>
  83. </view>
  84. -->
  85. </view>
  86. </view>
  87. </view>
  88. </view>
  89. <!-- 企业介绍 -->
  90. <view class="remarks flex justify-center">
  91. <view class="remarks-box">
  92. <view class="remarks-box-title">
  93. 公司介绍
  94. </view>
  95. <view class="remarks-box-con">
  96. <u-read-more show-height="100" :shadow-style="shadowStyle" color="#FD6416" text-indent="0"
  97. closeText="展开">
  98. <!-- <rich-text :nodes="info.companyDetails"
  99. style="color: #ffffff;font-size: 28rpx;font-weight: 500;">
  100. </rich-text> -->
  101. <view class="remarks-box-con-item">
  102. {{ info.companyContent }}
  103. </view>
  104. </u-read-more>
  105. </view>
  106. </view>
  107. </view>
  108. <!-- 主营业务 -->
  109. <view class="business-section flex justify-center">
  110. <view class="business-box">
  111. <view class="business-title">主营业务</view>
  112. <!-- <view class="business-tags flex flex-wrap" v-if="businessList&&businessList.length>0">
  113. <view class="business-tag" v-for="(business, index) in businessList" :key="index">
  114. {{ business }}
  115. </view>
  116. </view> -->
  117. <view class="remarks-box-con-item" v-if="info.companyScope">
  118. {{ info.companyScope }}
  119. </view>
  120. <view class="hr-desc" v-else>
  121. 暂无业务信息
  122. </view>
  123. </view>
  124. </view>
  125. <!-- hr介绍 -->
  126. <view class="hr-section flex justify-center">
  127. <view class="hr-box">
  128. <view class="hr-header flex justify-between align-center">
  129. <view class="hr-title">HR介绍</view>
  130. <view class="view-all-jobs" @click="goToMoreJobs">
  131. <text>查看所有职位</text>
  132. </view>
  133. </view>
  134. <view class="hr-list flex justify-between" v-if="info.hr && info.hr.length > 0">
  135. <view class="hr-item" v-for="(hr, index) in info.hr" :key="index">
  136. <view class="hr-content flex align-center">
  137. <!-- <view class="hr-avatar-container">
  138. <view class="hr-avatar" :style="{ backgroundColor: hr.color }">
  139. <text class="avatar-text">{{ hr.name.charAt(0) }}</text>
  140. </view>
  141. <view class="online-dot"></view>
  142. </view> -->
  143. <view class="hr-avatar-container">
  144. <view class="hr-avatar">
  145. <image :src="hr.hrImg" mode="aspectFill" />
  146. </view>
  147. <view class="online-dot"></view>
  148. </view>
  149. <view class="hr-text">
  150. <view class="hr-name">{{ hr.name }}</view>
  151. <view class="hr-position">{{ hr.hrPosition }}</view>
  152. </view>
  153. </view>
  154. </view>
  155. </view>
  156. <view class="hr-desc" v-else>暂无HR信息</view>
  157. </view>
  158. </view>
  159. <!-- 人才发展 -->
  160. <view class="talent-section flex justify-center">
  161. <view class="talent-box">
  162. <view class="talent-title">人才发展</view>
  163. <view class="talent-tags flex flex-wrap">
  164. <view class="talent-tag" v-for="(talent, index) in talentList" :key="index">
  165. {{ talent }}
  166. </view>
  167. </view>
  168. </view>
  169. </view>
  170. <!-- 公司风采 -->
  171. <view class="talent-section flex justify-center">
  172. <view class="talent-box">
  173. <view class="talent-title">公司风采</view>
  174. <view class="talent-tags flex flex-wrap" v-if="info.photos">
  175. <view class="photo" v-for="(talent, index) in info.photos.split(',')" :key="index">
  176. <image mode="widthFix" :src="talent" class="photoImage"></image>
  177. </view>
  178. </view>
  179. <view class="hr-desc" v-else>该公司还未上传相关图片!</view>
  180. </view>
  181. </view>
  182. <!-- 工商信息 -->
  183. <view class="gsInfo flex justify-center">
  184. <view class="gsInfo-box flex justify-center">
  185. <view class="gsInfo-box-c">
  186. <view class="gsInfo-box-c-title">
  187. 工商信息
  188. </view>
  189. <view class="gsInfo-box-c-item">
  190. 公司全称:{{ info.companyAllName ? info.companyAllName : '' }}
  191. </view>
  192. <view class="gsInfo-box-c-item">
  193. 成立时间:{{ info.companyCreateTime ? info.companyCreateTime : '--' }}
  194. </view>
  195. <view class="gsInfo-box-c-item">
  196. 注册资本:{{ info.companyRegisteredFund ? info.companyRegisteredFund : '--' }}万人民币
  197. </view>
  198. <view class="gsInfo-box-c-item">
  199. 法人代表:{{ info.companyLegalPerson ? info.companyLegalPerson : '未知' }}
  200. </view>
  201. </view>
  202. </view>
  203. </view>
  204. <!-- 全部岗位弹窗 -->
  205. <btnPopous ref="jobPopup" v-if="showJobPopup && companyId && classify.length > 0" :companyId="companyId"
  206. :cittArr="cittArr" :classify="classify" :moneyArr="moneyArr" :jyArr="jyArr" @closePopup="closeJobPopup" />
  207. <u-popup v-model="shows" z-index="99999" mode="bottom" border-radius="14" height="300rpx">
  208. <view class="shar flex justify-center">
  209. <view class="shar-box flex justify-around">
  210. <view class="shar-box-item" @click="appShare('WXSceneSession')">
  211. <u-icon name="weixin-circle-fill" color="#45b630" style="margin-left: 10rpx;" size="70">
  212. </u-icon>
  213. <view class="">
  214. 微信好友
  215. </view>
  216. </view>
  217. <view class="shar-box-item" @click="appShare('WXSenceTimeline')">
  218. <u-icon name="moments-circel-fill" color="#6dbf30" size="70" style="margin-left: 20rpx;">
  219. </u-icon>
  220. <view class="">
  221. 微信朋友圈
  222. </view>
  223. </view>
  224. </view>
  225. </view>
  226. <view class="line"></view>
  227. <view class="sharNo" @click="shows = false">
  228. 取消
  229. </view>
  230. </u-popup>
  231. </view>
  232. </template>
  233. <script>
  234. import btnPopous from '../../components/btnPopous/btnPopous.vue'
  235. import config from '../../common/config.js'
  236. export default {
  237. components: {
  238. btnPopous
  239. },
  240. data() {
  241. return {
  242. statusBarHeight: 0, // 状态栏高度
  243. backStyle: {
  244. color: '#ffffff'
  245. },
  246. shadowStyle: {
  247. backgroundImage: 'none',
  248. },
  249. companyId: '',
  250. info: {},
  251. isCollection: 0, // 收藏状态
  252. showJobPopup: false, // 控制职位弹窗显示
  253. cittArr: [], //企业发布岗位的城市数组
  254. moneyArr: [], //薪资列表数组
  255. jyArr: [], //工作经验列表数组
  256. classify: [], //岗位名称数组
  257. hrList: [
  258. {
  259. name: '孙先生',
  260. position: '人事经理',
  261. color: '#4A90E2'
  262. },
  263. {
  264. name: '宋先生',
  265. position: 'HRBP',
  266. color: '#7ED321'
  267. },
  268. {
  269. name: '邹先生',
  270. position: 'HR助力',
  271. color: '#F5A623'
  272. }
  273. ],
  274. businessList: [],
  275. talentList: [],
  276. sharType: 0,
  277. sharMsg: '',
  278. shows: false
  279. };
  280. },
  281. //分享
  282. onShareAppMessage(res) {
  283. return {
  284. path: '/my/enterpriseInfo/enterpriseInfo?companyId=' + this.companyId + '&invitation=' + uni
  285. .getStorageSync(
  286. 'invitationCode'),
  287. title: this.info.companyName,
  288. }
  289. },
  290. /*
  291. * uniapp微信小程序分享页面到微信朋友圈
  292. */
  293. onShareTimeline(res) {
  294. return {
  295. path: '/my/enterpriseInfo/enterpriseInfo?companyId=' + this.companyId + '&invitation=' + uni
  296. .getStorageSync(
  297. 'invitationCode'),
  298. title: this.info.companyName,
  299. }
  300. },
  301. // onPageScroll(e) {
  302. // if (e.scrollTop > 100) {
  303. // uni.setNavigationBarTitle({
  304. // title: '西安省钱兄网络科技有限公司'
  305. // })
  306. // } else {
  307. // uni.setNavigationBarTitle({
  308. // title: '企业详情'
  309. // })
  310. // }
  311. // },
  312. onLoad(option) {
  313. // 获取状态栏高度
  314. let systemInfo = uni.getSystemInfoSync();
  315. this.statusBarHeight = systemInfo.statusBarHeight || 0;
  316. // 获取邀请码保存到本地
  317. if (option.invitation) {
  318. this.$queue.setData('inviterCode', option.invitation);
  319. }
  320. // #ifdef MP-WEIXIN
  321. if (option.scene) {
  322. const scene = decodeURIComponent(option.scene);
  323. this.$queue.setData('inviterCode', scene.split(',')[0]);
  324. }
  325. // #endif
  326. uni.showLoading({
  327. title: '加载中'
  328. })
  329. this.companyId = option.companyId
  330. this.getInfo();
  331. this.getCityCompanyId();
  332. this.getMoney();
  333. this.getJy();
  334. this.getClassify();
  335. },
  336. methods: {
  337. // 返回上一页
  338. goBack() {
  339. uni.navigateBack();
  340. },
  341. // 显示分享选项
  342. showShare() {
  343. // 可以添加分享逻辑
  344. this.shows = true
  345. },
  346. //app分享
  347. appShare(scene) {
  348. // #ifdef H5
  349. this.shar()
  350. this.shows = false;
  351. return
  352. //#endif
  353. let that = this
  354. let routes = getCurrentPages(); // 获取当前打开过的页面路由数组
  355. let curRoute = routes[routes.length - 1].$page.fullPath // 获取当前页面路由,也就是最后一个打开的页面路由
  356. uni.share({
  357. provider: "weixin", //分享服务提供商(即weixin|qq|sinaweibo)
  358. scene: scene, //场景,可取值参考下面说明。
  359. type: 5, //分享形式 0:图文 1:纯文字 2:纯图片 3:音乐 4:视频 5:小程序
  360. // href: curRoute, //跳转链接
  361. // imageUrl:'https://bjetxgzv.cdn.bspapp.com/VKCEYUGU-uni-app-doc/962fc340-4f2c-11eb-bdc1-8bd33eb6adaa.png',
  362. imageUrl: that.sharMsg,
  363. title: that.info.stationName, //分享内容的标题
  364. miniProgram: {
  365. id: 'gh_d531be6accdb', //分享的小程序原始id
  366. path: curRoute, //分享的小程序的页面路径
  367. webUrl: "https://ask.dcloud.net.cn/article/287", //地址
  368. type: that.sharType, //微信小程序的版本 0-正式版; 1-测试版; 2-体验版。 默认值为0。
  369. },
  370. success: function (res) {
  371. that.shows = false; //成功后关闭底部弹框
  372. },
  373. fail: function (err) {
  374. console.log(err, '分享失败回调')
  375. uni.showToast({
  376. title: '分享失败',
  377. icon: 'none',
  378. duration: 2000
  379. })
  380. that.shows = false;
  381. }
  382. });
  383. },
  384. getShowModal() {
  385. uni.showModal({
  386. title: '提示',
  387. content: '请登录后联系企业',
  388. showCancel: true,
  389. cancelText: '取消',
  390. confirmText: '去登录',
  391. complete: (res) => {
  392. if (res.confirm) {
  393. uni.navigateTo({
  394. url: '/pages/public/login'
  395. })
  396. }
  397. }
  398. });
  399. },
  400. shar() {
  401. if (uni.getStorageSync('token')) {
  402. let that = this
  403. // h5分享
  404. // #ifdef H5
  405. let url = config.WSHOST4 + '/my/enterpriseInfo/enterpriseInfo?companyId=' + this.companyId + '&invitation=' + uni
  406. .getStorageSync(
  407. 'invitationCode')
  408. // let url = 'http://192.168.0.109:8081/pages/index/game/order?postPushId=' + this.postPushId
  409. // alert(url)
  410. uni.setClipboardData({
  411. data: url,
  412. success() {
  413. uni.showToast({
  414. title: '分享链接已复制'
  415. })
  416. }
  417. })
  418. // #endif
  419. } else {
  420. this.getShowModal()
  421. }
  422. },
  423. // 收藏企业
  424. setCollection() {
  425. this.$Request.postT("/app/myCollection/saveCollection", {
  426. companyId: this.companyId,
  427. type: 3 // 2表示收藏企业
  428. }).then(res => {
  429. if (res.code == 0) {
  430. uni.showToast({
  431. title: res.msg
  432. })
  433. this.isCollection = this.isCollection == 0 ? 1 : 0;
  434. }
  435. })
  436. },
  437. // 显示所有职位弹窗
  438. goToMoreJobs() {
  439. if (this.classify && this.classify.length <= 0) {
  440. uni.showToast({
  441. title: '该公司还未发布岗位!',
  442. icon: 'none'
  443. })
  444. return;
  445. }
  446. this.showJobPopup = true;
  447. this.$nextTick(() => {
  448. if (this.$refs.jobPopup) {
  449. this.$refs.jobPopup.topY = true;
  450. }
  451. });
  452. },
  453. // 关闭职位弹窗
  454. closeJobPopup() {
  455. this.showJobPopup = false;
  456. },
  457. openMap() {
  458. let that = this
  459. if (that.info.companyLat && that.info.companyLng) {
  460. uni.openLocation({
  461. latitude: that.info.companyLat,
  462. longitude: that.info.companyLng,
  463. address: that.info.province + '' + that.info.city + '' + that.info.district + '' + that
  464. .info
  465. .companyAddress,
  466. name: that.info.companyAddress
  467. })
  468. } else {
  469. uni.showToast({
  470. title: '暂无位置信息',
  471. icon: 'none'
  472. })
  473. }
  474. },
  475. /**
  476. * 岗位分类数组
  477. */
  478. getClassify() {
  479. this.$Request.getT("/app/postPush/getCompanyClassify", {
  480. companyId: this.companyId
  481. }).then(res => {
  482. if (res.code == 0) {
  483. this.classify = res.data //岗位分类列表数组
  484. }
  485. })
  486. },
  487. /**
  488. * 获取薪资 列表
  489. */
  490. getMoney() {
  491. this.$Request.get("/app/dict/list", {
  492. type: '薪资 '
  493. }).then(res => {
  494. if (res.code == 0) {
  495. this.moneyArr = res.data //薪资列表数组
  496. }
  497. })
  498. },
  499. /**
  500. * 获取工作经验列表
  501. */
  502. getJy() {
  503. this.$Request.get("/app/dict/list", {
  504. type: '工作经验 '
  505. }).then(res => {
  506. if (res.code == 0) {
  507. this.jyArr = res.data //工作经验列表数组
  508. }
  509. })
  510. },
  511. /**
  512. * 根据公司id查询已发布岗位的市
  513. */
  514. getCityCompanyId() {
  515. let data = {
  516. companyId: this.companyId
  517. }
  518. this.$Request.getT("/app/postPush/getCityCompanyId", data).then(res => {
  519. if (res.code == 0) {
  520. this.cittArr = res.data
  521. }
  522. })
  523. },
  524. //获取企业详情
  525. getInfo() {
  526. let that = this
  527. this.$Request.get("/app/company/selectCompanyByCompanyId", {
  528. companyId: this.companyId
  529. }).then(res => {
  530. if (res.code == 0) {
  531. let color = ['#4A90E2', '#7ED321', '#F5A623']
  532. res.data.welfareArr = res.data.welfare ? res.data.welfare.split(',') : []
  533. res.data.photosArr = res.data.photosArr ? res.data.photos.split(',') : []
  534. that.talentList = res.data.companyPeopleDevelop ? res.data.companyPeopleDevelop.split(',') : []
  535. that.businessList = res.data.workDescribe ? res.data.workDescribe.split(',') : []
  536. if (res.data.hr) {
  537. res.data.hr.forEach(function (item, index) {
  538. if (item) {
  539. item.name = '匿名'
  540. item.color = color[index % 3]
  541. for (const user of res.data.userEntities) {
  542. if (item.userId == user.userId) {
  543. item.name = user.userName;
  544. break; // 直接跳出循环
  545. }
  546. }
  547. }
  548. })
  549. }
  550. this.info = res.data
  551. if (this.info.companyName) {
  552. uni.setNavigationBarTitle({
  553. title: that.info.companyName
  554. })
  555. }
  556. that.isCollection = res.data.isCollect || 0
  557. // let reg = /.+?(省|市|自治区|自治州|县|区)/g
  558. // let cityarr = this.info.companyAddress.match(reg)
  559. // if (cityarr && cityarr != null) {
  560. // if (cityarr.length == 3) {
  561. // this.info.companyAddress = cityarr[0] + '' + cityarr[1] + '' + cityarr[2]
  562. // } else {
  563. // this.info.companyAddress = cityarr[0] + '' + cityarr[1]
  564. // }
  565. // }
  566. }
  567. uni.hideLoading()
  568. })
  569. },
  570. }
  571. }
  572. </script>
  573. <style lang="scss">
  574. page {
  575. // background-color: #4B4D5C;
  576. // overflow: hidden;
  577. }
  578. .hr-desc {
  579. color: rgba(102, 102, 102, 1);
  580. font-family: DM Sans;
  581. font-size: 20rpx;
  582. }
  583. .content {
  584. // padding-top 已改为动态计算,在模板中通过 :style 设置
  585. }
  586. .fixed-nav {
  587. position: fixed;
  588. top: 0;
  589. left: 0;
  590. right: 0;
  591. z-index: 9999;
  592. background-color: #ffffff;
  593. padding: 0 32rpx;
  594. // padding-top 已改为动态计算,在模板中通过 :style 设置
  595. }
  596. .nav-bar {
  597. display: flex;
  598. align-items: center;
  599. justify-content: space-between;
  600. height: 88rpx;
  601. padding: 0 8rpx;
  602. // margin-bottom: 30rpx; // 已移除,因为现在是固定导航栏
  603. // padding: 0 40rpx; // 已调整,因为外层 fixed-nav 已有 padding
  604. .nav-left {
  605. display: flex;
  606. align-items: center;
  607. justify-content: flex-start;
  608. width: 96rpx;
  609. }
  610. .nav-title {
  611. color: rgba(34, 37, 42, 1);
  612. font-family: DM Sans;
  613. font-size: 16px;
  614. font-weight: 400;
  615. line-height: 24px;
  616. letter-spacing: 0px;
  617. text-align: left;
  618. }
  619. .nav-right {
  620. display: flex;
  621. align-items: center;
  622. justify-content: flex-end;
  623. width: 96rpx;
  624. }
  625. .nav-icons {
  626. display: flex;
  627. align-items: center;
  628. gap: 24rpx;
  629. }
  630. .nav-icon {
  631. display: flex;
  632. align-items: center;
  633. justify-content: center;
  634. width: 36rpx;
  635. height: 36rpx;
  636. }
  637. .icon-img {
  638. width: 42rpx;
  639. height: 42rpx;
  640. }
  641. }
  642. .info {
  643. width: 100%;
  644. margin-top: 50rpx;
  645. .info-box {
  646. width: 686rpx;
  647. height: 100%;
  648. .info-box-r {
  649. width: calc(100% - 150rpx);
  650. }
  651. .info-box-r-title {
  652. color: rgba(58, 57, 67, 1);
  653. font-family: DM Sans;
  654. font-size: 42rpx;
  655. font-weight: 700;
  656. line-height: 30px;
  657. letter-spacing: 0px;
  658. text-align: left;
  659. }
  660. .info-box-r-label {
  661. color: #FFFFFF;
  662. font-size: 28rpx;
  663. font-weight: 500;
  664. margin-top: 20rpx;
  665. .info-box-r-label-item {
  666. color: rgba(153, 153, 153, 1);
  667. font-family: DM Sans;
  668. font-size: 24rpx;
  669. font-weight: 400;
  670. line-height: 16px;
  671. letter-spacing: 0%;
  672. text-align: left;
  673. margin-right: 10rpx
  674. }
  675. }
  676. }
  677. }
  678. .info-box-r-label-item {
  679. color: rgba(153, 153, 153, 1);
  680. font-family: DM Sans;
  681. font-size: 24rpx;
  682. font-weight: 400;
  683. line-height: 16px;
  684. letter-spacing: 0%;
  685. text-align: left;
  686. margin-right: 10rpx;
  687. margin-top: 20rpx;
  688. }
  689. .remarks {
  690. width: 100%;
  691. margin-top: 50rpx;
  692. .remarks-box {
  693. width: 686rpx;
  694. .remarks-box-title {
  695. color: rgba(34, 37, 42, 1);
  696. font-family: DM Sans;
  697. font-size: 16px;
  698. font-weight: 400;
  699. line-height: 24px;
  700. letter-spacing: 0px;
  701. text-align: left;
  702. }
  703. .remarks-box-con {
  704. margin-top: 30rpx;
  705. }
  706. }
  707. }
  708. .remarks-box-con-item {
  709. color: rgba(153, 153, 153, 1);
  710. font-family: DM Sans;
  711. font-size: 14px;
  712. font-weight: 400;
  713. line-height: 18px;
  714. letter-spacing: 0px;
  715. text-align: left;
  716. }
  717. .address {
  718. width: 100%;
  719. margin-top: 80rpx;
  720. .address-box {
  721. width: 686rpx;
  722. border-radius: 24rpx;
  723. .address-box-c {
  724. width: 100%;
  725. .working-hours {
  726. margin-bottom: 24rpx;
  727. text {
  728. color: rgba(51, 51, 51, 1);
  729. font-size: 28rpx;
  730. font-weight: 400;
  731. }
  732. }
  733. .benefits-section {
  734. margin-bottom: 24rpx;
  735. .benefits-tags {
  736. gap: 12rpx;
  737. .benefit-tag {
  738. background: rgba(40, 107, 229, 0.1);
  739. border-radius: 12rpx;
  740. padding: 12rpx;
  741. display: flex;
  742. align-items: center;
  743. gap: 8rpx;
  744. .tag-icon {
  745. width: 42rpx;
  746. height: 42rpx;
  747. }
  748. text {
  749. color: rgba(34, 37, 42, 0.5);
  750. font-family: DM Sans;
  751. font-size: 20rpx;
  752. font-weight: 400;
  753. line-height: 44rpx;
  754. letter-spacing: 0px;
  755. text-align: left;
  756. }
  757. }
  758. }
  759. }
  760. .address-box-c-add {
  761. padding: 0;
  762. .address-box-c-add-l {
  763. color: rgba(102, 102, 102, 1);
  764. font-family: DM Sans;
  765. font-size: 24rpx;
  766. font-weight: 400;
  767. line-height: 16px;
  768. letter-spacing: 0px;
  769. text-align: left;
  770. }
  771. .address-box-c-add-r {
  772. width: 48rpx;
  773. height: 48rpx;
  774. display: flex;
  775. align-items: center;
  776. justify-content: center;
  777. }
  778. }
  779. }
  780. }
  781. }
  782. .business-section {
  783. width: 100%;
  784. margin-top: 30rpx;
  785. .business-box {
  786. width: 686rpx;
  787. background: #ffffff;
  788. border-radius: 24rpx;
  789. .business-title {
  790. color: rgba(34, 37, 42, 1);
  791. font-family: DM Sans;
  792. font-size: 16px;
  793. font-weight: 400;
  794. line-height: 24px;
  795. letter-spacing: 0px;
  796. text-align: left;
  797. margin-bottom: 24rpx;
  798. }
  799. .business-tags {
  800. gap: 12rpx;
  801. .business-tag {
  802. background: transparent;
  803. border: 1px solid rgba(153, 196, 250, 1);
  804. border-radius: 12rpx;
  805. padding: 6rpx 12rpx;
  806. color: rgba(40, 107, 229, 1);
  807. font-family: DM Sans;
  808. font-size: 20rpx;
  809. font-weight: 400;
  810. line-height: 16px;
  811. letter-spacing: 0px;
  812. text-align: center;
  813. }
  814. }
  815. }
  816. }
  817. .talent-section {
  818. width: 100%;
  819. margin-top: 30rpx;
  820. .talent-box {
  821. width: 686rpx;
  822. background: #ffffff;
  823. border-radius: 24rpx;
  824. .talent-title {
  825. color: rgba(34, 37, 42, 1);
  826. font-family: DM Sans;
  827. font-size: 16px;
  828. font-weight: 400;
  829. line-height: 24px;
  830. letter-spacing: 0px;
  831. text-align: left;
  832. margin-bottom: 24rpx;
  833. }
  834. .talent-tags {
  835. gap: 12rpx;
  836. .talent-tag {
  837. background: rgba(153, 153, 153, 0.1);
  838. border-radius: 12rpx;
  839. padding: 6rpx 12rpx;
  840. color: rgba(102, 102, 102, 1);
  841. font-family: DM Sans;
  842. font-size: 20rpx;
  843. font-weight: 400;
  844. line-height: 16px;
  845. letter-spacing: 0px;
  846. text-align: center;
  847. }
  848. .photo {
  849. width: 100%;
  850. .photoImage {
  851. width: 100%;
  852. display: block;
  853. }
  854. }
  855. }
  856. }
  857. }
  858. .hr-section {
  859. width: 100%;
  860. .hr-box {
  861. width: 686rpx;
  862. background: #ffffff;
  863. border-radius: 24rpx;
  864. .hr-header {
  865. padding: 50rpx 0 0 0;
  866. margin-bottom: 30rpx;
  867. .hr-title {
  868. color: rgba(34, 37, 42, 1);
  869. font-family: DM Sans;
  870. font-size: 16px;
  871. font-weight: 400;
  872. line-height: 24px;
  873. letter-spacing: 0px;
  874. text-align: left;
  875. }
  876. .view-all-jobs {
  877. text {
  878. color: rgba(255, 102, 0, 1);
  879. font-family: DM Sans;
  880. font-size: 12px;
  881. font-weight: 400;
  882. line-height: 16px;
  883. letter-spacing: 0px;
  884. text-align: right;
  885. }
  886. }
  887. }
  888. .hr-list {
  889. padding: 0 0 30rpx 0;
  890. .hr-item {
  891. flex: 1;
  892. .hr-content {
  893. align-items: center;
  894. .hr-avatar-container {
  895. position: relative;
  896. margin-right: 16rpx;
  897. .hr-avatar {
  898. width: 80rpx;
  899. height: 80rpx;
  900. border-radius: 50%;
  901. display: flex;
  902. align-items: center;
  903. justify-content: center;
  904. position: relative;
  905. image {
  906. width: 80rpx;
  907. height: 80rpx;
  908. border-radius: 50%;
  909. }
  910. .avatar-text {
  911. color: #ffffff;
  912. font-size: 32rpx;
  913. font-weight: 600;
  914. }
  915. }
  916. .online-dot {
  917. position: absolute;
  918. bottom: 4rpx;
  919. right: 4rpx;
  920. width: 20rpx;
  921. height: 20rpx;
  922. background-color: #7ED321;
  923. border-radius: 50%;
  924. border: 3rpx solid #ffffff;
  925. }
  926. }
  927. .hr-text {
  928. .hr-name {
  929. color: rgba(34, 37, 42, 1);
  930. font-family: DM Sans;
  931. font-size: 28rpx;
  932. font-weight: 500;
  933. line-height: 20px;
  934. margin-bottom: 4rpx;
  935. text-align: left;
  936. }
  937. .hr-position {
  938. color: rgba(153, 153, 153, 1);
  939. font-family: DM Sans;
  940. font-size: 24rpx;
  941. font-weight: 400;
  942. line-height: 16px;
  943. text-align: left;
  944. }
  945. }
  946. }
  947. }
  948. }
  949. }
  950. }
  951. .gsInfo {
  952. width: 100%;
  953. margin-top: 20rpx;
  954. .gsInfo-box {
  955. width: 686rpx;
  956. height: 100%;
  957. border-radius: 24rpx;
  958. .gsInfo-box-c {
  959. width: 100%;
  960. height: 100%;
  961. padding-top: 30rpx;
  962. padding-bottom: 30rpx;
  963. }
  964. .gsInfo-box-c-title {
  965. color: rgba(34, 37, 42, 1);
  966. font-family: DM Sans;
  967. font-size: 16px;
  968. font-weight: 400;
  969. line-height: 24px;
  970. letter-spacing: 0px;
  971. text-align: left;
  972. margin-bottom: 10rpx;
  973. }
  974. .gsInfo-box-c-item {
  975. color: rgba(153, 153, 153, 1);
  976. font-family: DM Sans;
  977. font-size: 12px;
  978. font-weight: 400;
  979. line-height: 16px;
  980. letter-spacing: 0%;
  981. text-align: left;
  982. margin-bottom: 10rpx;
  983. }
  984. }
  985. }
  986. .shar {
  987. width: 100%;
  988. height: 100rpx;
  989. margin-top: 40rpx;
  990. .shar-box {
  991. width: 686rpx;
  992. height: 100%;
  993. .shar-box-item {
  994. font-size: 24rpx;
  995. }
  996. }
  997. }
  998. .line {
  999. width: 100%;
  1000. border: 1rpx solid #F2F2F7;
  1001. margin-top: 30rpx;
  1002. margin-bottom: 20rpx;
  1003. }
  1004. .sharNo {
  1005. width: 100%;
  1006. color: #cccccc;
  1007. font-size: 24rpx;
  1008. text-align: center;
  1009. }
  1010. </style>