feat : 新增 点子名片页, 修改我的简历页, 编辑个人信息页

This commit is contained in:
bin
2025-11-10 17:09:05 +08:00
parent e12241b0e4
commit 544cae7cb1
11 changed files with 868 additions and 576 deletions

View File

@@ -269,10 +269,9 @@ function getFormCompletionPercent(form) {
display: flex display: flex
flex-wrap: wrap flex-wrap: wrap
.nx-item .nx-item
padding: 20rpx 28rpx margin: 12rpx 12rpx 0 0;
width: fit-content padding: 12rpx 25rpx;
border-radius: 12rpx 12rpx 12rpx 12rpx; border-radius: 12rpx 12rpx 12rpx 12rpx;
border: 2rpx solid #E8EAEE; border: 2rpx solid #E8EAEE;
margin-right: 24rpx
margin-top: 24rpx
</style> </style>

View File

@@ -1,120 +1,105 @@
<template> <template>
<AppLayout title="我的简历" title-color="#FFFFFF" back-gorund-color="#F4F4F4"> <AppLayout title="我的简历" title-color="#FFFFFF" back-gorund-color="#F4F4F4">
<template #headerleft> <template #headerleft>
<view class="btn"> <view class="btn">
<image src="@/static/icon/back.png" @click="navBack"></image> <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>
</view> </view>
</template> <view class="subName">
<view class="mys-container"> <dict-Label class="mar_ri10" dictType="sex" :value="userInfo.sex"></dict-Label>
<!-- 个人信息 --> <text class="mar_ri10">{{ userInfo.age }}</text>
<view class="card-top" style="margin-top: 12rpx; padding: 0"> <dict-Label class="mar_ri10" dictType="education" :value="userInfo.education"></dict-Label>
<view class="mys-tops btn-feel"> <dict-Label class="mar_ri10" dictType="affiliation" :value="userInfo.politicalAffiliation"></dict-Label>
<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>
</view>
<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>
</view>
<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>
</view>
<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>
<view class="mys-info">
<view class="mys-h4">
<text>求职期望</text>
<view class="mys-edit-icon">
<image
class="button-click"
src="@/static/icon/edit1.png"
@click="navTo('/packageA/pages/jobExpect/jobExpect')"
></image>
</view>
</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>
<view class="card-top" style="margin-top: 24rpx"> <view class="subName">{{ userInfo.phone }}</view>
<view class="mys-info" style="padding: 0"> </view>
<view class="mys-h4"> <view class="tops-right">
<text>工作经历</text> <view class="right-imghead">
<view class="mys-edit-icon"> <image v-if="userInfo.sex === '0'" src="@/static/icon/boy.png"></image>
<image <image v-else src="@/static/icon/girl.png"></image>
class="button-click"
src="@/static/icon/edit1.png"
@click="navTo('/packageA/pages/jobExpect/jobExpect')"
></image>
</view>
</view>
<view class="mar_top10" v-for="item in userInfo.workExp" :key="item.id">
<view class="fl_box fl_justbet mar_top10">
<text class="fs_16">{{ item.company }}</text>
<text class="datetext">{{ item.startTime }}--{{ item.endTime || '至今' }}</text>
</view>
<view class="mys-text">
<text class="color_333333 fs_14">{{ item.position }}</text>
<text></text>
</view>
<view class="mys-text color_333333">
<text>{{ item.duty }}</text>
</view>
</view>
</view>
</view> </view>
<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>
<template #footer> <!-- 求职期望 -->
<view class="footer-container"> <view class="mys-line">
<view class="footer-button">上传简历</view> <view class="line"></view>
</view>
<view class="mys-info">
<view class="mys-h4">
<text>求职期望</text>
<view class="mys-edit-icon">
<image class="button-click" src="@/static/icon/edit1.png" @click="navTo('/packageA/pages/jobExpect/jobExpect')"></image>
</view> </view>
</template> </view>
</AppLayout> <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">
<view class="mys-h4">
<text>工作经历</text>
<view class="mys-edit-icon">
<image class="button-click" src="@/static/icon/edit1.png" @click="navTo('/packageA/pages/jobExpect/jobExpect')"></image>
</view>
</view>
<view class="exp-item" v-for="item in userInfo.workExp" :key="item.id">
<view class="fl_box fl_justbet mar_top10">
<text class="fs_16">{{ item.company }}</text>
</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>
</view>
<view class="mys-text">
<text>{{ item.duty }}</text>
</view>
</view>
</view>
</view>
</view>
<template #footer>
<view class="footer-container">
<view class="footer-button">上传简历</view>
</view>
</template>
</AppLayout>
</template> </template>
<script setup> <script setup>
import { reactive, inject, watch, ref, onMounted, computed } from 'vue'; import { reactive, inject, watch, ref, onMounted, computed } from "vue";
const { $api, navTo, navBack } = inject('globalFunction'); const { $api, navTo, navBack } = inject("globalFunction");
import { onLoad, onShow } from '@dcloudio/uni-app'; import { onLoad, onShow } from "@dcloudio/uni-app";
import { storeToRefs } from 'pinia'; import { storeToRefs } from "pinia";
import useUserStore from '@/stores/useUserStore'; import useUserStore from "@/stores/useUserStore";
import useDictStore from '@/stores/useDictStore'; import useDictStore from "@/stores/useDictStore";
const { userInfo } = storeToRefs(useUserStore()); const { userInfo } = storeToRefs(useUserStore());
const { getUserResume } = useUserStore(); const { getUserResume } = useUserStore();
const { getDictData, oneDictData } = useDictStore(); const { getDictData, oneDictData } = useDictStore();
@@ -152,6 +137,7 @@ image{
height: 100% height: 100%
} }
.mys-container{ .mys-container{
padding-bottom:20rpx;
.card-top{ .card-top{
background: #FFFFFF; background: #FFFFFF;
margin: 0 28rpx; margin: 0 28rpx;
@@ -162,6 +148,8 @@ image{
display: flex display: flex
justify-content: space-between justify-content: space-between
padding: 38rpx 44rpx padding: 38rpx 44rpx
background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) , rgba(255, 255, 255, 1));
border-radius: 8rpx 8rpx 0 0 ;
.tops-left{ .tops-left{
.name{ .name{
font-family: 'PingFangSC-Medium', 'PingFang SC', 'Helvetica Neue', Helvetica, Arial, 'Microsoft YaHei', sans-serif; font-family: 'PingFangSC-Medium', 'PingFang SC', 'Helvetica Neue', Helvetica, Arial, 'Microsoft YaHei', sans-serif;
@@ -205,17 +193,19 @@ image{
} }
} }
.mys-line{ .mys-line{
margin: 0 28rpx background: #ffffff;
height: 0rpx; padding: 0 24rpx
border-radius: 0rpx 0rpx 0rpx 0rpx; .line{
border: 2rpx dashed #000000; border: 2rpx dashed #eeeeee;
opacity: 0.16; }
} }
.mys-info{ .mys-info{
padding: 28rpx padding: 28rpx
background: #ffffff;
border-radius: 0 0 8rpx 8rpx ;
.mys-h4{ .mys-h4{
font-family: 'PingFangSC-Medium', 'PingFang SC', 'Helvetica Neue', Helvetica, Arial, 'Microsoft YaHei', sans-serif; font-family: 'PingFangSC-Medium', 'PingFang SC', 'Helvetica Neue', Helvetica, Arial, 'Microsoft YaHei', sans-serif;
font-weight: 600; font-weight: 500;
font-size: 30rpx; font-size: 30rpx;
color: #000000; color: #000000;
margin-bottom: 8rpx margin-bottom: 8rpx
@@ -244,17 +234,24 @@ image{
align-items: center align-items: center
flex-wrap: wrap; flex-wrap: wrap;
.cards{ .cards{
margin: 28rpx 28rpx 0 0 margin: 12rpx 12rpx 0 0
height: 80rpx; padding: 12rpx 25rpx;
padding: 0 38rpx;
width: fit-content width: fit-content
display: flex display: flex
align-items: center align-items: center
justify-content: center justify-content: center
border-radius: 12rpx 12rpx 12rpx 12rpx; border-radius:10rpx;
border: 2rpx solid #E8EAEE; border: 2rpx solid #E8EAEE;
} }
} }
.exp-item{
padding-bottom: 28rpx;
border-bottom: 2rpx dashed #EEEEEE;
}
.exp-item:nth-last-child(1){
border-bottom: none;
}
} }
} }
</style> </style>

View File

@@ -1,257 +1,260 @@
<template> <template>
<AppLayout <AppLayout title="个人信息" :sub-title="`完成度${percent}`" border back-gorund-color="#ffffff" :show-bg-image="false">
title="个人信息" <template #headerleft>
:sub-title="`完成度${percent}`" <view class="btn mar_le20 button-click" @click="navBack">取消</view>
border </template>
back-gorund-color="#ffffff" <template #headerright>
:show-bg-image="false" <view class="btn mar_ri20 button-click" @click="confirm">确认</view>
> </template>
<template #headerleft> <view class="content">
<view class="btn mar_le20 button-click" @click="navBack">取消</view> <view class="content-avatar">
</template> <view class="avatar-title">编辑头像</view>
<template #headerright> <view @click="selectAvatar">
<view class="btn mar_ri20 button-click" @click="confirm">确认</view> <image class="avatar" v-if="fromValue.avatar" :src="fromValue.avatar" />
</template> <image class="avatar" v-else-if="fromValue.sex == '0'" src="@/static/icon/boy.png" />
<view class="content"> <image class="avatar" v-else="fromValue.sex == '1'" src="@/static/icon/girl.png" />
<view class="content-input">
<view class="input-titile">姓名</view>
<input class="input-con" v-model="fromValue.name" placeholder="请输入您的姓名" />
</view>
<view class="content-sex">
<view class="sex-titile">性别</view>
<view class="sext-ri">
<view class="sext-box" :class="{ 'sext-boxactive': fromValue.sex === 0 }" @click="changeSex(0)">
</view>
<view class="sext-box" :class="{ 'sext-boxactive': fromValue.sex === 1 }" @click="changeSex(1)">
</view>
</view>
</view>
<view class="content-input" @click="changeDateBirt">
<view class="input-titile">出生年月</view>
<input
class="input-con triangle"
v-model="fromValue.birthDate"
disabled
placeholder="请选择您的出生年月"
/>
</view>
<view class="content-input" @click="changeEducation">
<view class="input-titile">学历</view>
<input class="input-con triangle" v-model="state.educationText" disabled placeholder="请选择您的学历" />
</view>
<view class="content-input" @click="changePoliticalAffiliation">
<view class="input-titile">政治面貌</view>
<input
class="input-con triangle"
v-model="state.politicalAffiliationText"
disabled
placeholder="请选择您的政治面貌"
/>
</view>
<view class="content-input">
<view class="input-titile">手机号码</view>
<input class="input-con" v-model="fromValue.phone" placeholder="请输入您的手机号码" />
</view>
</view> </view>
</AppLayout> </view>
<view class="content-input">
<view class="input-titile">姓名</view>
<input class="input-con" v-model="fromValue.name" placeholder="请输入您的姓名" />
</view>
<view class="content-sex">
<view class="sex-titile">性别</view>
<view class="sext-ri">
<view class="sext-box" :class="{ 'sext-boxactive': fromValue.sex === 0 }" @click="changeSex(0)"> </view>
<view class="sext-box" :class="{ 'sext-boxactive': fromValue.sex === 1 }" @click="changeSex(1)"> </view>
</view>
</view>
<view class="content-input" @click="changeDateBirt">
<view class="input-titile">出生年月</view>
<input class="input-con triangle" v-model="fromValue.birthDate" disabled placeholder="请选择您的出生年月" />
</view>
<view class="content-input" @click="changeEducation">
<view class="input-titile">学历</view>
<input class="input-con triangle" v-model="state.educationText" disabled placeholder="请选择您的学历" />
</view>
<view class="content-input" @click="changePoliticalAffiliation">
<view class="input-titile">政治面貌</view>
<input class="input-con triangle" v-model="state.politicalAffiliationText" disabled placeholder="请选择您的政治面貌" />
</view>
<view class="content-input">
<view class="input-titile">手机号码</view>
<input class="input-con" v-model="fromValue.phone" placeholder="请输入您的手机号码" />
</view>
</view>
</AppLayout>
</template> </template>
<script setup> <script setup>
import { reactive, inject, watch, ref, onMounted } from 'vue'; import { reactive, inject, watch, ref, onMounted } from "vue";
import { onLoad, onShow } from '@dcloudio/uni-app'; import { onLoad, onShow } from "@dcloudio/uni-app";
const { $api, navTo, navBack, checkingPhoneRegExp } = inject('globalFunction'); const { $api, navTo, navBack, checkingPhoneRegExp } = inject("globalFunction");
import { storeToRefs } from 'pinia'; import { storeToRefs } from "pinia";
import useUserStore from '@/stores/useUserStore'; import useUserStore from "@/stores/useUserStore";
import useDictStore from '@/stores/useDictStore'; import useDictStore from "@/stores/useDictStore";
const { userInfo } = storeToRefs(useUserStore()); const { userInfo } = storeToRefs(useUserStore());
const { getUserResume } = useUserStore(); const { getUserResume } = useUserStore();
const { dictLabel, oneDictData } = useDictStore(); const { dictLabel, oneDictData } = useDictStore();
const openSelectPopup = inject('openSelectPopup'); const openSelectPopup = inject("openSelectPopup");
const percent = ref('0%'); const percent = ref("0%");
const state = reactive({ const state = reactive({
educationText: '', educationText: "",
politicalAffiliationText: '', politicalAffiliationText: "",
}); });
const fromValue = reactive({ const fromValue = reactive({
name: '', name: "",
sex: 0, sex: 0,
birthDate: '', birthDate: "",
education: '', education: "",
politicalAffiliation: '', politicalAffiliation: "",
avatar: "",
}); });
onLoad(() => { onLoad(() => {
initLoad(); initLoad();
// setTimeout(() => { // setTimeout(() => {
// const { age, birthDate } = useUserStore().userInfo; // const { age, birthDate } = useUserStore().userInfo;
// const newAge = calculateAge(birthDate); // const newAge = calculateAge(birthDate);
// // 计算年龄是否对等 // // 计算年龄是否对等
// if (age != newAge) { // if (age != newAge) {
// completeResume(); // completeResume();
// } // }
// }, 1000); // }, 1000);
}); });
function initLoad() { function initLoad() {
fromValue.name = userInfo.value.name; fromValue.name = userInfo.value.name;
fromValue.sex = Number(userInfo.value.sex); fromValue.sex = Number(userInfo.value.sex);
fromValue.phone = userInfo.value.phone; fromValue.phone = userInfo.value.phone;
fromValue.birthDate = userInfo.value.birthDate; fromValue.birthDate = userInfo.value.birthDate;
fromValue.education = userInfo.value.education; fromValue.education = userInfo.value.education;
fromValue.politicalAffiliation = userInfo.value.politicalAffiliation; fromValue.politicalAffiliation = userInfo.value.politicalAffiliation;
// 回显 fromValue.avatar = userInfo.value.avatar;
state.educationText = dictLabel('education', userInfo.value.education); // 回显
state.politicalAffiliationText = dictLabel('affiliation', userInfo.value.politicalAffiliation); state.educationText = dictLabel("education", userInfo.value.education);
const result = getFormCompletionPercent(fromValue); state.politicalAffiliationText = dictLabel("affiliation", userInfo.value.politicalAffiliation);
percent.value = result; const result = getFormCompletionPercent(fromValue);
percent.value = result;
} }
const confirm = () => { const confirm = () => {
if (!fromValue.name) { if (!fromValue.name) {
return $api.msg('请输入姓名'); return $api.msg("请输入姓名");
} }
if (!fromValue.birthDate) { if (!fromValue.birthDate) {
return $api.msg('请选择出生年月'); return $api.msg("请选择出生年月");
} }
if (!fromValue.education) { if (!fromValue.education) {
return $api.msg('请选择学历'); return $api.msg("请选择学历");
} }
if (!fromValue.politicalAffiliation) { if (!fromValue.politicalAffiliation) {
return $api.msg('请选择政治面貌'); return $api.msg("请选择政治面貌");
} }
if (!checkingPhoneRegExp(fromValue.phone)) { // if (!checkingPhoneRegExp(fromValue.phone)) {
return $api.msg('请输入正确手机号'); // return $api.msg('请输入正确手机号');
} // }
const params = { const params = {
...fromValue, ...fromValue,
age: calculateAge(fromValue.birthDate), age: calculateAge(fromValue.birthDate),
}; };
$api.createRequest('/app/user/resume', params, 'post').then((resData) => { $api.createRequest("/app/user/resume", params, "post").then((resData) => {
$api.msg('完成'); $api.msg("完成");
state.disbleDate = true; state.disbleDate = true;
getUserResume().then(() => { getUserResume().then(() => {
navBack(); navBack();
});
}); });
});
}; };
const changeDateBirt = () => { const changeDateBirt = () => {
const datearray = generateDatePickerArrays(); const datearray = generateDatePickerArrays();
const defaultIndex = getDatePickerIndexes(fromValue.birthDate); const defaultIndex = getDatePickerIndexes(fromValue.birthDate);
openSelectPopup({ openSelectPopup({
title: '年龄段', title: "年龄段",
maskClick: true, maskClick: true,
data: datearray, data: datearray,
defaultIndex, defaultIndex,
success: (_, value) => { success: (_, value) => {
const [year, month, day] = value; const [year, month, day] = value;
const dateStr = `${year.value}-${month.value}-${day.value}`; const dateStr = `${year.value}-${month.value}-${day.value}`;
if (isValidDate(dateStr)) { if (isValidDate(dateStr)) {
fromValue.birthDate = dateStr; fromValue.birthDate = dateStr;
} else { } else {
$api.msg('没有这一天'); $api.msg("没有这一天");
} }
}, },
}); });
}; };
const changeEducation = () => { const changeEducation = () => {
openSelectPopup({ openSelectPopup({
title: '学历', title: "学历",
maskClick: true, maskClick: true,
data: [oneDictData('education')], data: [oneDictData("education")],
success: (_, [value]) => { success: (_, [value]) => {
fromValue.education = value.value; fromValue.education = value.value;
state.educationText = value.label; state.educationText = value.label;
}, },
}); });
}; };
const changeSex = (sex) => { const changeSex = (sex) => {
fromValue.sex = sex; fromValue.sex = sex;
}; };
const changePoliticalAffiliation = () => { const changePoliticalAffiliation = () => {
openSelectPopup({ openSelectPopup({
title: '政治面貌', title: "政治面貌",
maskClick: true, maskClick: true,
data: [oneDictData('affiliation')], data: [oneDictData("affiliation")],
success: (_, [value]) => { success: (_, [value]) => {
fromValue.politicalAffiliation = value.value; fromValue.politicalAffiliation = value.value;
state.politicalAffiliationText = value.label; state.politicalAffiliationText = value.label;
}, },
}); });
}; };
function generateDatePickerArrays(startYear = 1975, endYear = new Date().getFullYear()) { function generateDatePickerArrays(startYear = 1975, endYear = new Date().getFullYear()) {
const years = []; const years = [];
const months = []; const months = [];
const days = []; const days = [];
for (let y = startYear; y <= endYear; y++) { for (let y = startYear; y <= endYear; y++) {
years.push(y.toString()); years.push(y.toString());
} }
for (let m = 1; m <= 12; m++) { for (let m = 1; m <= 12; m++) {
months.push(m.toString().padStart(2, '0')); months.push(m.toString().padStart(2, "0"));
} }
for (let d = 1; d <= 31; d++) { for (let d = 1; d <= 31; d++) {
days.push(d.toString().padStart(2, '0')); days.push(d.toString().padStart(2, "0"));
} }
return [years, months, days]; return [years, months, days];
} }
function isValidDate(dateString) { function isValidDate(dateString) {
const [year, month, day] = dateString.split('-').map(Number); const [year, month, day] = dateString.split("-").map(Number);
const date = new Date(year, month - 1, day); // 月份从0开始 const date = new Date(year, month - 1, day); // 月份从0开始
return date.getFullYear() === year && date.getMonth() === month - 1 && date.getDate() === day; return date.getFullYear() === year && date.getMonth() === month - 1 && date.getDate() === day;
} }
const calculateAge = (birthDate) => { const calculateAge = (birthDate) => {
const birth = new Date(birthDate); const birth = new Date(birthDate);
const today = new Date(); const today = new Date();
let age = today.getFullYear() - birth.getFullYear(); let age = today.getFullYear() - birth.getFullYear();
const monthDiff = today.getMonth() - birth.getMonth(); const monthDiff = today.getMonth() - birth.getMonth();
const dayDiff = today.getDate() - birth.getDate(); const dayDiff = today.getDate() - birth.getDate();
// 如果生日的月份还没到,或者刚到生日月份但当天还没过,则年龄减 1 // 如果生日的月份还没到,或者刚到生日月份但当天还没过,则年龄减 1
if (monthDiff < 0 || (monthDiff === 0 && dayDiff < 0)) { if (monthDiff < 0 || (monthDiff === 0 && dayDiff < 0)) {
age--; age--;
} }
return age; return age;
}; };
function getFormCompletionPercent(form) { function getFormCompletionPercent(form) {
let total = Object.keys(form).length; let total = Object.keys(form).length;
let filled = 0; let filled = 0;
for (const key in form) { for (const key in form) {
const value = form[key]; const value = form[key];
if (value !== '' && value !== null && value !== undefined) { if (value !== "" && value !== null && value !== undefined) {
if (typeof value === 'number') { if (typeof value === "number") {
filled += 1; filled += 1;
} else if (typeof value === 'string' && value.trim() !== '') { } else if (typeof value === "string" && value.trim() !== "") {
filled += 1; filled += 1;
} }
}
} }
}
if (total === 0) return '0%'; if (total === 0) return "0%";
const percent = (filled / total) * 100; const percent = (filled / total) * 100;
return percent.toFixed(0) + '%'; // 取整,不要小数点 return percent.toFixed(0) + "%"; // 取整,不要小数点
} }
// 主函数 // 主函数
function getDatePickerIndexes(dateStr) { function getDatePickerIndexes(dateStr) {
const [year, month, day] = dateStr.split('-'); const [year, month, day] = dateStr.split("-");
const [years, months, days] = generateDatePickerArrays(); const [years, months, days] = generateDatePickerArrays();
const yearIndex = years.indexOf(year); const yearIndex = years.indexOf(year);
const monthIndex = months.indexOf(month); const monthIndex = months.indexOf(month);
const dayIndex = days.indexOf(day); const dayIndex = days.indexOf(day);
return [yearIndex, monthIndex, dayIndex]; return [yearIndex, monthIndex, dayIndex];
}
function selectAvatar() {
uni.chooseImage({
sizeType: ["original", "compressed"],
sourceType: ["album", "camera"],
count: 1,
success: ({ tempFilePaths, tempFiles }) => {
console.log(`选择的图片:${tempFilePaths}`);
console.warn("没有做后续上传逻辑!!!!!!!");
},
fail: (error) => {},
});
} }
</script> </script>
@@ -267,6 +270,22 @@ function getDatePickerIndexes(dateStr) {
height: calc(100% - 120rpx) height: calc(100% - 120rpx)
} }
.content-avatar{
margin-bottom: 52rpx;
padding-bottom: 28rpx
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 2rpx solid #EBEBEB
.avatar-title{
font-size: 30rpx;
color #333;
}
.avatar{
width:110rpx;
height: 110rpx;
}
}
.content-input .content-input
margin-bottom: 52rpx margin-bottom: 52rpx
.input-titile .input-titile
@@ -302,12 +321,12 @@ function getDatePickerIndexes(dateStr) {
background: #697279; background: #697279;
transform: rotate(45deg) transform: rotate(45deg)
.content-sex .content-sex
height: 110rpx;
display: flex display: flex
justify-content: space-between; justify-content: space-between;
align-items: flex-start; align-items: flex-start;
border-bottom: 2rpx solid #EBEBEB border-bottom: 2rpx solid #EBEBEB
margin-bottom: 52rpx margin-bottom: 52rpx
padding-bottom: 28rpx
.sex-titile .sex-titile
line-height: 80rpx; line-height: 80rpx;
.sext-ri .sext-ri

View File

@@ -0,0 +1,261 @@
<template>
<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">
<view class="info">
<view class="avatar">
<image v-if="userInfo.sex === '0'" src="@/static/icon/boy.png"></image>
<image v-else src="@/static/icon/girl.png"></image>
</view>
<view class="info-right">
<view class="name">{{ userInfo.name || "编辑用户名" }}</view>
<view class="des">
<dict-Label class="mar_ri10" dictType="sex" :value="userInfo.sex"></dict-Label>
<text class="mar_ri10">|</text>
<text class="mar_ri10">{{ userInfo.age }}</text>
<text class="mar_ri10">|</text>
<dict-Label class="mar_ri10" dictType="education" :value="userInfo.education"></dict-Label>
<!-- <text class="mar_ri10">|</text>
<dict-Label class="mar_ri10" dictType="affiliation" :value="userInfo.politicalAffiliation"></dict-Label> -->
</view>
<view class="phone">
<image class="call-icon" src="@/static/icon/call.png" />
<view>{{ userInfo.phone }}</view>
</view>
</view>
</view>
<view class="info-bottom">
<view>到岗2025-11-02</view>
<view>地点<dict-Label dictType="area" :value="Number(userInfo.area)"></dict-Label></view>
</view>
<view class="des-card" style="margin-top: 24rpx">
<view class="fl_box fl_justbet">
<view>求职意向岗位</view>
<view>{{ userInfo.jobIntention || "-" }}</view>
</view>
<view class="fl_box fl_justbet">
<view>毕业学校</view>
<view>{{ userInfo.graduationSchool || "-" }}</view>
</view>
<view class="fl_box fl_justbet">
<view>当前状态</view>
<view>在职 看工作机会</view>
</view>
</view>
</view>
<view class="card">
<view class="title">
<image class="bg" src="@/static/icon/title-bg.png" />
<view class="text">个人技能</view>
</view>
<view class="skill-box">
<view class="skill-item" v-for="item in userInfo?.skillList" :key="item.id">{{ item.skill }}</view>
</view>
<view v-if="!userInfo?.skillList?.length" class="empty-box">
<image class="img" src="@/static/icon/empty.png" mode="widthFix"></image>
<view class="content">暂无个人技能</view>
</view>
</view>
<view class="card">
<view class="title">
<image class="bg" src="@/static/icon/title-bg.png" />
<view class="text">关键经历</view>
</view>
<view class="exp-box">
<view class="exp-item" v-for="(item, index) in userInfo?.workExp" :key="item.id">{{ index + 1 + "." }}{{ item.duty }}</view>
</view>
<view v-if="!userInfo?.workExp?.length" class="empty-box">
<image class="img" src="@/static/icon/empty.png" mode="widthFix"></image>
<view class="content">暂无关键经历</view>
</view>
</view>
<view class="card">
<view class="title">
<image class="bg" src="@/static/icon/title-bg.png" />
<view class="text">荣誉及证书情况</view>
</view>
<ul class="certificate-box">
<li class="certificate-item" v-for="(item, index) in userInfo?.certificateList" :key="item.id">{{ item.name }}</li>
</ul>
<view v-if="!userInfo?.certificateList?.length" class="empty-box">
<image class="img" src="@/static/icon/empty.png" mode="widthFix"></image>
<view class="content">暂无荣誉证书</view>
</view>
</view>
</view>
</AppLayout>
</template>
<script setup>
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";
const { userInfo } = storeToRefs(useUserStore());
const { getUserResume } = useUserStore();
const { getDictData, oneDictData } = useDictStore();
</script>
<style lang="scss" scoped>
.btn {
display: flex;
justify-content: space-between;
align-items: center;
width: 60rpx;
height: 60rpx;
image {
height: 100%;
width: 100%;
}
}
.card-top {
width: 100%;
border-radius: 8rpx;
box-sizing: border-box;
background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.9));
}
.card {
width: 100%;
border-radius: 8rpx;
box-sizing: border-box;
background: #fff;
padding: 24rpx;
margin-top: 24rpx;
.title {
position: relative;
.bg {
width: 108rpx;
height: 16rpx;
position: absolute;
left: 0;
bottom: 0;
}
.text {
margin-left: 20rpx;
font-size: 30rpx;
font-weight: bold;
color: #333;
}
}
}
.skill-box {
display: flex;
flex-wrap: wrap;
gap: 16rpx;
margin-top: 24rpx;
.skill-item {
padding: 8rpx 20rpx;
font-size: 24rpx;
color: #333;
background: #e7f1ff;
border-radius: 8rpx;
}
}
.exp-box {
display: flex;
flex-wrap: wrap;
gap: 24rpx;
margin-top: 24rpx;
.exp-item {
font-size: 26rpx;
color: #333;
}
}
.certificate-box {
margin-top: 24rpx;
padding-inline-start: 40rpx !important;
.certificate-item {
font-size: 26rpx;
color: #333;
margin-bottom: 24rpx;
}
}
image {
width: 100%;
height: 100%;
}
.mys-container {
padding: 28rpx;
.info {
display: flex;
align-items: center;
padding: 24rpx;
.avatar {
width: 160rpx;
height: 160rpx;
margin-right: 24rpx;
}
.info-right {
height: 160rpx;
flex: 1;
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: space-between;
.name {
font-size: 40rpx;
font-weight: bold;
}
.des {
font-size: 26rpx;
color: #999999;
}
.phone {
display: flex;
align-items: center;
font-size: 26rpx;
color: #999999;
.call-icon {
width: 24rpx;
height: 24rpx;
margin-right: 5rpx;
}
}
}
}
.info-bottom {
background: linear-gradient(to right, #91b6ff, #87afff, #b7adff);
border-radius: 0 0 8rpx 8rpx;
padding: 12rpx 24rpx;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 26rpx;
color: #333;
}
.des-card {
padding: 24rpx;
font-size: 26rpx;
color: #666;
display: flex;
flex-direction: column;
gap: 12rpx;
}
.empty-box {
padding: 80rpx;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
.img {
width: 100%;
}
.content {
margin-top: 24rpx;
font-size: 30rpx;
color: #666;
}
}
}
</style>

View File

@@ -1,263 +1,281 @@
{ {
"pages": [ //pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages "pages": [
//pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "青岛智慧就业平台",
// #ifdef H5
"navigationStyle": "custom"
// #endif
}
},
{
"path": "pages/mine/mine",
"style": {
"navigationBarTitleText": "我的",
"navigationStyle": "custom"
}
},
{
"path": "pages/msglog/msglog",
"style": {
"navigationBarTitleText": "消息",
"navigationStyle": "custom",
"enablePullDownRefresh": false
}
},
{
"path": "pages/careerfair/careerfair",
"style": {
"navigationBarTitleText": "招聘会",
"navigationStyle": "custom"
}
},
{
"path": "pages/login/login",
"style": {
"navigationBarTitleText": "AI+就业服务程序",
"navigationStyle": "custom"
}
},
{
"path": "pages/nearby/nearby",
"style": {
"navigationBarTitleText": "附近",
"navigationBarBackgroundColor": "#4778EC",
"navigationBarTextStyle": "white",
"navigationStyle": "custom"
}
},
{
"path": "pages/chat/chat",
"style": {
"navigationBarTitleText": "AI+",
"navigationBarBackgroundColor": "#4778EC",
"navigationBarTextStyle": "white",
"enablePullDownRefresh": false,
// #ifdef H5
"navigationStyle": "custom"
//#endif
}
},
{
"path": "pages/search/search",
"style": {
"navigationBarTitleText": "",
"navigationStyle": "custom"
}
}
],
"subpackages": [
{
"root": "packageA",
"pages": [
{ {
"path": "pages/index/index", "path": "pages/choiceness/choiceness",
"style": { "style": {
"navigationBarTitleText": "青岛智慧就业平台", "navigationBarTitleText": "精选",
// #ifdef H5 "navigationBarBackgroundColor": "#4778EC",
"navigationStyle": "custom" "navigationBarTextStyle": "white",
// #endif "navigationStyle": "custom"
} }
}, },
{ {
"path": "pages/mine/mine", "path": "pages/post/post",
"style": { "style": {
"navigationBarTitleText": "我的", "navigationBarTitleText": "职位详情",
"navigationStyle": "custom" "navigationBarBackgroundColor": "#4778EC",
} "navigationBarTextStyle": "white",
"navigationStyle": "custom"
}
}, },
{ {
"path": "pages/msglog/msglog", "path": "pages/UnitDetails/UnitDetails",
"style": { "style": {
"navigationBarTitleText": "消息", "navigationBarTitleText": "单位详情",
"navigationStyle": "custom", "navigationBarBackgroundColor": "#4778EC",
"enablePullDownRefresh": false "navigationBarTextStyle": "white",
} "navigationStyle": "custom"
}
}, },
{ {
"path": "pages/careerfair/careerfair", "path": "pages/exhibitors/exhibitors",
"style": { "style": {
"navigationBarTitleText": "招聘会", "navigationBarTitleText": "参展单位",
"navigationStyle": "custom" "navigationBarBackgroundColor": "#4778EC",
} "navigationBarTextStyle": "white",
"navigationStyle": "custom"
}
}, },
{ {
"path": "pages/login/login", "path": "pages/myResume/myResume",
"style": { "style": {
"navigationBarTitleText": "AI+就业服务程序", "navigationBarTitleText": "我的简历",
"navigationStyle": "custom" "navigationBarBackgroundColor": "#FFFFFF",
} "navigationStyle": "custom"
}
}, },
{ {
"path": "pages/nearby/nearby", "path": "pages/vCard/vCard",
"style": { "style": {
"navigationBarTitleText": "附近", "navigationBarTitleText": "点子名片",
"navigationBarBackgroundColor": "#4778EC", "navigationBarBackgroundColor": "#FFFFFF",
"navigationBarTextStyle": "white", "navigationStyle": "custom"
"navigationStyle": "custom" }
}
}, },
{ {
"path": "pages/chat/chat", "path": "pages/Intendedposition/Intendedposition",
"style": { "style": {
"navigationBarTitleText": "AI+", "navigationBarTitleText": "投递记录",
"navigationBarBackgroundColor": "#4778EC", "navigationBarBackgroundColor": "#FFFFFF"
"navigationBarTextStyle": "white", }
"enablePullDownRefresh": false,
// #ifdef H5
"navigationStyle": "custom"
//#endif
}
}, },
{ {
"path": "pages/search/search", "path": "pages/collection/collection",
"style": { "style": {
"navigationBarTitleText": "", "navigationBarTitleText": "我的收藏",
"navigationStyle": "custom" "navigationBarBackgroundColor": "#FFFFFF",
} "navigationStyle": "custom"
}
},
{
"path": "pages/browseJob/browseJob",
"style": {
"navigationBarTitleText": "我的浏览",
"navigationBarBackgroundColor": "#FFFFFF",
"navigationStyle": "custom"
}
},
{
"path": "pages/addPosition/addPosition",
"style": {
"navigationBarTitleText": "添加岗位",
"navigationStyle": "custom"
}
},
{
"path": "pages/selectDate/selectDate",
"style": {
"navigationBarTitleText": "",
"navigationStyle": "custom"
}
},
{
"path": "pages/personalInfo/personalInfo",
"style": {
"navigationBarTitleText": "个人信息",
"navigationStyle": "custom"
}
},
{
"path": "pages/jobExpect/jobExpect",
"style": {
"navigationBarTitleText": "求职期望",
"navigationStyle": "custom"
}
},
{
"path": "pages/reservation/reservation",
"style": {
"navigationBarTitleText": "我的预约",
"navigationBarBackgroundColor": "#FFFFFF"
}
},
{
"path": "pages/choicenessList/choicenessList",
"style": {
"navigationBarTitleText": "精选企业",
"navigationBarBackgroundColor": "#FFFFFF",
"navigationStyle": "custom"
}
},
{
"path": "pages/newJobPosition/newJobPosition",
"style": {
"navigationBarTitleText": "新职位推荐",
"navigationBarBackgroundColor": "#FFFFFF"
}
},
{
"path": "pages/systemNotification/systemNotification",
"style": {
"navigationBarTitleText": "系统通知",
"navigationBarBackgroundColor": "#FFFFFF"
}
},
{
"path": "pages/tiktok/tiktok",
"style": {
"navigationBarTitleText": "",
"navigationBarBackgroundColor": "#FFFFFF",
"navigationStyle": "custom"
}
},
{
"path": "pages/moreJobs/moreJobs",
"style": {
"navigationBarTitleText": "更多岗位",
"navigationBarBackgroundColor": "#FFFFFF"
}
} }
]
], }
"subpackages": [{ ],
"root": "packageA", "tabBar": {
"pages": [{ "custom": true,
"path": "pages/choiceness/choiceness", "display": "none",
"style": { "color": "#5E5F60",
"navigationBarTitleText": "精选", "selectedColor": "#256BFA",
"navigationBarBackgroundColor": "#4778EC", "borderStyle": "black",
"navigationBarTextStyle": "white", "backgroundColor": "#ffffff",
"navigationStyle": "custom" "midButton": {
} "width": "50px",
}, { "height": "50px",
"path": "pages/post/post", "backgroundImage": "static/tabbar/logo2copy.png"
"style": {
"navigationBarTitleText": "职位详情",
"navigationBarBackgroundColor": "#4778EC",
"navigationBarTextStyle": "white",
"navigationStyle": "custom"
}
}, {
"path": "pages/UnitDetails/UnitDetails",
"style": {
"navigationBarTitleText": "单位详情",
"navigationBarBackgroundColor": "#4778EC",
"navigationBarTextStyle": "white",
"navigationStyle": "custom"
}
}, {
"path": "pages/exhibitors/exhibitors",
"style": {
"navigationBarTitleText": "参展单位",
"navigationBarBackgroundColor": "#4778EC",
"navigationBarTextStyle": "white",
"navigationStyle": "custom"
}
}, {
"path": "pages/myResume/myResume",
"style": {
"navigationBarTitleText": "我的简历",
"navigationBarBackgroundColor": "#FFFFFF",
"navigationStyle": "custom"
}
}, {
"path": "pages/Intendedposition/Intendedposition",
"style": {
"navigationBarTitleText": "投递记录",
"navigationBarBackgroundColor": "#FFFFFF"
}
}, {
"path": "pages/collection/collection",
"style": {
"navigationBarTitleText": "我的收藏",
"navigationBarBackgroundColor": "#FFFFFF",
"navigationStyle": "custom"
}
},
{
"path": "pages/browseJob/browseJob",
"style": {
"navigationBarTitleText": "我的浏览",
"navigationBarBackgroundColor": "#FFFFFF",
"navigationStyle": "custom"
}
},
{
"path": "pages/addPosition/addPosition",
"style": {
"navigationBarTitleText": "添加岗位",
"navigationStyle": "custom"
}
},
{
"path": "pages/selectDate/selectDate",
"style": {
"navigationBarTitleText": "",
"navigationStyle": "custom"
}
},
{
"path": "pages/personalInfo/personalInfo",
"style": {
"navigationBarTitleText": "个人信息",
"navigationStyle": "custom"
}
},
{
"path": "pages/jobExpect/jobExpect",
"style": {
"navigationBarTitleText": "求职期望",
"navigationStyle": "custom"
}
},
{
"path": "pages/reservation/reservation",
"style": {
"navigationBarTitleText": "我的预约",
"navigationBarBackgroundColor": "#FFFFFF"
}
},
{
"path": "pages/choicenessList/choicenessList",
"style": {
"navigationBarTitleText": "精选企业",
"navigationBarBackgroundColor": "#FFFFFF",
"navigationStyle": "custom"
}
},
{
"path": "pages/newJobPosition/newJobPosition",
"style": {
"navigationBarTitleText": "新职位推荐",
"navigationBarBackgroundColor": "#FFFFFF"
}
},
{
"path": "pages/systemNotification/systemNotification",
"style": {
"navigationBarTitleText": "系统通知",
"navigationBarBackgroundColor": "#FFFFFF"
}
},
{
"path": "pages/tiktok/tiktok",
"style": {
"navigationBarTitleText": "",
"navigationBarBackgroundColor": "#FFFFFF",
"navigationStyle": "custom"
}
},
{
"path": "pages/moreJobs/moreJobs",
"style": {
"navigationBarTitleText": "更多岗位",
"navigationBarBackgroundColor": "#FFFFFF"
}
}
]
}],
"tabBar": {
"custom": true,
"display": "none",
"color": "#5E5F60",
"selectedColor": "#256BFA",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"midButton": {
"width": "50px",
"height": "50px",
"backgroundImage": "static/tabbar/logo2copy.png"
},
"list": [{
"pagePath": "pages/index/index",
"iconPath": "static/tabbar/calendar.png",
"selectedIconPath": "static/tabbar/calendared.png",
"text": "职位"
},
{
"pagePath": "pages/careerfair/careerfair",
"iconPath": "static/tabbar/post.png",
"selectedIconPath": "static/tabbar/posted.png",
"text": "招聘会"
},
{
"pagePath": "pages/chat/chat",
"iconPath": "static/tabbar/logo3.png",
"selectedIconPath": "static/tabbar/logo3.png"
},
{
"pagePath": "pages/msglog/msglog",
"iconPath": "static/tabbar/chat4.png",
"selectedIconPath": "static/tabbar/chat4ed.png",
"text": "消息"
},
{
"pagePath": "pages/mine/mine",
"iconPath": "static/tabbar/mine.png",
"selectedIconPath": "static/tabbar/mined.png",
"text": "我的"
}
]
}, },
"globalStyle": { "list": [
"navigationBarTextStyle": "black", {
"navigationBarTitleText": "uni-app", "pagePath": "pages/index/index",
"navigationBarBackgroundColor": "#F8F8F8", "iconPath": "static/tabbar/calendar.png",
"backgroundColor": "#F8F8F8", "selectedIconPath": "static/tabbar/calendared.png",
// "enablePullDownRefresh": false, "text": "职位"
// "navigationStyle": "custom", },
"rpxCalcBaseDeviceWidth": 375, {
"rpxCalcMaxDeviceWidth": 750, "pagePath": "pages/careerfair/careerfair",
"rpxCalcIncludeWidth": 750 "iconPath": "static/tabbar/post.png",
}, "selectedIconPath": "static/tabbar/posted.png",
"uniIdRouter": {} "text": "招聘会"
} },
{
"pagePath": "pages/chat/chat",
"iconPath": "static/tabbar/logo3.png",
"selectedIconPath": "static/tabbar/logo3.png"
},
{
"pagePath": "pages/msglog/msglog",
"iconPath": "static/tabbar/chat4.png",
"selectedIconPath": "static/tabbar/chat4ed.png",
"text": "消息"
},
{
"pagePath": "pages/mine/mine",
"iconPath": "static/tabbar/mine.png",
"selectedIconPath": "static/tabbar/mined.png",
"text": "我的"
}
]
},
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8",
// "enablePullDownRefresh": false,
// "navigationStyle": "custom",
"rpxCalcBaseDeviceWidth": 375,
"rpxCalcMaxDeviceWidth": 750,
"rpxCalcIncludeWidth": 750
},
"uniIdRouter": {}
}

