details.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588
  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. import {
  167. conn
  168. } from '@/utils/WebIM'
  169. import WebIM from '@/newSDK/Easemob-chat.js'
  170. import $api from '@/static/js/api.js'
  171. export default {
  172. data() {
  173. return {
  174. // 收藏
  175. collect: false,
  176. show: false,
  177. job_id_list: [],
  178. zid: "", //职位id
  179. data: {
  180. job_name: "",
  181. salary_min: '',
  182. salary_max: "",
  183. salary_structure: "",
  184. work_province: "",
  185. work_city: "",
  186. experience_name: "",
  187. education_name: "",
  188. is_urgent: "",
  189. department: "",
  190. }, //职位详情数据
  191. id: 0, // 使用 marker点击事件 需要填写id
  192. title: 'map',
  193. latitude: 39.909,
  194. longitude: 116.39742,
  195. resume_id: "",
  196. covers: [{
  197. id:1,
  198. latitude: 39.909,
  199. longitude: 116.39742,
  200. // iconPath: '../../static/images/addressicon.png'
  201. width:20,
  202. height:30
  203. }],
  204. is_profile: "",
  205. job_id: ""
  206. }
  207. },
  208. onLoad(options) {
  209. this.is_profile = uni.getStorageSync("is_profile")
  210. this.zid = options.id
  211. this.getDetail()
  212. this.resumeDetail()
  213. },
  214. methods: {
  215. resumeDetail() {
  216. resumeDetail().then(res => {
  217. console.log(res);
  218. uni.setStorageSync("resume_id", res.data.id)
  219. this.resume_id = res.data.id
  220. res.data.job_intention.forEach(item => {
  221. this.job_id_list.push(item.category_job_id)
  222. })
  223. })
  224. },
  225. orderCreate() {
  226. orderCreate({
  227. resume_id: this.resume_id,
  228. job_ids: this.job_id,
  229. }).then(res => {
  230. if (res.code == 1) {
  231. this.$u.toast("投递成功")
  232. }
  233. })
  234. },
  235. todetails(){
  236. uni.navigateTo({
  237. url: "/pagesD/resume"
  238. })
  239. },
  240. call() {
  241. if (this.data.collectjob == null) {
  242. this.data.collectjob = "1"
  243. this.$u.toast("收藏成功")
  244. collect({
  245. id: this.zid,
  246. status: 1
  247. }).then((res) => {
  248. })
  249. } else {
  250. this.data.collectjob = null
  251. this.$u.toast("取消收藏")
  252. collect({
  253. id: this.zid,
  254. status: 2
  255. }).then((res) => {
  256. })
  257. }
  258. },
  259. open(type) {
  260. if (this.is_profile == 0) {
  261. this.show = true
  262. } else {
  263. if (type == 1) {
  264. this.orderCreate()
  265. } else {
  266. console.log(this.data);
  267. let that = this
  268. let id = conn.getUniqueId(); // 生成本地消息id
  269. let msg = new WebIM.message('txt', id); // 创建文本消息
  270. msg.set({
  271. type: "txt",
  272. msg: "职位消息",
  273. to: that.data.manager_user_no,
  274. chatType: "singleChat",
  275. ext: {
  276. "type": "pos",
  277. "order": {
  278. "title": that.data.job_name,
  279. "city": that.data.work_city,
  280. "salary": Number(that.data.salary_min) + '-' + Number(that.data.salary_max),
  281. "item_url": that.data.id
  282. }
  283. },
  284. success: function(id, serverMsgId) {
  285. uni.navigateTo({
  286. url: "/pagesC/chat?user_no=" + that.data.manager_user_no
  287. })
  288. },
  289. fail: function(e) {
  290. console.log("发送消息失败");
  291. }
  292. });
  293. conn.send(msg.body);
  294. }
  295. }
  296. },
  297. close() {
  298. this.show = false
  299. },
  300. // 获取职位详情
  301. getDetail() {
  302. getdetail({
  303. id: this.zid
  304. }).then((res) => {
  305. if (res.code == 1) {
  306. this.job_id = res.data.id
  307. this.data = res.data
  308. this.covers[0].latitude = Number(res.data.company.lat)
  309. this.covers[0].longitude = Number(res.data.company.lng)
  310. this.latitude = Number(res.data.company.lat)
  311. this.longitude = Number(res.data.company.lng)
  312. } else {
  313. this.$u.toast(res.msg)
  314. }
  315. })
  316. },
  317. //跳转到公司详情
  318. toGsinfo(id) {
  319. uni.navigateTo({
  320. url: "/pagesB/gongsi-info?id=" + id
  321. })
  322. }
  323. }
  324. }
  325. </script>
  326. <style lang="scss" scoped>
  327. .back1 {
  328. background: url(../static/images/pop.png) no-repeat;
  329. // width: 556rpx;height: 404rpx;
  330. text-align: center;
  331. padding: 56rpx 46rpx 42rpx 46rpx;
  332. box-sizing: border-box;
  333. background-size: 100% 100%;
  334. .font1 {
  335. font-size: 36rpx;
  336. font-family: PingFangSC-Medium, PingFang SC;
  337. font-weight: 500;
  338. color: #222222;
  339. }
  340. .font2 {
  341. font-size: 26rpx;
  342. font-family: PingFangSC-Regular, PingFang SC;
  343. font-weight: 400;
  344. color: #555555;
  345. }
  346. .btn1 {
  347. width: 220rpx;
  348. height: 84rpx;
  349. background: #F3F3F3;
  350. border-radius: 8rpx;
  351. font-size: 32rpx;
  352. font-family: PingFangSC-Regular, PingFang SC;
  353. font-weight: 400;
  354. color: #333333;
  355. }
  356. .btn2 {
  357. width: 220rpx;
  358. height: 84rpx;
  359. background: #0C66C2;
  360. border-radius: 8rpx;
  361. font-size: 32rpx;
  362. font-family: PingFangSC-Regular, PingFang SC;
  363. font-weight: 400;
  364. color: #FFFFFF;
  365. }
  366. }
  367. .bottom {
  368. width: 750rpx;
  369. position: fixed;
  370. bottom: 0;
  371. left: 0;
  372. height: 118rpx;
  373. padding: 0 32rpx;
  374. background: #fff;
  375. box-sizing: border-box;
  376. border-top: 2rpx solid #F4F4F4;
  377. .font {
  378. height: 34rpx;
  379. font-size: 24rpx;
  380. font-family: PingFangSC-Regular, PingFang SC;
  381. font-weight: 400;
  382. }
  383. .btn11 {
  384. width: 236rpx;
  385. height: 88rpx;
  386. background: #FA6400;
  387. border-radius: 12rpx;
  388. font-size: 32rpx;
  389. font-family: PingFangSC-Medium, PingFang SC;
  390. font-weight: 500;
  391. color: #FFFFFF;
  392. line-height: 88rpx;
  393. }
  394. .btn22 {
  395. width: 344rpx;
  396. height: 88rpx;
  397. background: #0C66C2;
  398. border-radius: 12rpx;
  399. font-size: 32rpx;
  400. font-family: PingFangSC-Medium, PingFang SC;
  401. font-weight: 500;
  402. color: #FFFFFF;
  403. line-height: 88rpx;
  404. }
  405. }
  406. .titleb {
  407. height: 50rpx;
  408. font-size: 36rpx;
  409. font-family: PingFangSC-Medium, PingFang SC;
  410. font-weight: 500;
  411. color: #222222;
  412. line-height: 50rpx;
  413. }
  414. .concant {
  415. padding: 44rpx 32rpx 130rpx;
  416. min-height: 100vh;
  417. .address1 {
  418. margin-top: 40rpx;
  419. .font {
  420. font-size: 30rpx;
  421. font-family: PingFangSC-Regular, PingFang SC;
  422. font-weight: 400;
  423. color: #555555;
  424. }
  425. .border {
  426. margin-top: 32rpx;
  427. padding: 34rpx 0;
  428. border-top: 2rpx solid #F4F4F4;
  429. .font2 {
  430. font-size: 26rpx;
  431. font-family: PingFangSC-Regular, PingFang SC;
  432. font-weight: 400;
  433. color: #555555;
  434. text :first-child {
  435. // margin-left: 0 !important;
  436. margin-right: 20rpx;
  437. }
  438. text :nth-child(2) {
  439. margin: 0 20rpx;
  440. }
  441. text :last-child {
  442. margin: 20rpx;
  443. }
  444. }
  445. }
  446. }
  447. .introduce {
  448. margin-top: 40rpx;
  449. .font {
  450. font-size: 30rpx;
  451. font-family: PingFangSC-Regular, PingFang SC;
  452. font-weight: 400;
  453. color: #555555;
  454. }
  455. }
  456. .top {
  457. .title {
  458. font-size: 48rpx;
  459. font-family: PingFangSC-Medium, PingFang SC;
  460. font-weight: 500;
  461. color: #222222;
  462. }
  463. .money {
  464. font-size: 32rpx;
  465. font-family: SFPro-Medium, SFPro;
  466. font-weight: 500;
  467. color: #0C66C2;
  468. }
  469. .address {
  470. margin: 20rpx 0 28rpx -20rpx;
  471. font-size: 28rpx;
  472. font-family: PingFangSC-Regular, PingFang SC;
  473. font-weight: 400;
  474. color: #444444;
  475. text :first-child {
  476. margin-left: 0 !important;
  477. margin-right: 20rpx;
  478. }
  479. text :nth-child(2) {
  480. margin: 0 20rpx;
  481. }
  482. text :last-child {
  483. margin: 20rpx;
  484. }
  485. }
  486. .hint {
  487. background: #FFE9DF;
  488. border-radius: 12rpx;
  489. margin-bottom: 28rpx;
  490. display: flex;
  491. align-items: center;
  492. padding: 16rpx 0 16rpx 24rpx;
  493. .font1 {
  494. font-size: 26rpx;
  495. font-family: PingFangSC-Medium, PingFang SC;
  496. font-weight: 500;
  497. color: #FF5335;
  498. margin: 0 20rpx 0 16rpx;
  499. }
  500. .font2 {
  501. font-size: 26rpx;
  502. font-family: PingFangSC-Regular, PingFang SC;
  503. font-weight: 400;
  504. color: #444444;
  505. }
  506. }
  507. }
  508. .hr {
  509. margin-top: 28rpx;
  510. border-bottom: 2rpx solid #F4F4F4;
  511. border-top: 2rpx solid #F4F4F4;
  512. height: 150rpx;
  513. padding: 26rpx 0 28rpx;
  514. .font1 {
  515. height: 42rpx;
  516. font-size: 30rpx;
  517. font-family: PingFangSC-Medium, PingFang SC;
  518. font-weight: 500;
  519. color: #444444;
  520. line-height: 42rpx;
  521. }
  522. .font2 {
  523. height: 34rpx;
  524. font-size: 24rpx;
  525. font-family: PingFangSC-Regular, PingFang SC;
  526. font-weight: 400;
  527. color: #666666;
  528. line-height: 34rpx;
  529. }
  530. }
  531. .position {
  532. margin-top: 34rpx;
  533. .font {
  534. height: 42rpx;
  535. font-size: 30rpx;
  536. font-family: PingFangSC-Regular, PingFang SC;
  537. font-weight: 400;
  538. color: #555555;
  539. margin-top: 24rpx;
  540. display: block;
  541. }
  542. }
  543. }
  544. </style>