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

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