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

118 lines
2.0 KiB

4 months ago
2 months ago
4 months ago
2 months ago
4 months ago
2 months ago
4 months ago
  1. <template>
  2. <view class="page">
  3. <navbar title="在线简历"
  4. leftClick
  5. @leftClick="$utils.navigateBack"/>
  6. <view class="box">
  7. <view class="list">
  8. <view class="item"
  9. v-for="(item, index) in list"
  10. :key="index">
  11. <view class="title">
  12. {{ item.title }}
  13. </view>
  14. <view class="tagList">
  15. <view :class="{act : i == item.index}"
  16. @click="clickTag(item, i)" v-for="(t, i) in item.tag"
  17. :key="t">
  18. {{ t }}
  19. </view>
  20. </view>
  21. </view>
  22. </view>
  23. <uv-textarea
  24. v-model="form.content"
  25. count
  26. :maxlength="300"
  27. autoHeight
  28. placeholder="请输入详细介绍"></uv-textarea>
  29. <view class="uni-color-btn">
  30. 发布
  31. </view>
  32. </view>
  33. </view>
  34. </template>
  35. <script>
  36. export default {
  37. data() {
  38. return {
  39. list: [
  40. {
  41. title: '您希望从事的工种',
  42. tag: ['电工', '焊工', '叉车', '其他'],
  43. index: 0,
  44. },
  45. {
  46. title: '您希望从事的工作区域',
  47. tag: ['长沙'],
  48. index: 0,
  49. },
  50. {
  51. title: '您目前所属的年龄段',
  52. tag: ['18岁~35岁', '35岁~45岁', '45岁~50岁', '50岁以上'],
  53. index: 0,
  54. },
  55. {
  56. title: '您希望从事的工作性质',
  57. tag: ['全职', '临时工', ],
  58. index: 0,
  59. },
  60. ],
  61. form : {}
  62. }
  63. },
  64. methods: {
  65. }
  66. }
  67. </script>
  68. <style scoped lang="scss">
  69. .page{
  70. background-color: #fff;
  71. min-height: 100vh;
  72. .box{
  73. padding: 30rpx;
  74. .list {
  75. .item {
  76. margin-top: 20rpx;
  77. .title {
  78. font-weight: 900;
  79. font-size: 30rpx;
  80. }
  81. .tagList {
  82. display: flex;
  83. flex-wrap: wrap;
  84. padding: 10rpx 0;
  85. view {
  86. background: rgba($uni-color, 0.1);
  87. padding: 10rpx 20rpx;
  88. margin: 10rpx;
  89. border-radius: 10rpx;
  90. font-size: 26rpx;
  91. }
  92. .act {
  93. color: #fff;
  94. background: $uni-color;
  95. }
  96. }
  97. }
  98. }
  99. /deep/ .uv-textarea{
  100. background-color: rgba($uni-color, 0.1) !important;
  101. min-height: 400rpx;
  102. }
  103. }
  104. }
  105. </style>