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

202 lines
4.2 KiB

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