resume.vue 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <template>
  2. <view>
  3. <view class="resumepage">
  4. <view class="u-flex">
  5. <view class="">
  6. <view class="u-flex">
  7. <text>姜萌</text>
  8. <u-icon name="edit-pen-fill" color="#777" size="22"></u-icon>
  9. </view>
  10. <text>五年工作经验</text>|
  11. <text>27岁</text>|
  12. <text>北京</text>
  13. </view>
  14. <image style="width: 136rpx;height: 136rpx;border-radius:50%;" src="" mode=""></image>
  15. </view>
  16. <view class="">
  17. <view class="u-flex">
  18. <text>个人优势</text>
  19. <u-icon name="edit-pen-fill" color="#f3f3f3" size="22"></u-icon>
  20. </view>
  21. <input type="text" placeholder="编辑优势亮点,展示我的独特态度">
  22. </view>
  23. <view class="">
  24. <view class="u-flex">
  25. <text>求职状态</text>
  26. </view>
  27. <u-input :disabled="true" disabledColor="#fff" suffixIcon="arrow-right" type="text"
  28. placeholder="请选择你的求职状态" border
  29. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;"></u-input>
  30. </view>
  31. <view class="">
  32. <view class="u-flex">
  33. <text>求职意向</text>
  34. </view>
  35. <u-input :disabled="true" disabledColor="#fff" suffixIcon="arrow-right" type="text"
  36. placeholder="请选择你的求职状态" border
  37. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;"></u-input>
  38. <text>北京·行业不限</text>
  39. </view>
  40. <view class="">
  41. <view class="u-flex">
  42. <text>工作经历</text>
  43. </view>
  44. <u-input :disabled="true" disabledColor="#fff" suffixIcon="arrow-right" type="text"
  45. placeholder="请选择你的求职状态" border
  46. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;"></u-input>
  47. <text>北京·行业不限</text>
  48. <view class=""></view>
  49. </view>
  50. </view>
  51. </view>
  52. </template>
  53. <script setup>
  54. export default {
  55. data() {
  56. return {
  57. }
  58. },
  59. methods: {
  60. }
  61. }
  62. </script>
  63. <style lang="scss">
  64. .resumepage {
  65. padding: 0 32rpx;
  66. background-color: #fff;
  67. }
  68. </style>