12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <template>
- <view>
- <view class="resumepage">
- <view class="u-flex">
- <view class="">
- <view class="u-flex">
- <text>姜萌</text>
- <u-icon name="edit-pen-fill" color="#777" size="22"></u-icon>
- </view>
- <text>五年工作经验</text>|
- <text>27岁</text>|
- <text>北京</text>
- </view>
- <image style="width: 136rpx;height: 136rpx;border-radius:50%;" src="" mode=""></image>
- </view>
- <view class="">
- <view class="u-flex">
- <text>个人优势</text>
- <u-icon name="edit-pen-fill" color="#f3f3f3" size="22"></u-icon>
- </view>
- <input type="text" placeholder="编辑优势亮点,展示我的独特态度">
- </view>
- <view class="">
- <view class="u-flex">
- <text>求职状态</text>
- </view>
- <u-input :disabled="true" disabledColor="#fff" suffixIcon="arrow-right" type="text"
- placeholder="请选择你的求职状态" border
- suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;"></u-input>
- </view>
- <view class="">
- <view class="u-flex">
- <text>求职意向</text>
- </view>
- <u-input :disabled="true" disabledColor="#fff" suffixIcon="arrow-right" type="text"
- placeholder="请选择你的求职状态" border
- suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;"></u-input>
- <text>北京·行业不限</text>
- </view>
- <view class="">
- <view class="u-flex">
- <text>工作经历</text>
- </view>
- <u-input :disabled="true" disabledColor="#fff" suffixIcon="arrow-right" type="text"
- placeholder="请选择你的求职状态" border
- suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;"></u-input>
- <text>北京·行业不限</text>
- <view class=""></view>
- </view>
- </view>
- </view>
- </template>
- <script setup>
- export default {
- data() {
- return {
- }
- },
- methods: {
- }
- }
- </script>
- <style lang="scss">
- .resumepage {
- padding: 0 32rpx;
- background-color: #fff;
- }
- </style>
|