View File

@@ -296,12 +296,10 @@ function complete() {
display: flex display: flex
flex-wrap: wrap flex-wrap: wrap
.nx-item .nx-item
padding: 20rpx 28rpx margin: 12rpx 12rpx 0 0;
width: fit-content padding: 12rpx 25rpx;
border-radius: 12rpx 12rpx 12rpx 12rpx; border-radius: 12rpx 12rpx 12rpx 12rpx;
border: 2rpx solid #E8EAEE; border: 2rpx solid #E8EAEE;
margin-right: 24rpx
margin-top: 24rpx
.nx-item::before .nx-item::before
position: absolute; position: absolute;
right: 20rpx; right: 20rpx;

View File

@@ -32,7 +32,7 @@
</view> </view>
</view> </view>
<view class="mini-cards"> <view class="mini-cards">
<view class="card-top btn-feel"> <view class="card-top btn-feel" @click="navTo('/packageA/pages/personalInfo/personalInfo')">
<view class="top-title line_1"> <view class="top-title line_1">
<text>{{ userInfo.name || '暂无用户名' }}</text> <text>{{ userInfo.name || '暂无用户名' }}</text>
&nbsp;|&nbsp; &nbsp;|&nbsp;
@@ -44,7 +44,7 @@
<text v-if="userInfo.jobTitle.length - 1 !== index">|</text> <text v-if="userInfo.jobTitle.length - 1 !== index">|</text>
</text> </text>
</view> </view>
<view class="top-btn button-click" @click="navTo('/packageA/pages/personalInfo/personalInfo')"> <view class="top-btn button-click" >
修改简历 修改简历
</view> </view>
</view> </view>

BIN
static/icon/back-white.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 187 B

BIN
static/icon/call.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 380 B

BIN
static/icon/title-bg.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -1,8 +1,8 @@
{ {
"hash": "8cb75570", "hash": "ca4965da",
"configHash": "01aaac4c", "configHash": "0b32ae75",
"lockfileHash": "5d26acb0", "lockfileHash": "e3b0c442",
"browserHash": "4b09b340", "browserHash": "9e383778",
"optimized": {}, "optimized": {},
"chunks": {} "chunks": {}
} }