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

211 lines
4.5 KiB

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