details.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556
  1. <template>
  2. <view class="concant">
  3. <view class="top">
  4. <!-- 职位 -->
  5. <view class="u-flex u-row-between " style="align-items: center;">
  6. <view class="title">
  7. {{data.job_name}}
  8. </view>
  9. <view class="money">
  10. <text>{{data.salary_min}}-{{data.salary_max}}k</text>
  11. <text>·{{data.salary_structure}}</text>
  12. </view>
  13. </view>
  14. <!-- 地址 -->
  15. <view class="address">
  16. <text>{{data.work_province}}·{{data.work_city}}</text>|
  17. <text>{{data.experience_name}}</text>|
  18. <text>{{data.education_name}}</text>
  19. </view>
  20. <!-- 急聘 -->
  21. <view class="hint" v-if="data.is_urgent">
  22. <image src="@/static/images/employment.png" mode="" style="width: 52rpx;height: 52rpx;"></image>
  23. <text class="font1">急聘</text>
  24. <text class="font2">该职位为急聘职位,立即应聘抢占先机!</text>
  25. </view>
  26. </view>
  27. <view class="hr u-flex " style="align-items: center;">
  28. <image :src="data.usermanager.avatar" mode="" style="width: 96rpx ; height: 96rpx;border-radius: 50%;">
  29. </image>
  30. <view class="" style="margin-left: 20rpx;">
  31. <view class="font1">{{data.usermanager.name}}</view>
  32. <text class="font2">内核招聘·{{data.usermanager.company_text}}</text>
  33. </view>
  34. </view>
  35. <view class="position">
  36. <view class="titleb">职位信息</view>
  37. <view class="" style="display: flex; margin-top: 6rpx;">
  38. <view class="left">
  39. <text class="font">职位类型:{{data.categoryjob.name}}</text>
  40. <text class="font">所属部门:{{data.department}}</text>
  41. <text class="font">汇报对象:{{data.report_object}}</text>
  42. <text class="font">是否管理岗:{{data.data.is_guanli == 1?"是":"否"}}</text>
  43. </view>
  44. <view class="right" style="margin-left: 68rpx;">
  45. <text class="font">招聘人数:{{data.is_guanli}}人</text>
  46. <text class="font">开放原因:{{data.open_cause}}</text>
  47. <text class="font">团队规模:{{data.scale}}人</text>
  48. </view>
  49. </view>
  50. </view>
  51. <view class="introduce">
  52. <view class="titleb">职位描述</view>
  53. <view class="font" style="margin-top: 32rpx;">岗位职责:</view>
  54. <view class="font" style="margin-top: 24rpx;">
  55. {{data.job_describe}}
  56. </view>
  57. </view>
  58. <!-- 薪资福利 -->
  59. <view class="introduce" style="margin-top: 32rpx;">
  60. <view class="titleb">薪资福利</view>
  61. <view class="font " style="margin-top: 32rpx;display: flex; ">
  62. <view style="width:150rpx;">薪资范围:</view>
  63. <view style="width: 536rpx;min-height: 42rpx;word-break: break-all; ">
  64. {{data.salary_min}}-{{data.salary_max}}K
  65. </view>
  66. </view>
  67. <view class="font " style="margin-top: 32rpx;display: flex; ">
  68. <view style="width:150rpx;">薪资结构:</view>
  69. <view style="width: 536rpx;min-height: 42rpx;word-break: break-all;">
  70. {{data.salary_structure}}
  71. </view>
  72. </view>
  73. <view class="font " style="margin-top: 32rpx;display: flex; ">
  74. <view style="width:150rpx;">福利待遇:</view>
  75. <view style="width: 536rpx;min-height: 42rpx;word-break: break-all;">
  76. {{data.social_benefits}}
  77. </view>
  78. </view>
  79. </view>
  80. <!-- 面试信息 -->
  81. <view class="introduce" style="margin-top: 32rpx;">
  82. <view class="titleb">面试信息</view>
  83. <view class="font " style="margin-top: 32rpx;display: flex; ">
  84. <view style="width:150rpx;">面试轮次:</view>
  85. <view style="width: 536rpx;min-height: 42rpx;word-break: break-all; ">
  86. {{data.interview_num}}轮
  87. </view>
  88. </view>
  89. <view class="font " style="margin-top: 32rpx;display: flex; ">
  90. <view style="width:150rpx;">面试流程:</view>
  91. <view style="width: 536rpx;min-height: 42rpx;word-break: break-all;">
  92. {{data.interview_flow}}
  93. </view>
  94. </view>
  95. </view>
  96. <!-- 工作地点 -->
  97. <view class="address1" style="margin-top: 32rpx;">
  98. <view class="titleb">工作地点</view>
  99. <view class="font " style="margin-top: 32rpx;display: flex; ">
  100. <view style="width:150rpx;">工作地址:</view>
  101. <view style="width: 536rpx;min-height: 42rpx;word-break: break-all; ">
  102. {{data.work_province}} - {{data.work_city}} - {{data.work_address}}- {{data.company.name}}
  103. </view>
  104. </view>
  105. <view class="border">
  106. <view class="u-flex u-row-between" @click="toGsinfo(data.company.id)">
  107. <view class="u-flex">
  108. <image :src="data.company.logo" mode="" style="width: 100rpx;height: 100rpx;">
  109. <view class="" style="margin-left: 28rpx;">
  110. <view class="">{{data.company.name}}</view>
  111. <view class="font2" style="margin-top: 12rpx;margin-left: -20rpx;">
  112. <text class="">{{data.company.categoryindustry.name}}</text>|
  113. <text class="">{{data.company.stage.name}}</text>|
  114. <text class="">{{data.company.scale.name}}</text>
  115. </view>
  116. </view>
  117. </view>
  118. <u-icon name="arrow-right"></u-icon>
  119. </view>
  120. <view class="" style="margin-top: 32rpx;">
  121. <view class="page-body" style="hanging-punctuation: 336rpx;">
  122. <view class="page-section page-section-gap">
  123. <map style="width: 100%;" :latitude="latitude" :longitude="longitude" :markers="covers">
  124. </map>
  125. </view>
  126. </view>
  127. </view>
  128. </view>
  129. </view>
  130. <!-- 底部 -->
  131. <view class="bottom u-flex" style="height: 166rpx;">
  132. <view class="" @click="call" style="width: 80rpx;display: flex;flex-direction: column;align-items: center;">
  133. <u-icon v-if="!data.collectjob" name="star" size="26"></u-icon>
  134. <u-icon v-if="data.collectjob" name="star-fill" color="#2979ff" size="26"></u-icon>
  135. <text :style="[{color:data.collectjob?'#2979ff':'#555'}]"
  136. class="font">{{data.collectjob?'已收藏':"收藏"}}</text>
  137. </view>
  138. <button class="btn11" @click="open(1)">投递简历</button>
  139. <button class="btn22" @click="open(2)">立即聊聊</button>
  140. <view class="safe-area-inset-bottom"></view>
  141. </view>
  142. <!-- 弹出层 -->
  143. <u-popup customStyle="width: 556rpx;height: 404rpx;border-radius: 16rpx;" :show="show" mode="center">
  144. <view class="back1">
  145. <view class="font1">完善简历信息</view>
  146. <view class="font2" style="margin-top:20rpx;">当前账号还未完善简历信息,该功能无法使用,如需使用该功能,请去完善个人简历信息</view>
  147. <view class="u-flex" style="margin-top: 40rpx;">
  148. <button class="btn1" @tap="close">取消</button>
  149. <button class="btn2" @click="todetails">去完善</button>
  150. </view>
  151. </view>
  152. <view class="u-flex " style="margin-top: 44rpx;justify-content:center;">
  153. <image @click="close" style="width: 66rpx; height: 66rpx;" src="../static/images/close.png" mode="">
  154. </image>
  155. </view>
  156. </u-popup>
  157. </view>
  158. </template>
  159. <script setup>
  160. import {
  161. getdetail,
  162. collect,
  163. orderCreate,
  164. resumeDetail
  165. } from "@/units/inquire.js"
  166. export default {
  167. data() {
  168. return {
  169. // 收藏
  170. collect: false,
  171. show: false,
  172. job_id_list: [],
  173. zid: "", //职位id
  174. data: {
  175. job_name: "",
  176. salary_min: '',
  177. salary_max: "",
  178. salary_structure: "",
  179. work_province: "",
  180. work_city: "",
  181. experience_name: "",
  182. education_name: "",
  183. is_urgent: "",
  184. department: "",
  185. }, //职位详情数据
  186. id: 0, // 使用 marker点击事件 需要填写id
  187. title: 'map',
  188. latitude: 39.909,
  189. longitude: 116.39742,
  190. resume_id: "",
  191. covers: [{
  192. latitude: 39.909,
  193. longitude: 116.39742,
  194. // iconPath: '../../static/images/addressicon.png'
  195. }],
  196. is_profile: "",
  197. job_id: ""
  198. }
  199. },
  200. onLoad(options) {
  201. this.is_profile = uni.getStorageSync("is_profile")
  202. this.zid = options.id
  203. this.getDetail()
  204. this.resumeDetail()
  205. },
  206. methods: {
  207. resumeDetail() {
  208. resumeDetail().then(res => {
  209. console.log(res);
  210. uni.setStorageSync("resume_id", res.data.id)
  211. this.resume_id = res.data.id
  212. res.data.job_intention.forEach(item => {
  213. this.job_id_list.push(item.category_job_id)
  214. })
  215. })
  216. },
  217. orderCreate() {
  218. orderCreate({
  219. resume_id: this.resume_id,
  220. job_ids: this.job_id,
  221. }).then(res => {
  222. if (res.code == 1) {
  223. this.$u.toast("投递成功")
  224. }
  225. })
  226. },
  227. todetails() {
  228. uni.navigateTo({
  229. url: "../pagesA/jianlichange"
  230. })
  231. },
  232. call() {
  233. if (this.data.collectjob == null) {
  234. this.data.collectjob = "1"
  235. this.$u.toast("收藏成功")
  236. collect({
  237. id: this.zid,
  238. status: 1
  239. }).then((res) => {
  240. })
  241. } else {
  242. this.data.collectjob = null
  243. this.$u.toast("取消收藏")
  244. collect({
  245. id: this.zid,
  246. status: 2
  247. }).then((res) => {
  248. })
  249. }
  250. },
  251. open(type) {
  252. if (this.is_profile == 0) {
  253. this.show = true
  254. } else {
  255. if (type == 1) {
  256. this.orderCreate()
  257. } else {
  258. console.log(222);
  259. uni.navigateTo({
  260. url: "/pagesC/chat"
  261. })
  262. }
  263. }
  264. },
  265. close() {
  266. this.show = false
  267. },
  268. // 获取职位详情
  269. getDetail() {
  270. getdetail({
  271. id: this.zid
  272. }).then((res) => {
  273. if (res.code == 1) {
  274. this.job_id = res.data.id
  275. this.data = res.data
  276. this.covers[0].latitude = Number(res.data.company.lat)
  277. this.covers[0].longitude = Number(res.data.company.lng)
  278. this.latitude = Number(res.data.company.lat)
  279. this.longitude = Number(res.data.company.lng)
  280. } else {
  281. this.$u.toast(res.msg)
  282. }
  283. })
  284. },
  285. //跳转到公司详情
  286. toGsinfo(id) {
  287. uni.navigateTo({
  288. url: "/pagesB/gongsi-info?id=" + id
  289. })
  290. }
  291. }
  292. }
  293. </script>
  294. <style lang="scss" scoped>
  295. .back1 {
  296. background: url(../static/images/pop.png) no-repeat;
  297. // width: 556rpx;height: 404rpx;
  298. text-align: center;
  299. padding: 56rpx 46rpx 42rpx 46rpx;
  300. box-sizing: border-box;
  301. background-size: 100% 100%;
  302. .font1 {
  303. font-size: 36rpx;
  304. font-family: PingFangSC-Medium, PingFang SC;
  305. font-weight: 500;
  306. color: #222222;
  307. }
  308. .font2 {
  309. font-size: 26rpx;
  310. font-family: PingFangSC-Regular, PingFang SC;
  311. font-weight: 400;
  312. color: #555555;
  313. }
  314. .btn1 {
  315. width: 220rpx;
  316. height: 84rpx;
  317. background: #F3F3F3;
  318. border-radius: 8rpx;
  319. font-size: 32rpx;
  320. font-family: PingFangSC-Regular, PingFang SC;
  321. font-weight: 400;
  322. color: #333333;
  323. }
  324. .btn2 {
  325. width: 220rpx;
  326. height: 84rpx;
  327. background: #0C66C2;
  328. border-radius: 8rpx;
  329. font-size: 32rpx;
  330. font-family: PingFangSC-Regular, PingFang SC;
  331. font-weight: 400;
  332. color: #FFFFFF;
  333. }
  334. }
  335. .bottom {
  336. width: 750rpx;
  337. position: fixed;
  338. bottom: 0;
  339. left: 0;
  340. height: 118rpx;
  341. padding: 0 32rpx;
  342. background: #fff;
  343. box-sizing: border-box;
  344. border-top: 2rpx solid #F4F4F4;
  345. .font {
  346. height: 34rpx;
  347. font-size: 24rpx;
  348. font-family: PingFangSC-Regular, PingFang SC;
  349. font-weight: 400;
  350. }
  351. .btn11 {
  352. width: 236rpx;
  353. height: 88rpx;
  354. background: #FA6400;
  355. border-radius: 12rpx;
  356. font-size: 32rpx;
  357. font-family: PingFangSC-Medium, PingFang SC;
  358. font-weight: 500;
  359. color: #FFFFFF;
  360. line-height: 88rpx;
  361. }
  362. .btn22 {
  363. width: 344rpx;
  364. height: 88rpx;
  365. background: #0C66C2;
  366. border-radius: 12rpx;
  367. font-size: 32rpx;
  368. font-family: PingFangSC-Medium, PingFang SC;
  369. font-weight: 500;
  370. color: #FFFFFF;
  371. line-height: 88rpx;
  372. }
  373. }
  374. .titleb {
  375. height: 50rpx;
  376. font-size: 36rpx;
  377. font-family: PingFangSC-Medium, PingFang SC;
  378. font-weight: 500;
  379. color: #222222;
  380. line-height: 50rpx;
  381. }
  382. .concant {
  383. padding: 44rpx 32rpx 130rpx;
  384. min-height: 100vh;
  385. .address1 {
  386. margin-top: 40rpx;
  387. .font {
  388. font-size: 30rpx;
  389. font-family: PingFangSC-Regular, PingFang SC;
  390. font-weight: 400;
  391. color: #555555;
  392. }
  393. .border {
  394. margin-top: 32rpx;
  395. padding: 34rpx 0;
  396. border-top: 2rpx solid #F4F4F4;
  397. .font2 {
  398. font-size: 26rpx;
  399. font-family: PingFangSC-Regular, PingFang SC;
  400. font-weight: 400;
  401. color: #555555;
  402. text :first-child {
  403. // margin-left: 0 !important;
  404. margin-right: 20rpx;
  405. }
  406. text :nth-child(2) {
  407. margin: 0 20rpx;
  408. }
  409. text :last-child {
  410. margin: 20rpx;
  411. }
  412. }
  413. }
  414. }
  415. .introduce {
  416. margin-top: 40rpx;
  417. .font {
  418. font-size: 30rpx;
  419. font-family: PingFangSC-Regular, PingFang SC;
  420. font-weight: 400;
  421. color: #555555;
  422. }
  423. }
  424. .top {
  425. .title {
  426. font-size: 48rpx;
  427. font-family: PingFangSC-Medium, PingFang SC;
  428. font-weight: 500;
  429. color: #222222;
  430. }
  431. .money {
  432. font-size: 32rpx;
  433. font-family: SFPro-Medium, SFPro;
  434. font-weight: 500;
  435. color: #0C66C2;
  436. }
  437. .address {
  438. margin: 20rpx 0 28rpx -20rpx;
  439. font-size: 28rpx;
  440. font-family: PingFangSC-Regular, PingFang SC;
  441. font-weight: 400;
  442. color: #444444;
  443. text :first-child {
  444. margin-left: 0 !important;
  445. margin-right: 20rpx;
  446. }
  447. text :nth-child(2) {
  448. margin: 0 20rpx;
  449. }
  450. text :last-child {
  451. margin: 20rpx;
  452. }
  453. }
  454. .hint {
  455. background: #FFE9DF;
  456. border-radius: 12rpx;
  457. margin-bottom: 28rpx;
  458. display: flex;
  459. align-items: center;
  460. padding: 16rpx 0 16rpx 24rpx;
  461. .font1 {
  462. font-size: 26rpx;
  463. font-family: PingFangSC-Medium, PingFang SC;
  464. font-weight: 500;
  465. color: #FF5335;
  466. margin: 0 20rpx 0 16rpx;
  467. }
  468. .font2 {
  469. font-size: 26rpx;
  470. font-family: PingFangSC-Regular, PingFang SC;
  471. font-weight: 400;
  472. color: #444444;
  473. }
  474. }
  475. }
  476. .hr {
  477. margin-top: 28rpx;
  478. border-bottom: 2rpx solid #F4F4F4;
  479. border-top: 2rpx solid #F4F4F4;
  480. height: 150rpx;
  481. padding: 26rpx 0 28rpx;
  482. .font1 {
  483. height: 42rpx;
  484. font-size: 30rpx;
  485. font-family: PingFangSC-Medium, PingFang SC;
  486. font-weight: 500;
  487. color: #444444;
  488. line-height: 42rpx;
  489. }
  490. .font2 {
  491. height: 34rpx;
  492. font-size: 24rpx;
  493. font-family: PingFangSC-Regular, PingFang SC;
  494. font-weight: 400;
  495. color: #666666;
  496. line-height: 34rpx;
  497. }
  498. }
  499. .position {
  500. margin-top: 34rpx;
  501. .font {
  502. height: 42rpx;
  503. font-size: 30rpx;
  504. font-family: PingFangSC-Regular, PingFang SC;
  505. font-weight: 400;
  506. color: #555555;
  507. margin-top: 24rpx;
  508. display: block;
  509. }
  510. }
  511. }
  512. </style>