7 Commits

7 changed files with 63 additions and 13 deletions

View File

@@ -111,4 +111,8 @@ uni-modal,
body { body {
font-family: 'PingFangSC-Regular', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-family: 'PingFangSC-Regular', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
} }
html,body{
width: 1080px!important;
height: 1920px!important;
}
</style> </style>

View File

@@ -62,10 +62,9 @@ image {
/* height: 100%; */ /* height: 100%; */
} }
body, body,html {
html { width: 1080px!important;
height: 100%; height: 1920px!important;
width: 100%;
overflow-x: hidden; overflow-x: hidden;
} }

View File

@@ -2,6 +2,12 @@
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<style>
html,body{
width: 1080px!important;
height: 1920px!important;
}
</style>
<script> <script>
(function() { (function() {
var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' &&

View File

@@ -152,7 +152,8 @@ function back() {
// uni.navigateBack({ // uni.navigateBack({
// delta: 1 // delta: 1
// }) // })
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

@@ -209,7 +209,7 @@ export default {
// uni.navigateBack({ // uni.navigateBack({
// delta: 1 // delta: 1
// }) // })
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'
// }) // })
@@ -333,7 +333,7 @@ export default {
} }
.page { .page {
background-color: #f4f4f4 !important; background-color: #f4f4f4 !important;
height: 100vh; height: 1920px;
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: 100% auto; background-size: 100% auto;
} }

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;