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

89 lines
1.4 KiB

9 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="">
  26. <userHead/>
  27. </view>
  28. </view>
  29. </view>
  30. </template>
  31. <script>
  32. import userHead from '../components/user/userHead.vue'
  33. export default {
  34. components : {
  35. userHead,
  36. },
  37. data() {
  38. return {
  39. }
  40. },
  41. methods: {
  42. }
  43. }
  44. </script>
  45. <style scoped lang="scss">
  46. .page{
  47. background-color: #fff;
  48. min-height: 100vh;
  49. .box{
  50. padding: 30rpx;
  51. .title{
  52. font-size: 34rpx;
  53. font-weight: 900;
  54. padding-bottom: 20rpx;
  55. }
  56. .price{
  57. font-size: 30rpx;
  58. font-weight: 900;
  59. color: $uni-color;
  60. }
  61. .line{
  62. display: flex;
  63. font-size: 22rpx;
  64. color: #666666;
  65. margin-top: 30rpx;
  66. image{
  67. width: 30rpx;
  68. height: 30rpx;
  69. }
  70. &>view{
  71. margin-right: 50rpx;
  72. display: flex;
  73. justify-content: center;
  74. align-items: center;
  75. }
  76. }
  77. }
  78. }
  79. </style>