5 Commits

3 changed files with 46 additions and 5 deletions

View File

@@ -153,6 +153,7 @@ function back() {
// delta: 1 // delta: 1
// }) // })
window.location.href='https://www.xjksly.cn/mechine-single-vue/' window.location.href='https://www.xjksly.cn/mechine-single-vue/'
// uni.reLaunch({ // uni.reLaunch({
// url: '/pages/index/index' // url: '/pages/index/index'
// }) // })
@@ -309,8 +310,8 @@ function formatYear(dateStr) {
view{box-sizing: border-box;display: block;} view{box-sizing: border-box;display: block;}
.container{ .container{
background-color: #FFFFFF; background-color: #FFFFFF;
min-height: 100vh; min-height: 1920px;
min-width: 100vw; min-width: 1080px;
box-sizing: border-box; box-sizing: border-box;
} }
/* 自定义导航栏 */ /* 自定义导航栏 */

View File

@@ -80,7 +80,8 @@
{ {
"path": "pages/resume-guide/resume-guide", "path": "pages/resume-guide/resume-guide",
"style": { "style": {
"navigationBarTitleText": "简历制作指导" "navigationBarTitleText": "简历制作指导",
"navigationStyle": "custom"
} }
}, },
{ {

View File

@@ -1,5 +1,12 @@
<template> <template>
<AppLayout back-gorund-color="#FFFFFF"> <AppLayout back-gorund-color="#FFFFFF">
<view class="head-nav">
<view class="head-back" @click="navBack">
</view>
<view class="head-title">
简历制作指导
</view>
</view>
<view class="resume-guide-container"> <view class="resume-guide-container">
<!-- 页面标题 --> <!-- 页面标题 -->
<view class="page-header"> <view class="page-header">
@@ -91,7 +98,9 @@ const warnings = ref([
{ title: '格式混乱', desc: '保持统一的字体、字号和排版风格' }, { title: '格式混乱', desc: '保持统一的字体、字号和排版风格' },
{ title: '缺乏针对性', desc: '针对不同岗位调整简历内容' } { title: '缺乏针对性', desc: '针对不同岗位调整简历内容' }
]); ]);
const navBack = () => {
window.location.href = 'https://www.xjksly.cn/mechine-single-vue/';
};
// 开始制作简历 // 开始制作简历
const startCreateResume = () => { const startCreateResume = () => {
navTo('/packageA/pages/myResume/myResume'); navTo('/packageA/pages/myResume/myResume');
@@ -109,7 +118,37 @@ const viewExampleResume = () => {
background: #FFFFFF; background: #FFFFFF;
min-height: 100vh; min-height: 100vh;
} }
.head-nav{
height: 120rpx;
background: #F5F5F5;
display: flex;
align-items: center;
justify-content: center;
}
.head-title{
font-size: 60rpx;
font-weight: 600;
color: #1A1A1A;
}
.head-back{
position: fixed;
left: 20rpx;
display: flex;
align-items: center;
justify-content: center;
margin-right: 30rpx;
width: 80rpx;
height: 80rpx;
&::before {
content: '';
display: block;
width: 30rpx;
height: 30rpx;
border-left: 4rpx solid #1A1A1A;
border-top: 4rpx solid #1A1A1A;
transform: rotate(-45deg);
}
}
.page-header { .page-header {
text-align: center; text-align: center;
margin-bottom: 42rpx; margin-bottom: 42rpx;