特易招,招聘小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

311 lines
6.4 KiB

4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
2 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
2 months ago
4 months ago
4 months ago
4 months ago
2 months ago
4 months ago
2 months ago
4 months ago
2 months ago
4 months ago
4 months ago
4 months ago
4 months ago
2 months ago
4 months ago
4 months ago
4 months ago
2 months ago
4 months ago
4 months ago
2 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
2 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
2 months ago
4 months ago
  1. <template>
  2. <view class="page">
  3. <navbar title="工作详情" leftClick @leftClick="$utils.navigateBack" />
  4. <view class="box">
  5. <view class="title">
  6. {{ detail.title }}
  7. </view>
  8. <view class="price">
  9. {{ detail.salaryLow }}-{{ detail.salaryUp }}
  10. </view>
  11. <view class="line">
  12. <!-- <view>
  13. <image src="../static/work/address.png" mode=""></image>
  14. {{ detail.workAge }}
  15. </view> -->
  16. <view>
  17. <image src="../static/work/g.png" mode=""></image>
  18. {{ detail.workAge }}
  19. </view>
  20. <view>
  21. <image src="../static/work/x.png" mode=""></image>
  22. {{ detail.qulification }}
  23. </view>
  24. </view>
  25. <view class="line">
  26. 该职位位于{{ $dayjs(detail.createTime).format('YYYY-MM-DD') }}
  27. </view>
  28. <view class="userHead">
  29. <userHead :headImage="detail.headImage"
  30. :name="detail.name" :phoneCall="detail.phone"/>
  31. </view>
  32. <view class="address">
  33. <view class="title2">
  34. 工作地址
  35. </view>
  36. <!--
  37. 深圳罗湖区深圳市百货广场大厦罗湖区百货广场大厦东深圳罗湖区深圳市百货广场大厦罗湖区百货广场大厦东
  38. -->
  39. <view class="line"
  40. style="justify-content: space-between;">
  41. {{ detail.workAddress }}
  42. <uv-icon
  43. size="30rpx"
  44. color="666"
  45. name="arrow-right"
  46. ></uv-icon>
  47. </view>
  48. <view class="tag-list">
  49. <view>
  50. 距您14.6千米
  51. </view>
  52. </view>
  53. </view>
  54. <view class="info">
  55. <view class="title2">
  56. <text>职位详情</text>
  57. <view>
  58. <uv-icon
  59. size="30rpx"
  60. color="666"
  61. name="star"
  62. ></uv-icon>
  63. 收藏
  64. </view>
  65. </view>
  66. <view class="tag-list">
  67. <view
  68. :key="i"
  69. v-for="(t, i) in detail.tab && detail.tab.split('、')">
  70. {{ t }}
  71. </view>
  72. </view>
  73. <!-- <view
  74. class="text"
  75. v-html="text">
  76. </view> -->
  77. <view
  78. class="text">
  79. <uv-parse :content="detail.workDetail"></uv-parse>
  80. </view>
  81. </view>
  82. </view>
  83. <view class="boss-box"
  84. @click="$utils.navigateTo('/pages_order/work/bossDetail?id=1')">
  85. <view class="image">
  86. <image src="../static/work/g.png" mode=""></image>
  87. </view>
  88. <view class="shop-box"
  89. >
  90. <view class="title">
  91. 广州有限公司
  92. </view>
  93. <view class="desc">
  94. 天使论A
  95. </view>
  96. </view>
  97. <view class="arrow-right">
  98. <uv-icon
  99. name="arrow-right"
  100. size="40rpx"
  101. color="#5baaff"
  102. ></uv-icon>
  103. </view>
  104. </view>
  105. <view class="list-work">
  106. <view class="text">
  107. 推荐职位<text>19</text>
  108. </view>
  109. <view style="margin: 20rpx;"
  110. @click="$utils.navigateTo('/pages_order/work/userDetail?id=' + item.id)"
  111. :key="index"
  112. v-for="(item, index) in list">
  113. <workItem :item="item"/>
  114. </view>
  115. </view>
  116. </view>
  117. </template>
  118. <script>
  119. let text = `岗位要求
  120. 1全日制大专以上学历艺术设计类相关专业;
  121. 2两年以上平面品牌视觉设计等相关工作经验能独立完成项目的设计工作 3C数码/个护健 类产品服务经验优先有乙方工作经验佳;
  122. 3具备一定的设计提案能力能完整的呈现设计思路与创意能清晰的表达设计逻辑与思考;
  123. 4热爱设计平面基本功扎实拥有优良的审美与创意想法对版式色彩把控能力强;对工作富有责任心具备团队沟通与协作能力;
  124. 5精通 PSAICDR 等平面设计软件能独立完成日常平面设计工作内容熟练使用 PPT/Keynote能完成提案内容的材料美化工作
  125. `
  126. import userHead from '../components/user/userHead.vue'
  127. import mixinList from '@/mixins/list.js'
  128. import workItem from '@/components/list/workList/workItem.vue'
  129. export default {
  130. mixins : [mixinList],
  131. components : {
  132. userHead,
  133. workItem,
  134. },
  135. data() {
  136. return {
  137. text : '',
  138. id : 0,
  139. detail : {},
  140. collectionFlag : false,
  141. mixinsListApi : 'employeeQueryJobList',
  142. }
  143. },
  144. onLoad({id}) {
  145. this.id = id
  146. },
  147. onShow() {
  148. this.text = this.$utils.stringFormatHtml(text)
  149. this.getDetail()
  150. },
  151. methods: {
  152. getDetail(){
  153. let data = {
  154. jobId : this.id
  155. }
  156. if(uni.getStorageSync('token')){
  157. data.token = uni.getStorageSync('token')
  158. }
  159. this.$api('employeeQueryJobById', data, res => {
  160. if(res.code == 200){
  161. this.detail = res.result.employJob
  162. this.collectionFlag = res.result.collectionFlag
  163. }
  164. })
  165. },
  166. }
  167. }
  168. </script>
  169. <style scoped lang="scss">
  170. .page{
  171. min-height: 100vh;
  172. .box{
  173. padding: 30rpx;
  174. background-color: #fff;
  175. .title{
  176. font-size: 34rpx;
  177. font-weight: 900;
  178. padding-bottom: 20rpx;
  179. }
  180. .title2{
  181. font-size: 28rpx;
  182. font-weight: 900;
  183. display: flex;
  184. justify-content: space-between;
  185. align-items: center;
  186. view{
  187. display: flex;
  188. align-items: center;
  189. justify-content: center;
  190. }
  191. }
  192. .price{
  193. font-size: 30rpx;
  194. font-weight: 900;
  195. color: $uni-color;
  196. }
  197. .line{
  198. display: flex;
  199. font-size: 24rpx;
  200. color: #666666;
  201. margin-top: 30rpx;
  202. image{
  203. width: 30rpx;
  204. height: 30rpx;
  205. }
  206. &>view{
  207. margin-right: 50rpx;
  208. display: flex;
  209. justify-content: center;
  210. align-items: center;
  211. }
  212. }
  213. .userHead{
  214. padding: 50rpx 0;
  215. border-bottom: 1px solid #00000011;
  216. }
  217. .address{
  218. padding: 30rpx 0;
  219. .line{
  220. margin-top: 20rpx;
  221. }
  222. }
  223. .info{
  224. .text{
  225. font-size: 24rpx;
  226. color: #666666;
  227. line-height: 44rpx;
  228. }
  229. }
  230. }
  231. .boss-box{
  232. margin: 10rpx 0;
  233. padding: 30rpx;
  234. background-color: #fff;
  235. display: flex;
  236. align-items: center;
  237. .image{
  238. width: 90rpx;
  239. height: 90rpx;
  240. margin-right: 10rpx;
  241. flex-shrink: 0;
  242. image{
  243. width: 100%;
  244. height: 100%;
  245. border-radius: 10rpx;
  246. }
  247. }
  248. .shop-box{
  249. flex: 1;
  250. width: calc(100% - 220rpx);
  251. .title{
  252. font-size: 28rpx;
  253. overflow:hidden; //超出的文本隐藏
  254. text-overflow:ellipsis; //溢出用省略号显示
  255. white-space:nowrap; //溢出不换行
  256. }
  257. .desc{
  258. margin-top: 10rpx;
  259. font-size: 24rpx;
  260. overflow:hidden; //超出的文本隐藏
  261. text-overflow:ellipsis; //溢出用省略号显示
  262. white-space:nowrap; //溢出不换行
  263. }
  264. }
  265. .arrow-right{
  266. flex-shrink: 0;
  267. margin-left: auto;
  268. display: flex;
  269. align-items: center;
  270. font-size: 26rpx;
  271. }
  272. }
  273. .list-work{
  274. .text{
  275. background-color: #fff;
  276. padding: 26rpx;
  277. font-weight: 900;
  278. text{
  279. font-weight: 500;
  280. color: #666666;
  281. font-size: 26rpx;
  282. margin-left: 20rpx;
  283. }
  284. }
  285. }
  286. }
  287. </style>