7 Commits

7 changed files with 63 additions and 13 deletions

View File

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

View File

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

View File

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

View File

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

View File

@@ -209,7 +209,7 @@ export default {
// uni.navigateBack({
// delta: 1
// })
location.href='https://www.xjksly.cn/mechine-single-vue/'
window.location.href='https://www.xjksly.cn/mechine-single-vue/'
// uni.reLaunch({
// url: '/pages/index/index'
// })
@@ -333,7 +333,7 @@ export default {
}
.page {
background-color: #f4f4f4 !important;
height: 100vh;
height: 1920px;
background-repeat: no-repeat;
background-size: 100% auto;
}

View File

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

View File

@@ -1,5 +1,12 @@
<template>
<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="page-header">
@@ -91,7 +98,9 @@ const warnings = ref([
{ title: '格式混乱', desc: '保持统一的字体、字号和排版风格' },
{ title: '缺乏针对性', desc: '针对不同岗位调整简历内容' }
]);
const navBack = () => {
window.location.href = 'https://www.xjksly.cn/mechine-single-vue/';
};
// 开始制作简历
const startCreateResume = () => {
navTo('/packageA/pages/myResume/myResume');
@@ -109,7 +118,37 @@ const viewExampleResume = () => {
background: #FFFFFF;
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 {
text-align: center;
margin-bottom: 42rpx;