2024-11-18 16:33:37 +08:00
|
|
|
|
<template>
|
2025-11-10 17:09:05 +08:00
|
|
|
|
<AppLayout title="我的简历" title-color="#FFFFFF" back-gorund-color="#F4F4F4">
|
|
|
|
|
|
<template #headerleft>
|
|
|
|
|
|
<view class="btn">
|
|
|
|
|
|
<image src="@/static/icon/back-white.png" @click="navBack"></image>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<view class="mys-container">
|
|
|
|
|
|
<!-- 个人信息 -->
|
|
|
|
|
|
<view class="card-top" style="margin-top: 12rpx; padding: 0; background: none">
|
|
|
|
|
|
<view class="mys-tops btn-feel">
|
|
|
|
|
|
<view class="tops-left">
|
|
|
|
|
|
<view class="name">
|
|
|
|
|
|
<text>{{ userInfo.name || "编辑用户名" }}</text>
|
|
|
|
|
|
<view class="edit-icon mar_le10">
|
|
|
|
|
|
<image class="button-click" src="@/static/icon/edit1.png" @click="navTo('/packageA/pages/personalInfo/personalInfo')"></image>
|
|
|
|
|
|
</view>
|
2025-11-07 11:30:07 +08:00
|
|
|
|
</view>
|
2025-11-10 17:09:05 +08:00
|
|
|
|
<view class="subName">
|
|
|
|
|
|
<dict-Label class="mar_ri10" dictType="sex" :value="userInfo.sex"></dict-Label>
|
|
|
|
|
|
<text class="mar_ri10">{{ userInfo.age }}岁</text>
|
|
|
|
|
|
<dict-Label class="mar_ri10" dictType="education" :value="userInfo.education"></dict-Label>
|
|
|
|
|
|
<dict-Label class="mar_ri10" dictType="affiliation" :value="userInfo.politicalAffiliation"></dict-Label>
|
2025-05-13 11:10:38 +08:00
|
|
|
|
</view>
|
2025-11-10 17:09:05 +08:00
|
|
|
|
<view class="subName">{{ userInfo.phone }}</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="tops-right">
|
|
|
|
|
|
<view class="right-imghead">
|
|
|
|
|
|
<image v-if="userInfo.sex === '0'" src="@/static/icon/boy.png"></image>
|
|
|
|
|
|
<image v-else src="@/static/icon/girl.png"></image>
|
2024-11-18 16:33:37 +08:00
|
|
|
|
</view>
|
2025-11-10 17:09:05 +08:00
|
|
|
|
<view class="right-sex">
|
|
|
|
|
|
<image v-if="userInfo.sex === '0'" src="@/static/icon/boy1.png"></image>
|
|
|
|
|
|
<image v-else src="@/static/icon/girl1.png"></image>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<!-- 求职期望 -->
|
|
|
|
|
|
<view class="mys-line">
|
|
|
|
|
|
<view class="line"></view>
|
2024-11-18 16:33:37 +08:00
|
|
|
|
</view>
|
2025-11-11 15:10:39 +08:00
|
|
|
|
<view class="mys-info btn-feel">
|
2025-11-10 17:09:05 +08:00
|
|
|
|
<view class="mys-h4">
|
2025-11-11 15:10:39 +08:00
|
|
|
|
<view>求职期望</view>
|
|
|
|
|
|
<image class="icon " src="@/static/icon/edit1.png" @click="navTo('/packageA/pages/jobExpect/jobExpect')"></image>
|
2025-11-10 17:09:05 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
<view class="mys-text">
|
|
|
|
|
|
<text>期望薪资:</text>
|
|
|
|
|
|
<text>{{ userInfo.salaryMin / 1000 }}k-{{ userInfo.salaryMax / 1000 }}k</text>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="mys-text">
|
|
|
|
|
|
<text>期望工作地:</text>
|
|
|
|
|
|
<text>青岛市-</text>
|
|
|
|
|
|
<dict-Label dictType="area" :value="Number(userInfo.area)"></dict-Label>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="mys-list">
|
|
|
|
|
|
<view class="cards button-click" v-for="(title, index) in userInfo.jobTitle" :key="index">
|
|
|
|
|
|
{{ title }}
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="card-top" style="margin-top: 24rpx">
|
|
|
|
|
|
<view class="mys-info" style="padding: 0">
|
2025-11-11 15:10:39 +08:00
|
|
|
|
<view class="mys-h4 btn-feel">
|
2025-11-10 17:09:05 +08:00
|
|
|
|
<text>工作经历</text>
|
2025-11-11 15:10:39 +08:00
|
|
|
|
<view class="mys-edit-icon btn-feel" @click="navTo('/packageA/pages/workExp/workExp')">
|
|
|
|
|
|
<image class=" icon button-click btn-feel" src="@/static/icon/plus.png" ></image>
|
|
|
|
|
|
<view class="txt">添加</view>
|
2025-11-10 17:09:05 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
2025-11-11 15:10:39 +08:00
|
|
|
|
<view class="exp-item btn-feel" v-for="item in userInfo.workExp" :key="item.id">
|
|
|
|
|
|
<view class="fl_box fl_justbet mar_top15">
|
|
|
|
|
|
<view class="fs_16">{{ item.company }}</view>
|
|
|
|
|
|
<image class="icon btn-feel" src="@/static/icon/edit1.png" @click="navTo(`/packageA/pages/workExp/workExp?id=${item.id}`)"></image>
|
2025-11-10 17:09:05 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
<view class="mys-text fl_box fl_justbet">
|
|
|
|
|
|
<text class="color_333333 fs_14">{{ item.position }}</text>
|
|
|
|
|
|
<text class="datetext">{{ item.startTime }}--{{ item.endTime || "至今" }}</text>
|
2024-11-18 16:33:37 +08:00
|
|
|
|
</view>
|
2025-11-10 17:09:05 +08:00
|
|
|
|
<view class="mys-text">
|
|
|
|
|
|
<text>{{ item.duty }}</text>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<template #footer>
|
|
|
|
|
|
<view class="footer-container">
|
2025-11-11 15:10:39 +08:00
|
|
|
|
<view class="footer-button btn-feel">上传简历</view>
|
2025-11-10 17:09:05 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</AppLayout>
|
2024-11-18 16:33:37 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
2025-03-28 15:19:42 +08:00
|
|
|
|
<script setup>
|
2025-11-10 17:09:05 +08:00
|
|
|
|
import { reactive, inject, watch, ref, onMounted, computed } from "vue";
|
|
|
|
|
|
const { $api, navTo, navBack } = inject("globalFunction");
|
|
|
|
|
|
import { onLoad, onShow } from "@dcloudio/uni-app";
|
|
|
|
|
|
import { storeToRefs } from "pinia";
|
|
|
|
|
|
import useUserStore from "@/stores/useUserStore";
|
|
|
|
|
|
import useDictStore from "@/stores/useDictStore";
|
2025-05-13 11:10:38 +08:00
|
|
|
|
const { userInfo } = storeToRefs(useUserStore());
|
2025-03-28 15:19:42 +08:00
|
|
|
|
const { getUserResume } = useUserStore();
|
|
|
|
|
|
const { getDictData, oneDictData } = useDictStore();
|
2024-11-18 16:33:37 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2025-11-07 11:30:07 +08:00
|
|
|
|
.btn {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
width: 60rpx;
|
|
|
|
|
|
height: 60rpx;
|
|
|
|
|
|
image {
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
.footer-container{
|
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
|
box-shadow: 0rpx -4rpx 24rpx 0rpx rgba(11,44,112,0.12);
|
|
|
|
|
|
border-radius: 0rpx 0rpx 0rpx 0rpx;
|
|
|
|
|
|
padding: 40rpx 28rpx 20rpx 28rpx
|
|
|
|
|
|
.footer-button{
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 90rpx;
|
|
|
|
|
|
background: #1677FF;
|
|
|
|
|
|
border-radius: 8rpx;
|
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
|
line-height: 90rpx;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-05-13 11:10:38 +08:00
|
|
|
|
image{
|
2024-11-18 16:33:37 +08:00
|
|
|
|
width: 100%;
|
2025-05-13 11:10:38 +08:00
|
|
|
|
height: 100%
|
|
|
|
|
|
}
|
|
|
|
|
|
.mys-container{
|
2025-11-10 17:09:05 +08:00
|
|
|
|
padding-bottom:20rpx;
|
2025-11-07 11:30:07 +08:00
|
|
|
|
.card-top{
|
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
|
margin: 0 28rpx;
|
|
|
|
|
|
border-radius: 8rpx;
|
|
|
|
|
|
padding: 24rpx
|
|
|
|
|
|
}
|
2025-05-13 11:10:38 +08:00
|
|
|
|
.mys-tops{
|
|
|
|
|
|
display: flex
|
|
|
|
|
|
justify-content: space-between
|
2025-11-07 11:30:07 +08:00
|
|
|
|
padding: 38rpx 44rpx
|
2025-11-10 17:09:05 +08:00
|
|
|
|
background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) , rgba(255, 255, 255, 1));
|
|
|
|
|
|
border-radius: 8rpx 8rpx 0 0 ;
|
2025-05-13 11:10:38 +08:00
|
|
|
|
.tops-left{
|
|
|
|
|
|
.name{
|
2025-07-09 15:15:37 +08:00
|
|
|
|
font-family: 'PingFangSC-Medium', 'PingFang SC', 'Helvetica Neue', Helvetica, Arial, 'Microsoft YaHei', sans-serif;
|
2025-05-13 11:10:38 +08:00
|
|
|
|
font-weight: 600;
|
2025-11-07 11:30:07 +08:00
|
|
|
|
font-size: 36rpx;
|
2025-05-13 11:10:38 +08:00
|
|
|
|
color: #333333;
|
|
|
|
|
|
display: flex
|
|
|
|
|
|
align-items: center
|
|
|
|
|
|
justify-content: flex-start
|
|
|
|
|
|
.edit-icon{
|
|
|
|
|
|
display: inline-block
|
|
|
|
|
|
width: 40rpx;
|
|
|
|
|
|
height: 40rpx
|
|
|
|
|
|
padding-bottom: 10rpx
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
.subName{
|
|
|
|
|
|
margin-top: 12rpx
|
|
|
|
|
|
font-weight: 400;
|
2025-11-07 11:30:07 +08:00
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
|
color: #999999;
|
2025-05-13 11:10:38 +08:00
|
|
|
|
}
|
2025-03-28 15:19:42 +08:00
|
|
|
|
|
2025-05-13 11:10:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
.tops-right{
|
|
|
|
|
|
position: relative
|
|
|
|
|
|
.right-imghead{
|
|
|
|
|
|
width: 136rpx;
|
|
|
|
|
|
height: 136rpx;
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
background: #e8e8e8
|
|
|
|
|
|
overflow: hidden
|
|
|
|
|
|
}
|
|
|
|
|
|
.right-sex{
|
|
|
|
|
|
position: absolute
|
|
|
|
|
|
right: -10rpx
|
|
|
|
|
|
top: -10rpx
|
|
|
|
|
|
width: 50rpx
|
|
|
|
|
|
height: 50rpx
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
.mys-line{
|
2025-11-10 17:09:05 +08:00
|
|
|
|
background: #ffffff;
|
|
|
|
|
|
padding: 0 24rpx
|
|
|
|
|
|
.line{
|
|
|
|
|
|
border: 2rpx dashed #eeeeee;
|
|
|
|
|
|
}
|
2025-03-28 15:19:42 +08:00
|
|
|
|
}
|
2025-05-13 11:10:38 +08:00
|
|
|
|
.mys-info{
|
|
|
|
|
|
padding: 28rpx
|
2025-11-10 17:09:05 +08:00
|
|
|
|
background: #ffffff;
|
|
|
|
|
|
border-radius: 0 0 8rpx 8rpx ;
|
2025-05-13 11:10:38 +08:00
|
|
|
|
.mys-h4{
|
2025-07-09 15:15:37 +08:00
|
|
|
|
font-family: 'PingFangSC-Medium', 'PingFang SC', 'Helvetica Neue', Helvetica, Arial, 'Microsoft YaHei', sans-serif;
|
2025-11-10 17:09:05 +08:00
|
|
|
|
font-weight: 500;
|
2025-11-07 11:30:07 +08:00
|
|
|
|
font-size: 30rpx;
|
2025-05-13 11:10:38 +08:00
|
|
|
|
color: #000000;
|
|
|
|
|
|
margin-bottom: 8rpx
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between
|
|
|
|
|
|
align-items: center
|
2025-11-11 15:10:39 +08:00
|
|
|
|
.icon{
|
2025-05-13 11:10:38 +08:00
|
|
|
|
width: 40rpx;
|
|
|
|
|
|
height: 40rpx
|
2025-11-11 15:10:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
.mys-edit-icon{
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
.txt{
|
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
|
color: #444;
|
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
}
|
|
|
|
|
|
.icon{
|
|
|
|
|
|
width: 28rpx;
|
|
|
|
|
|
height: 28rpx
|
|
|
|
|
|
margin-right: 5rpx;
|
|
|
|
|
|
margin-top: 2rpx
|
|
|
|
|
|
vertical-align: bottom;
|
|
|
|
|
|
}
|
2025-05-13 11:10:38 +08:00
|
|
|
|
}
|
2025-03-28 15:19:42 +08:00
|
|
|
|
}
|
2025-11-07 11:30:07 +08:00
|
|
|
|
.datetext{
|
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
|
color: #999999;
|
|
|
|
|
|
}
|
2025-05-13 11:10:38 +08:00
|
|
|
|
.mys-text{
|
|
|
|
|
|
font-weight: 400;
|
2025-11-07 11:30:07 +08:00
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
|
color: #999999;
|
2025-05-13 11:10:38 +08:00
|
|
|
|
margin-top: 16rpx
|
|
|
|
|
|
}
|
|
|
|
|
|
.mys-list{
|
|
|
|
|
|
display: flex
|
|
|
|
|
|
align-items: center
|
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
.cards{
|
2025-11-10 17:09:05 +08:00
|
|
|
|
margin: 12rpx 12rpx 0 0
|
|
|
|
|
|
padding: 12rpx 25rpx;
|
2025-05-13 11:10:38 +08:00
|
|
|
|
width: fit-content
|
|
|
|
|
|
display: flex
|
|
|
|
|
|
align-items: center
|
|
|
|
|
|
justify-content: center
|
2025-11-10 17:09:05 +08:00
|
|
|
|
border-radius:10rpx;
|
2025-05-13 11:10:38 +08:00
|
|
|
|
border: 2rpx solid #E8EAEE;
|
|
|
|
|
|
}
|
2025-03-28 15:19:42 +08:00
|
|
|
|
}
|
2025-11-10 17:09:05 +08:00
|
|
|
|
.exp-item{
|
|
|
|
|
|
padding-bottom: 28rpx;
|
|
|
|
|
|
border-bottom: 2rpx dashed #EEEEEE;
|
2025-11-11 15:10:39 +08:00
|
|
|
|
.icon{
|
|
|
|
|
|
width 40rpx;
|
|
|
|
|
|
height 40rpx
|
|
|
|
|
|
}
|
2025-11-10 17:09:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
.exp-item:nth-last-child(1){
|
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
|
}
|
2025-03-28 15:19:42 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2024-11-18 16:33:37 +08:00
|
|
|
|
</style>
|