特易招,招聘小程序
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.

209 lines
4.4 KiB

7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 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 v-for="(t, i) in detail.tab && detail.tab.split('、')">
  68. {{ t }}
  69. </view>
  70. </view>
  71. <!-- <view
  72. class="text"
  73. v-html="text">
  74. </view> -->
  75. <view
  76. class="text">
  77. <uv-parse :content="detail.workDetail"></uv-parse>
  78. </view>
  79. </view>
  80. </view>
  81. </view>
  82. </template>
  83. <script>
  84. let text = `岗位要求
  85. 1全日制大专以上学历艺术设计类相关专业;
  86. 2两年以上平面品牌视觉设计等相关工作经验能独立完成项目的设计工作 3C数码/个护健 类产品服务经验优先有乙方工作经验佳;
  87. 3具备一定的设计提案能力能完整的呈现设计思路与创意能清晰的表达设计逻辑与思考;
  88. 4热爱设计平面基本功扎实拥有优良的审美与创意想法对版式色彩把控能力强;对工作富有责任心具备团队沟通与协作能力;
  89. 5精通 PSAICDR 等平面设计软件能独立完成日常平面设计工作内容熟练使用 PPT/Keynote能完成提案内容的材料美化工作
  90. `
  91. import userHead from '../components/user/userHead.vue'
  92. export default {
  93. components : {
  94. userHead,
  95. },
  96. data() {
  97. return {
  98. text : '',
  99. id : 0,
  100. detail : {},
  101. collectionFlag : false,
  102. }
  103. },
  104. onLoad({id}) {
  105. this.id = id
  106. },
  107. onShow() {
  108. this.text = this.$utils.stringFormatHtml(text)
  109. this.getData()
  110. },
  111. methods: {
  112. getData(){
  113. let data = {
  114. jobId : this.id
  115. }
  116. if(uni.getStorageSync('token')){
  117. data.token = uni.getStorageSync('token')
  118. }
  119. this.$api('employeeQueryJobById', data, res => {
  120. if(res.code == 200){
  121. this.detail = res.result.employJob
  122. this.collectionFlag = res.result.collectionFlag
  123. }
  124. })
  125. },
  126. }
  127. }
  128. </script>
  129. <style scoped lang="scss">
  130. .page{
  131. background-color: #fff;
  132. min-height: 100vh;
  133. .box{
  134. padding: 30rpx;
  135. .title{
  136. font-size: 34rpx;
  137. font-weight: 900;
  138. padding-bottom: 20rpx;
  139. }
  140. .title2{
  141. font-size: 28rpx;
  142. font-weight: 900;
  143. display: flex;
  144. justify-content: space-between;
  145. align-items: center;
  146. view{
  147. display: flex;
  148. align-items: center;
  149. justify-content: center;
  150. }
  151. }
  152. .price{
  153. font-size: 30rpx;
  154. font-weight: 900;
  155. color: $uni-color;
  156. }
  157. .line{
  158. display: flex;
  159. font-size: 24rpx;
  160. color: #666666;
  161. margin-top: 30rpx;
  162. image{
  163. width: 30rpx;
  164. height: 30rpx;
  165. }
  166. &>view{
  167. margin-right: 50rpx;
  168. display: flex;
  169. justify-content: center;
  170. align-items: center;
  171. }
  172. }
  173. .userHead{
  174. padding: 50rpx 0;
  175. border-bottom: 1px solid #00000011;
  176. }
  177. .address{
  178. padding: 30rpx 0;
  179. .line{
  180. margin-top: 20rpx;
  181. }
  182. }
  183. .info{
  184. .text{
  185. font-size: 24rpx;
  186. color: #666666;
  187. line-height: 44rpx;
  188. }
  189. }
  190. }
  191. }
  192. </style>