detail.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644
  1. <template>
  2. <view class="content">
  3. <view class="top">
  4. <u-navbar title=" " @leftClick="leftClick" height="44px" bgColor="rgb(255,255,255,0)" :placeholder="true">
  5. </u-navbar>
  6. <view class="hflex acenter jbetween">
  7. <view >
  8. <view class="top_name">{{pageData.name}}</view>
  9. <view class="scale">{{pageData.scale}}</view>
  10. </view>
  11. <image :src="pageData.img" mode="aspectFill" class="top_avatar"></image>
  12. </view>
  13. </view>
  14. <view class="box">
  15. <view class="hflex acenter jcenter tabs">
  16. <view class="tabs_item" :class="tab_active == 1 ? 'tab_active' :''" @click="changeTab(1)">公司信息</view>
  17. <view class="tabs_item" :class="tab_active == 2 ? 'tab_active' :''" @click="changeTab(2)">职位信息</view>
  18. </view>
  19. <view class="box1" v-if="tab_active == 1">
  20. <view class="title cell">公司简介</view>
  21. <view class="cell">
  22. <u-read-more closeText="展开" :shadowStyle="shadowStyle" ref="uReadMore" :toggle="true" openText="收起" showHeight="66" backgroundImage="none">
  23. <u-parse :content="pageData.company.company_info" @load="load"></u-parse>
  24. </u-read-more>
  25. </view>
  26. <view class="title cell">公司地址</view>
  27. <view class="cell">
  28. <view class="text">{{pageData.company.company_address}}</view>
  29. </view>
  30. <view class="title cell">公司环境</view>
  31. <view class="cell">
  32. <block v-for="(item,index) in pageData.company.company_environment" :key="index">
  33. <image :src="item" mode="aspectFill" class="img"></image>
  34. </block>
  35. </view>
  36. <view class="title cell">产品介绍</view>
  37. <view class="cell">
  38. <view class="text">{{pageData.company.company_product}}</view>
  39. </view>
  40. </view>
  41. <view class="list" v-if="tab_active == 2">
  42. <block v-for="(item,index) in pageData.position" :key="index">
  43. <view class="list_item">
  44. <view class="hflex acenter jbetween">
  45. <view class="item_title">{{item.title}}</view>
  46. <view class="item_blue">{{item.salary}}·{{item.monthly}}薪</view>
  47. </view>
  48. <view class="hflex acenter" style="padding: 20rpx 0 24rpx;">
  49. <view class="item_box">{{item.city}}</view>
  50. <view class="item_box">{{item.education}}</view>
  51. <view class="item_box">{{item.experience}}</view>
  52. </view>
  53. <view class="item_name">{{item.company_name}}</view>
  54. <view class="hflex acenter jbetween" style="padding-top: 16rpx;">
  55. <view class="hflex acenter">
  56. <image class="item_avatar" :src="item.user.avatar"></image>
  57. <view class="user_name">{{item.user.position}}·{{item.user.name}}</view>
  58. </view>
  59. <view class="user_right">{{item.user.city}}·{{item.user.area}}</view>
  60. </view>
  61. </view>
  62. </block>
  63. </view>
  64. </view>
  65. <view class="bottom hflex acenter jbetween">
  66. <view class="vflex acenter" @click="collect">
  67. <u-icon name="star" color="#444444" size="20" v-if="pageData.is_collect == 0"></u-icon>
  68. <u-icon name="star-fill" color="#506DFF" size="20" v-else></u-icon>
  69. <view class="text_style1">收藏</view>
  70. </view>
  71. <view class="vflex acenter" @click="share('Poster1')">
  72. <image src="/static/images/comment/share.png" mode="" class="bottom_img"></image>
  73. <view class="text_style1">分享</view>
  74. </view>
  75. <view class="bottom_btn">私信聊聊</view>
  76. </view>
  77. <scroll-view class="share_content" :scroll-y="true" :class="share_show?'':'share_content1'">
  78. <!-- <view style="width: 100%;height: 168rpx;"></view> -->
  79. <view class="share_box vflex">
  80. <text class="share_name Poster1" style="margin: 40rpx 0 28rpx;" :data-enode="pageData.name">{{pageData.name}}</text>
  81. <text class="share_label Poster1" style="margin: 0 0 16rpx;" data-enode="船厂简介">船厂简介</text>
  82. <view class="share_text Poster1" style="margin: 0 0 24rpx;" data-etype="textarea" :data-enode="pageData.company.company_info">{{pageData.company.company_info}}</view>
  83. <text class="share_label Poster1" style="margin: 0 0 16rpx;" data-enode="船厂介绍">船厂介绍</text>
  84. <view class="share_text Poster1" style="margin: 0 0 42rpx;" data-etype="textarea" :data-enode="pageData.company.company_product">{{pageData.company.company_product}}</view>
  85. <view class="hflex acenter share_text jcenter Poster1" style=" margin: 0 190rpx 12rpx;" data-enode="长按或扫码查看">长按或扫码查看</view>
  86. <view style="width: 100%;" class="vflex acenter jcenter">
  87. <image class="Poster1" style="width: 25rpx;height: 20rpx;" :data-enode="style.img1" data-etype="image" :src="style.img1"></image>
  88. <image class="Poster1" style="width: 100%;height: 2rpx;margin: 30rpx 0;" :data-enode="style.img2" data-etype="image" :src="style.img2"></image>
  89. </view>
  90. <view class="hflex acenter jbetween">
  91. <view class="vflex">
  92. <view class="share_name Poster1" style="margin: 54rpx 0 20rpx;" data-enode="船百知">船百知</view>
  93. <view class="share_text Poster1" style="margin: 0 0 36rpx;" data-enode="船百知伴你一起杨帆启航,驶向成功彼岸">船百知伴你一起杨帆启航,驶向成功彼岸</view>
  94. </view>
  95. <image class="Poster1" data-etype="image" :data-enode="pageData.img" :src="pageData.img" style="width: 136rpx;height: 136rpx;"></image>
  96. </view>
  97. </view>
  98. <evils-el-poster width="325" height="467" @on-error="onError" :list="list" backgroundColor="rgb(255, 255, 255)" @on-success="onSuccess" ref="Eposter"></evils-el-poster>
  99. <view class="share_bottom">
  100. <view class="hflex acenter jbetween">
  101. <button class="vflex acenter jcenter bottom_item" open-type="share">
  102. <image src="/static/images/comment/wx.png" class="item_icon"></image>
  103. <view class="item_text">微信好友</view>
  104. </button>
  105. <button class="vflex acenter jcenter bottom_item" open-type="share">
  106. <image src="/static/images/comment/moments.png" class="item_icon"></image>
  107. <view class="item_text">朋友圈</view>
  108. </button>
  109. <view class="vflex acenter jcenter bottom_item" @click="saveImg">
  110. <image src="/static/images/comment/download.png" class="item_icon"></image>
  111. <view class="item_text">保存图片</view>
  112. </view>
  113. </view>
  114. <view class="share_cancel" @click="close">取消</view>
  115. </view>
  116. </scroll-view>
  117. </view>
  118. </template>
  119. <script>
  120. import $api from '@/static/js/api.js'
  121. var that = ''
  122. export default {
  123. data() {
  124. return {
  125. list: [],
  126. style: {
  127. img1: '/static/images/comment/down2.png',
  128. img2: '/static/images/comment/line.png',
  129. },
  130. pageData: {
  131. img: '/static/images/mine/avatar1.jpg',
  132. name: '江南造船厂',
  133. scale: '20-99人',
  134. company: {
  135. company_info: '2012年4月22日正式上线,推崇品质、青春、时尚的品牌内涵2012年4月22日正式上线,推崇品质、青春、时尚的品牌内涵2012年4月22日正式上线,推崇品质、青春、时尚的品牌内涵2012年4月22日正式上线,推崇品质、青春、时尚的品牌内涵2012年4月22日正式上线,推崇品质、青春、时尚的品牌内涵2012年4月22日正式上线,推崇品质、青春、时尚的品牌内涵',
  136. company_address: '江苏省南京市浦口区东方万汇城23号楼1单元2203',
  137. company_environment: ['/static/images/mine/avatar1.jpg','/static/images/mine/avatar1.jpg','/static/images/mine/avatar1.jpg'],
  138. company_product: ' 根据《中华人民共和国价格法》标准等,自2022年4月30日起执行。根据《中华人民共和国价格法》标准等,自2022年4月30日起执行。根据《中华人民共和国价格法》标准等,自2022年4月30日起执行。根据《中华人民共和国价格法》标准等,自2022年4月30日起执行。根据《中华人民共和国价格法》标准等,自2022年4月30日起执行。根据《中华人民共和国价格法》标准等,自2022年4月30日起执行。'
  139. },
  140. position: [
  141. {
  142. id: 0,
  143. title: '船舶设计师',
  144. salary: '13-15K',
  145. monthly: '13',
  146. city: '北京',
  147. education: '本科',
  148. experience: '经验不限',
  149. company_name: '北京文化旅游产业发展集团有限公司',
  150. user: {
  151. avatar: '/static/images/mine/avatar1.jpg',
  152. name: '江女士',
  153. position: '行政总监',
  154. city: '北京市',
  155. area: '东城区',
  156. },
  157. },
  158. {
  159. id: 0,
  160. title: '船舶设计师',
  161. salary: '13-15K',
  162. monthly: '13',
  163. city: '北京',
  164. education: '本科',
  165. experience: '经验不限',
  166. company_name: '北京文化旅游产业发展集团有限公司',
  167. user: {
  168. avatar: '/static/images/mine/avatar1.jpg',
  169. name: '江女士',
  170. position: '行政总监',
  171. city: '北京市',
  172. area: '东城区',
  173. },
  174. },
  175. {
  176. id: 0,
  177. title: '船舶设计师',
  178. salary: '13-15K',
  179. monthly: '13',
  180. city: '北京',
  181. education: '本科',
  182. experience: '经验不限',
  183. company_name: '北京文化旅游产业发展集团有限公司',
  184. user: {
  185. avatar: '/static/images/mine/avatar1.jpg',
  186. name: '江女士',
  187. position: '行政总监',
  188. city: '北京市',
  189. area: '东城区',
  190. },
  191. }
  192. ],
  193. is_collect: 0
  194. },
  195. tab_active: 1,
  196. shadowStyle: {
  197. backgroundImage: "none",
  198. },
  199. share_show: false,
  200. tempImage:''
  201. }
  202. },
  203. onLoad() {
  204. that = this
  205. },
  206. onShareAppMessage(res) {
  207. console.log(res);
  208. if (res.from === 'button') {// 来自页面内分享按钮
  209. console.log(res.target)
  210. }
  211. return {
  212. title: '船百知', //分享的名称
  213. }
  214. },
  215. onShareTimeline(res) {
  216. console.log(res);
  217. return {
  218. title: '船百知',
  219. type: 0,
  220. summary: "",
  221. }
  222. },
  223. methods: {
  224. // 返回
  225. leftClick() {
  226. console.log('返回');
  227. $api.jump(-1)
  228. },
  229. // 切换tabs
  230. changeTab(index) {
  231. that.tab_active = index
  232. },
  233. load() {
  234. this.$refs.uReadMore.init();
  235. },
  236. // 收藏
  237. collect() {
  238. if(that.pageData.is_collect == 0) {
  239. that.pageData.is_collect = 1
  240. $api.info('收藏成功')
  241. } else {
  242. that.pageData.is_collect = 0
  243. $api.info('取消收藏')
  244. }
  245. },
  246. share(elClass) {
  247. let view = uni.createSelectorQuery().in(this).select(".Poster1");
  248. view.fields({
  249. size: true,
  250. rect: true,
  251. scrollOffset: true
  252. }, data => {
  253. console.log("得到节点信息" + JSON.stringify(data));
  254. console.log("节点的宽为" + data.width);
  255. }).exec();
  256. that.share_show = true
  257. that.$refs.Eposter.createForElRect(elClass,false)
  258. },
  259. close() {
  260. that.share_show = false
  261. },
  262. onSuccess(e) {
  263. console.log(e);
  264. that.tempImage = e
  265. },
  266. onError(err) {
  267. console.log('发生错误');
  268. console.log(err);
  269. },
  270. saveImg() {
  271. console.log(that.tempImage);
  272. uni.authorize({
  273. scope: 'scope.writePhotosAlbum',
  274. success() {
  275. uni.saveImageToPhotosAlbum({
  276. filePath: that.tempImage,
  277. success: function () {
  278. console.log('save success');
  279. }
  280. });
  281. }
  282. })
  283. },
  284. },
  285. }
  286. </script>
  287. <style lang="scss" scoped>
  288. .content {
  289. position: relative;
  290. .top {
  291. background: url('../../../static/images/comment/nav_bg.png') no-repeat;
  292. background-size: 100%;
  293. box-sizing: border-box;
  294. padding: 30rpx;
  295. height: 540rpx;
  296. .top_name {
  297. font-size: 36rpx;
  298. font-weight: 500;
  299. color: #222222;
  300. line-height: 50rpx;
  301. }
  302. .scale {
  303. font-size: 24rpx;
  304. font-weight: 400;
  305. color: #222222;
  306. line-height: 34rpx;
  307. }
  308. .top_avatar {
  309. width: 116rpx;
  310. height: 116rpx;
  311. border-radius: 16rpx;
  312. }
  313. }
  314. .box {
  315. position: absolute;
  316. left: 0;
  317. top: 344rpx;
  318. width: 100%;
  319. min-height: calc(100vh - 256rpx);
  320. background: #FFFFFF;
  321. border-radius: 40rpx 40rpx 0px 0px;
  322. .tabs {
  323. width: 100%;
  324. padding: 36rpx 0 40rpx;
  325. .tabs_item {
  326. font-size: 32rpx;
  327. font-weight: 500;
  328. color: #959595;
  329. line-height: 44rpx;
  330. width: 50%;
  331. text-align: center;
  332. }
  333. .tab_active {
  334. position: relative;
  335. color: #222222;
  336. }
  337. .tab_active::after {
  338. content: "";
  339. position: absolute;
  340. bottom: -8rpx;
  341. left: 39%;
  342. width: 80rpx;
  343. height: 4rpx;
  344. background: #506DFF;
  345. border-radius: 4rpx;
  346. }
  347. }
  348. .box1 {
  349. width: 100%;
  350. box-sizing: border-box;
  351. padding: 0 30rpx;
  352. margin-bottom: 186rpx;
  353. .title {
  354. font-size: 36rpx;
  355. font-weight: 500;
  356. color: #222222;
  357. line-height: 50rpx;
  358. }
  359. .cell {
  360. padding: 14rpx 0;
  361. }
  362. .text {
  363. font-size: 28rpx;
  364. font-weight: 400;
  365. color: #555555;
  366. line-height: 40rpx;
  367. }
  368. .img {
  369. width: 220rpx;
  370. height: 220rpx;
  371. border-radius: 12rpx;
  372. margin: 0 16rpx 20rpx 0;
  373. }
  374. .img:nth-child(3n+3) {
  375. margin: 0 0 20rpx;
  376. }
  377. }
  378. .list {
  379. box-sizing: border-box;
  380. width: 100%;
  381. padding: 0 30rpx;
  382. .list_item {
  383. width: 100%;
  384. padding: 28rpx 0 20rpx;
  385. border-top: 1rpx solid #F4F4F4;
  386. .item_title {
  387. font-size: 32rpx;
  388. font-weight: 600;
  389. color: #222222;
  390. }
  391. .item_blue {
  392. font-size: 32rpx;
  393. font-weight: bold;
  394. color: #506DFF;
  395. }
  396. .item_box {
  397. height: 40rpx;
  398. background: #F0F2F6;
  399. border-radius: 2px;
  400. box-sizing: border-box;
  401. padding: 4rpx 18rpx;
  402. font-size: 22rpx;
  403. font-weight: 400;
  404. color: #444444;
  405. margin-right: 20rpx;
  406. }
  407. .item_name {
  408. font-size: 24rpx;
  409. font-weight: 400;
  410. color: #666666;
  411. }
  412. .item_avatar {
  413. width: 40rpx;
  414. height: 40rpx;
  415. border-radius: 50%;
  416. margin-right: 12rpx;
  417. }
  418. .item_avatar1 {
  419. width: 88rpx;
  420. height: 88rpx;
  421. border-radius: 50%;
  422. margin-right: 20rpx;
  423. }
  424. .item_right1 {
  425. }
  426. .text_style1 {
  427. font-size: 22rpx;
  428. font-weight: 400;
  429. color: #666666;
  430. padding: 12rpx 0;
  431. }
  432. .item_box1 {
  433. margin-top: 8rpx;
  434. background: #EDF0FF;
  435. border-radius: 8rpx;
  436. box-sizing: border-box;
  437. padding: 4rpx 16rpx;
  438. font-size: 24rpx;
  439. font-weight: 400;
  440. color: #506DFF;
  441. }
  442. .item_btn1 {
  443. width: 140rpx;
  444. height: 52rpx;
  445. background: #F1F3FF;
  446. border-radius: 28rpx;
  447. font-size: 26rpx;
  448. font-weight: 500;
  449. color: #506DFF;
  450. line-height: 52rpx;
  451. text-align: center;
  452. }
  453. .user_name {
  454. font-size: 20rpx;
  455. font-weight: 400;
  456. color: #333333;
  457. }
  458. .user_right {
  459. font-size: 20rpx;
  460. font-weight: 400;
  461. color: #A1A1A1;
  462. }
  463. }
  464. }
  465. }
  466. .bottom {
  467. width: 100%;
  468. z-index: 9;
  469. position: fixed;
  470. bottom: 0;
  471. height: 166rpx;
  472. background: #FFFFFF;
  473. box-sizing: border-box;
  474. padding: 8rpx 30rpx 74rpx;
  475. .bottom_btn {
  476. width: 530rpx;
  477. height: 84rpx;
  478. background: #506DFF;
  479. border-radius: 42rpx;
  480. font-size: 36rpx;
  481. font-weight: 500;
  482. color: #FFFFFF;
  483. text-align: center;
  484. line-height: 84rpx;
  485. }
  486. .bottom_btn1 {
  487. width: 204rpx;
  488. height: 84rpx;
  489. border-radius: 21px;
  490. border: 1px solid #506DFF;
  491. font-size: 36rpx;
  492. font-weight: 500;
  493. color: #506DFF;
  494. text-align: center;
  495. line-height: 84rpx;
  496. margin-right: 20rpx;
  497. }
  498. .bottom_btn2 {
  499. width: 300rpx;
  500. height: 84rpx;
  501. border-radius: 21px;
  502. background: #506DFF;
  503. color: #FFFFFF;
  504. font-size: 36rpx;
  505. font-weight: 500;
  506. text-align: center;
  507. line-height: 84rpx;
  508. }
  509. .bottom_img {
  510. width: 40rpx;
  511. height: 40rpx;
  512. }
  513. }
  514. .share_content {
  515. position: fixed;
  516. top: 0;
  517. left: 0;
  518. z-index: 99;
  519. width: 100vw;
  520. height: 100vh;
  521. background: rgba(0,0,0,0.5);
  522. backdrop-filter: blur(5px);
  523. padding: 0 0 0;
  524. .share_box {
  525. margin: 130rpx auto 0;
  526. width: 650rpx;
  527. background: #FFFFFF;
  528. border-radius: 20rpx;
  529. box-sizing: border-box;
  530. padding: 0 40rpx;
  531. .share_name {
  532. width: 100%;
  533. font-size: 32rpx;
  534. font-weight: 500;
  535. color: #222222;
  536. line-height: 44rpx;
  537. }
  538. .share_label {
  539. width: 100%;
  540. font-size: 28rpx;
  541. font-weight: 400;
  542. color: #222222;
  543. line-height: 40rpx;
  544. }
  545. .share_text {
  546. width: 100%;
  547. font-size: 24rpx;
  548. font-weight: 400;
  549. color: #999999;
  550. line-height: 34rpx;
  551. text-overflow: ellipsis;
  552. overflow: hidden;
  553. display: -webkit-box;
  554. -webkit-box-orient: vertical;
  555. box-orient: vertical;
  556. line-clamp: 5;
  557. -webkit-line-clamp: 5;
  558. }
  559. .box_bottom {
  560. width: 100%;
  561. padding: 34rpx 0 16rpx;
  562. border-top: 1rpx dashed #C3C3C3;
  563. .bottom_left1 {
  564. font-size: 32rpx;
  565. font-weight: 500;
  566. color: #222222;
  567. line-height: 44rpx;
  568. padding-bottom: 20rpx;
  569. }
  570. .bottom_left2 {
  571. font-size: 22rpx;
  572. font-weight: 400;
  573. color: #999999;
  574. line-height: 32rpx;
  575. }
  576. .bottom_right {
  577. width: 136rpx;
  578. height: 136rpx;
  579. }
  580. }
  581. }
  582. .canvas {
  583. position: absolute;
  584. top: 188rpx;
  585. left: 50rpx;
  586. width: 650rpx;
  587. min-height: 494rpx;
  588. background: #FFFFFF;
  589. border-radius: 20rpx;
  590. }
  591. .share_bottom {
  592. position: fixed;
  593. bottom: 0;
  594. width: 100%;
  595. height: 388rpx;
  596. background: #F5F7FF;
  597. border-radius: 40rpx 40rpx 0px 0px;
  598. .bottom_item {
  599. width: 33%;
  600. margin: 50rpx 0 90rpx;
  601. border: none !important;
  602. background-color: #F5F7FF !important;
  603. .item_icon {
  604. width: 76rpx;
  605. height: 76rpx;
  606. }
  607. .item_text {
  608. font-size: 26rpx;
  609. font-weight: 400;
  610. color: #333333;
  611. line-height: 36rpx;
  612. margin-top: 12rpx;
  613. }
  614. }
  615. button::after {
  616. border: none !important;
  617. }
  618. .share_cancel {
  619. width: 100%;
  620. text-align: center;
  621. font-size: 32rpx;
  622. font-weight: 400;
  623. color: #333333;
  624. line-height: 44rpx;
  625. }
  626. }
  627. }
  628. .share_content1 {
  629. z-index: -99 !important;
  630. }
  631. }
  632. </style>