zaijin 2 年之前
父節點
當前提交
caaa5034c5

+ 8 - 9
h5_web/common/http.interceptor.js

@@ -36,15 +36,14 @@ const install = (Vue, vm) => {
     } else if (res.msg == '令牌不能为空' || res.code == 401) {
       const backUrl = location.href;
       const loginUrl = 'phoneLogin';
-      if (backUrl.indexOf(loginUrl) > 0) {
-      } else {
-        localStorage.setItem('backUrl', location.href);
-        store.state.vuex_hasLogin = false;
-        alert('还未登录,即将跳转登录');
-        uni.navigateTo({
-          url: '/pages/phoneLogin/phoneLogin'
-        });
-        return;
+      if (backUrl.indexOf(loginUrl) === (-1)) {
+				localStorage.setItem('veteransBackUrl', location.href);
+				store.state.vuex_hasLogin = false;
+				alert('还未登录,即将跳转登录');
+				uni.navigateTo({
+				  url: '/pages/phoneLogin/phoneLogin'
+				});
+				return;
       }
     } else {
       uni.showToast({

+ 132 - 0
h5_web/components/clock-learn/clock.vue

@@ -0,0 +1,132 @@
+<template>
+	<view class="page">
+		<view style="z-index: 10;" :class="isfan?'transform-180 transform-hidden transform-3d':'transform-0'"
+			class="box"
+			:style="'border-radius: '+ parseInt(long*0.1) +'px;' + 'clip:rect(0px,'+ long +'px,'+ parseInt(long*0.5) +'px,0px);'">
+			<view class="hr hr-center" :style="'height: ' + parseInt(long*0.02) + 'px;'"></view>
+			<view class="font-full num-center" :style="'font-size:'+ parseInt(long*0.5) +'px;'" v-text="old"></view>
+		</view>
+		<view style="z-index: 9;"
+			:class="isfan?'transform-0 transform-3d transform-hidden':'transform-180 transform-hidden'" class="box"
+			:style="'border-radius: '+ parseInt(long*0.1) +'px;' +'clip:rect('+ parseInt(long*0.5) +'px,'+ long +'px,'+ long +'px,0px);'">
+			<view class="hr hr-center" :style="'height: ' + parseInt(long*0.02) + 'px;'"></view>
+			<view class="font-full num-center" :style="'font-size:'+ parseInt(long*0.5) +'px;'" v-text="num"></view>
+		</view>
+		<view style="z-index: 2;" class="box"
+			:style="'border-radius: '+ parseInt(long*0.1) +'px;' + (isfan?('clip:rect('+ parseInt(long*0.5) +'px,'+ long +'px,'+ long +'px,0px);'):'')">
+			<view class="hr hr-center" :style="'height: ' + parseInt(long*0.02) + 'px;'"></view>
+			<view class="font-full num-center" :style="'font-size:'+ parseInt(long*0.5) +'px;'" v-text="old"></view>
+		</view>
+		<view style="z-index: 1;" class="box"
+			:style="'border-radius: '+ parseInt(long*0.1) +'px;' + (isfan?('clip:rect(0px,'+ long +'px,'+ parseInt(long*0.5) +'px,0px);'):'')">
+			<view class="hr hr-center" :style="'height: ' + parseInt(long*0.02) + 'px;'"></view>
+			<view class="font-full num-center" :style="'font-size:'+ parseInt(long*0.5) +'px;'" v-text="num"></view>
+		</view>
+		<block v-if="apm">
+			<view class="apm" :style="'margin:'+parseInt(long*0.1)+'px;font-size:'+parseInt(long*0.1)+'px;'"
+				v-text="apm"></view>
+		</block>
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				old: 0,
+				isfan: false
+			}
+		},
+		props: {
+			num: {
+				default: ''
+			},
+			long: {
+				default: 0
+			},
+			apm: {
+				default: ''
+			}
+		},
+		watch: {
+			num() {
+				this.isfan = true;
+				setTimeout(() => {
+					this.old = this.num;
+					this.isfan = false;
+				}, 600)
+			}
+		},
+		created() {
+			this.old = this.num;
+		},
+		methods: {}
+	}
+</script>
+
+<style>
+	.page {
+		width: 100%;
+		height: 100%;
+		position: relative;
+	}
+
+	.box {
+		position: absolute;
+		width: 100%;
+		height: 100%;
+		background-image: linear-gradient(#161616, #111111);
+	}
+
+	.font-full {
+		font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
+		font-weight: bold;
+		color: #bbb;
+		/* background-color: #333; */
+	}
+
+	.num-center {
+		text-align: center;
+		line-height: 150%;
+		height: 100%;
+	}
+
+	.hr-center {
+		position: absolute;
+		top: 50%;
+		right: 0;
+		left: 0;
+		bottom: 0;
+	}
+
+	.hr {
+		width: 100%;
+		background-color: #000000;
+	}
+
+	.transform-180 {
+		transform: rotateX(180deg);
+	}
+
+	.transform-3d {
+		transition: 0.6s;
+		transform-style: preserve-3d;
+
+	}
+
+	.transform-hidden {
+		backface-visibility: hidden;
+	}
+
+	.transform-0 {
+		transform: rotateX(0deg);
+	}
+
+	.apm {
+		position: absolute;
+		bottom: 0;
+		color: #bbb;
+		font-weight: bold;
+		z-index: 11;
+	}
+</style>

+ 116 - 0
h5_web/components/clock-learn/index.vue

@@ -0,0 +1,116 @@
+<template>
+	<view class="page flex-center" :class="cross?'column':'row'">
+		<view :style="'width:'+long+'px;'+'height:'+long+'px;'" class="clock" @click="showApm()">
+			<clock :num='hours' :long="long" :apm="apm" style="height: 100% !important;"></clock>
+		</view>
+		<view :style="'width:'+long+'px;'+'height:'+long+'px;'" class="clock" @click="hidden()">
+			<clock :num='minutes' :long="long" style="height: 100% !important;"></clock>
+		</view>
+		<block v-if="isshow">
+			<view :style="'width:'+long+'px;'+'height:'+long+'px;'" class="clock">
+				<clock :num='seconds' :long="long" style="height: 100% !important;"></clock>
+			</view>
+		</block>
+	</view>
+</template>
+
+<script>
+	import clock from './clock.vue'
+	export default {
+		components: {
+			clock
+		},
+		data() {
+			return {
+				hours: '',
+				minutes: '',
+				seconds: '',
+				width: 0,
+				long: 60,
+				cross: false,
+				isshow: true,
+				isapm: false,
+				apm: ''
+			}
+		},
+		created() {
+			this.timer();
+			// #ifdef APP-PLUS
+			// 屏幕常亮
+			uni.setKeepScreenOn({
+				keepScreenOn: true
+			});
+			// 隐藏状态栏
+			plus.navigator.setFullscreen(true);
+			// #endif
+		},
+		watch: {
+			hours() {
+				// console.log('时');
+			},
+			minutes() {
+				// console.log('分');
+			},
+			seconds() {
+				// console.log(this.seconds + '秒');
+			}
+		},
+		methods: {
+			timer() {
+				let date = new Date()
+				let hours = date.getHours().toString()
+				this.apm = '';
+				if (this.isapm && hours <= 12) {
+					this.apm = 'AM'
+				}
+				if (this.isapm && hours > 12) {
+					hours = hours - 12;
+					this.apm = 'PM'
+				}
+				let minutes = date.getMinutes().toString();
+				minutes = minutes >= 10 ? minutes : ('0' + minutes);
+				let seconds = date.getSeconds().toString();
+				seconds = seconds >= 10 ? seconds : ('0' + seconds);
+				if (this.hours != hours) {
+					this.hours = hours;
+				}
+				if (this.minutes != minutes) {
+					this.minutes = minutes;
+				}
+				if (this.seconds != seconds) {
+					this.seconds = seconds;
+				}
+				setTimeout(() => {
+					this.timer()
+				}, 100);
+			},
+			hidden() {
+				this.isshow = !this.isshow;
+				this.init();
+			},
+			showApm() {
+				this.isapm = !this.isapm;
+			}
+		}
+	}
+</script>
+
+<style>
+	.flex-center {
+		display: flex;
+		justify-content: center;
+		align-items: center;
+	}
+
+	.row {
+		flex-direction: row;
+	}
+
+	.column {
+		flex-direction: column;
+	}
+
+	.clock {
+		padding: 2%;
+	}
+</style>

+ 672 - 664
h5_web/pages.json

@@ -1,666 +1,674 @@
 {
-  "easycom": {
-    "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
-  },
-  "pages": [
-    {
-      "path": "pages/index/index",
-      "style": {
-        "navigationStyle": "custom",
-        "navigationBarTitleText": "首页"
-      }
-    },
-    {
-      "path": "pages/mycode/mycode",
-      "style": {
-        "navigationStyle": "custom",
-        "navigationBarTitleText": "退役军人码"
-      }
-    },
-    {
-      "path": "pages/authentication/authentication",
-      "style": {
-        "navigationBarTitleText": "退役军人职业教育码申请",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/phoneLogin/phoneLogin",
-      "style": {
-        "navigationStyle": "custom",
-        "navigationBarTitleText": "手机登录"
-      }
-    },
-    {
-      "path": "pages/bannerDetails/bannerDetails",
-      "style": {
-        "navigationBarTitleText": "详情页",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/policyNews/policyNews",
-      "style": {
-        "navigationBarTitleText": "政策资讯"
-      }
-    },
-    {
-      "path": "pages/policyNewsDetails/policyNewsDetails",
-      "style": {
-        "navigationBarTitleText": "文章详情"
-      }
-    },
-    {
-      "path": "pages/newsDetails/newsDetails",
-      "style": {
-        "navigationBarTitleText": "新闻详情",
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/login/code",
-      "style": {
-        "navigationBarTitleText": "验证码"
-      }
-    },
-    {
-      "path": "pages/mine/mine",
-      "style": {
-        "navigationBarTitleText": "个人中心",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/center/center",
-      "style": {
-        "navigationBarTitleText": "中心",
-        "enablePullDownRefresh": false
-      }
-    },
-    {
-      "path": "pages/privacyPolicy/privacyPolicy",
-      "style": {
-        "navigationBarTitleText": "隐私政策"
-      }
-    },
-    {
-      "path": "pages/schools/schools",
-      "style": {
-        "navigationBarTitleText": "学院列表",
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/skillsTraining/skillsTraining",
-      "style": {
-        "navigationBarTitleText": "技能培训",
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/basicTraining/basicTraining",
-      "style": {
-        "navigationBarTitleText": "适应性培训",
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/basicTraining/myBasicTraining/myBasicTraining",
-      "style": {
-        "navigationBarTitleText": "我的适应性培训",
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/upgrade/upgrade/upgrade",
-      "style": {
-        "navigationBarTitleText": "学历提升",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/upgrade/introductionDetails/introductionDetails",
-      "style": {
-        "navigationBarTitleText": "学历提升",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/inbuild/inbuild",
-      "style": {
-        "navigationBarTitleText": "建设中"
-      }
-    },
-    {
-      "path": "pages/recruitment/recruitment",
-      "style": {
-        "navigationBarTitleText": "招聘就业",
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/myResume/myResume",
-      "style": {
-        "navigationBarTitleText": "简历",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/myResume/addExperience",
-      "style": {
-        "navigationBarTitleText": "添加工作经历",
-        "enablePullDownRefresh": false,
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/myResume/addEducation",
-      "style": {
-        "navigationBarTitleText": "添加培训与教育经历",
-        "enablePullDownRefresh": false,
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/personalModify/personalModify",
-      "style": {
-        "navigationBarTitleText": "个人资料修改",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white"
-      }
-    },
-    {
-      "path": "pages/schools/schools",
-      "style": {
-        "navigationBarTitleText": "学院列表",
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/skillsTraining/skillsTraining",
-      "style": {
-        "navigationBarTitleText": "技能培训"
-      }
-    },
-    {
-      "path": "pages/basicTraining/basicTraining",
-      "style": {
-        "navigationBarTitleText": "适应性培训"
-      }
-    },
-    {
-      "path": "pages/basicTraining/myBasicTraining/myBasicTraining",
-      "style": {
-        "navigationBarTitleText": "我的适应性培训",
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white"
-      }
-    },
-    {
-      "path": "pages/inbuild/inbuild",
-      "style": {
-        "navigationBarTitleText": "建设中"
-      }
-    },
-    {
-      "path": "pages/recruitment/recruitment",
-      "style": {
-        "navigationStyle": "custom",
-        "navigationBarTitleText": "招聘就业"
-      }
-    },
-    {
-      "path": "pages/myResume/myResume",
-      "style": {
-        "navigationBarTitleText": "简历",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#2a82e4",
-        "navigationBarTextStyle": "white"
-      }
-    },
-    {
-      "path": "pages/personalModify/personalModify",
-      "style": {
-        "navigationBarTitleText": "个人资料修改",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#fff"
-      }
-    },
-    {
-      "path": "pages/evaluationIntention/evaluationIntention",
-      "style": {
-        "navigationBarTitleText": "求职意向自我评价",
-        "enablePullDownRefresh": false,
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/myDelivery/myDelivery",
-      "style": {
-        "navigationBarTitleText": "我的投递",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/myInterview/myInterview",
-      "style": {
-        "navigationBarTitleText": "我的面试",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/myEvaluation/myEvaluation",
-      "style": {
-        "navigationBarTitleText": "我的评价",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white"
-      }
-    },
-    {
-      "path": "pages/setting/setting",
-      "style": {
-        "navigationBarTitleText": "设置",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/progressiveIntegral/progressiveIntegral",
-      "style": {
-        "navigationBarTitleText": "进步积分",
-        "enablePullDownRefresh": false,
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/cooperativeEnterprise/cooperativeEnterprise",
-      "style": {
-        "navigationBarTitleText": "企业列表",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/businessDetails/businessDetails",
-      "style": {
-        "navigationBarTitleText": "企业详情",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/jobDetails/jobDetails",
-      "style": {
-        "navigationBarTitleText": "职位详情",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/resumeDeliveryResults/resumeDeliveryResults",
-      "style": {
-        "navigationBarTitleText": "简历投递结果",
-        "enablePullDownRefresh": false,
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/applyEducationCode/applyEducationCode",
-      "style": {
-        "navigationBarTitleText": "退役军人职业教育码申请",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/applyEducationCode/applyEducationSuccess",
-      "style": {
-        "navigationBarTitleText": "退役军人职业教育码申请",
-        "enablePullDownRefresh": false,
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/newsInformation/newsInformation",
-      "style": {
-        "navigationBarTitleText": "新闻动态",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/schoolDetails/schoolDetails",
-      "style": {
-        "navigationBarTitleText": "学院详情",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/professionalDetails/professionalDetails",
-      "style": {
-        "navigationBarTitleText": "专业详情",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/policyInfo/policyInfo",
-      "style": {
-        "navigationBarTitleText": "政策资讯",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/notification/notification",
-      "style": {
-        "navigationBarTitleText": "消息通知",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/questionConsulting/questionConsulting",
-      "style": {
-        "navigationBarTitleText": "问题咨询",
-        "enablePullDownRefresh": false,
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/policyInfo/policyInfoDetails",
-      "style": {
-        "navigationBarTitleText": "政策资讯详情",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/integralRule/integralRule",
-      "style": {
-        "navigationBarTitleText": "积分规则",
-        "enablePullDownRefresh": false,
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/recruitStudents/recruitStudents",
-      "style": {
-        "navigationBarTitleText": "招生简章",
-        "enablePullDownRefresh": false,
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/upgrade/professionalIntroduction/professionalIntroduction",
-      "style": {
-        "navigationBarTitleText": "专业介绍",
-        "enablePullDownRefresh": false,
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/basicTraining/onlineTrainingDetails/onlineTrainingDetails",
-      "style": {
-        "navigationBarTitleText": "适应性培训线上课程",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/basicTraining/offlineTrainingDetails/offlineTrainingDetails",
-      "style": {
-        "navigationBarTitleText": "线下课程详情",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/upgrade/courseDetail/courseDetail",
-      "style": {
-        "navigationBarTitleText": "课程详细",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white"
-      }
-    },
-    {
-      "path": "pages/skillsTraining/registrationNotice/registrationNotice",
-      "style": {
-        "navigationBarTitleText": "报班通知",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white"
-      }
-    },
-    {
-      "path": "pages/mine/skillsTraining/skillsTraining",
-      "style": {
-        "navigationBarTitleText": "我的技能培训",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/skillsTraining/skillsPackage/skillsPackage",
-      "style": {
-        "navigationBarTitleText": "技能包",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white"
-      }
-    },
-    {
-      "path": "pages/skillsTraining/skillsTrainingCourse/skillsTrainingCourse",
-      "style": {
-        "navigationBarTitleText": "技能培训课程",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white"
-      }
-    },
-    {
-      "path": "pages/skillsTraining/submitSuccess/submitSuccess",
-      "style": {
-        "navigationBarTitleText": "",
-        "enablePullDownRefresh": false,
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/skillsTraining/courseDetailed/courseDetailed",
-      "style": {
-        "navigationBarTitleText": "课程详细",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/mine/skillsTraining/skillsTrainingDetails/skillsTrainingDetails",
-      "style": {
-        "navigationBarTitleText": "我的技能培训详情",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/skillsTraining/achievementCertificate/achievementCertificate",
-      "style": {
-        "navigationBarTitleText": "成绩和证书",
-        "enablePullDownRefresh": false,
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/skillsTraining/addAchievementCertificate/addAchievementCertificate",
-      "style": {
-        "navigationBarTitleText": "录入成绩与证书",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white"
-      }
-    },
-    {
-      "path": "pages/skillsTraining/certificateDetails/certificateDetails",
-      "style": {
-        "navigationBarTitleText": "证书详情",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white"
-      }
-    },
-    {
-      "path": "pages/notification/noticeDetails/noticeDetails",
-      "style": {
-        "navigationBarTitleText": "消息详情",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/upgrade/upgradeCourse/upgradeCourse",
-      "style": {
-        "navigationBarTitleText": "学历提升课程",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/webView/webView",
-      "style": {
-        "navigationBarTitleText": "",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white"
-      }
-    },
-    {
-      "path": "pages/entrepreneurshipGuidelines/entrepreneurshipGuidelines",
-      "style": {
-        "navigationBarTitleText": "创业指引",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/entrepreneurshipGuidelines/addPlan/addPlan",
-      "style": {
-        "navigationBarTitleText": "提交创业计划",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/entrepreneurshipGuidelines/planDetails/planDetails",
-      "style": {
-        "navigationBarTitleText": "创业计划详情",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white",
-        "navigationStyle": "custom"
-      }
-    },
-    {
-      "path": "pages/entrepreneurshipGuidelines/previewPdf/previewPdf",
-      "style": {
-        "navigationBarTitleText": "预览PDF",
-        "enablePullDownRefresh": false,
-        "navigationBarBackgroundColor": "#3D5D4C",
-        "navigationBarTextStyle": "white",
-        "navigationStyle": "custom"
-      }
-    }
-  ],
-  "globalStyle": {
-    "navigationBarTextStyle": "black",
-    "navigationBarTitleText": "uni-app",
-    "navigationBarBackgroundColor": "#F2F2F2",
-    "backgroundColor": "#F2F2F2"
-  },
-  "tabBar": {
-    "color": "#909399",
-    "selectedColor": "#303133",
-    "borderStyle": "black",
-    "backgroundColor": "#ffffff",
-    "list": [
-      {
-        "pagePath": "pages/index/index",
-        "iconPath": "static/icons/index-gray.png",
-        "selectedIconPath": "static/icons/index.png",
-        "text": "首页"
-      },
-      {
-        "pagePath": "pages/mycode/mycode",
-        "iconPath": "static/icons/code-gray.png",
-        "selectedIconPath": "static/icons/code.png",
-        "text": "退役军人码"
-      },
-      {
-        "pagePath": "pages/mine/mine",
-        "iconPath": "static/icons/mine-gray.png",
-        "selectedIconPath": "static/icons/mine.png",
-        "text": "我"
-      }
-    ]
-  }
+	"easycom": {
+		"^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
+	},
+	"pages": [{
+			"path": "pages/index/index",
+			"style": {
+				"navigationStyle": "custom",
+				"navigationBarTitleText": "首页"
+			}
+		},
+		{
+			"path": "pages/mycode/mycode",
+			"style": {
+				"navigationStyle": "custom",
+				"navigationBarTitleText": "退役军人码"
+			}
+		},
+		{
+			"path": "pages/authentication/authentication",
+			"style": {
+				"navigationBarTitleText": "退役军人职业教育码申请",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/phoneLogin/phoneLogin",
+			"style": {
+				"navigationStyle": "custom",
+				"navigationBarTitleText": "手机登录"
+			}
+		},
+		{
+			"path": "pages/bannerDetails/bannerDetails",
+			"style": {
+				"navigationBarTitleText": "详情页",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/policyNews/policyNews",
+			"style": {
+				"navigationBarTitleText": "政策资讯"
+			}
+		},
+		{
+			"path": "pages/policyNewsDetails/policyNewsDetails",
+			"style": {
+				"navigationBarTitleText": "文章详情"
+			}
+		},
+		{
+			"path": "pages/newsDetails/newsDetails",
+			"style": {
+				"navigationBarTitleText": "新闻详情",
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/login/code",
+			"style": {
+				"navigationBarTitleText": "验证码"
+			}
+		},
+		{
+			"path": "pages/mine/mine",
+			"style": {
+				"navigationBarTitleText": "个人中心",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/center/center",
+			"style": {
+				"navigationBarTitleText": "中心",
+				"enablePullDownRefresh": false
+			}
+		},
+		{
+			"path": "pages/privacyPolicy/privacyPolicy",
+			"style": {
+				"navigationBarTitleText": "隐私政策"
+			}
+		},
+		{
+			"path": "pages/schools/schools",
+			"style": {
+				"navigationBarTitleText": "学院列表",
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/skillsTraining/skillsTraining",
+			"style": {
+				"navigationBarTitleText": "技能培训",
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/basicTraining/basicTraining",
+			"style": {
+				"navigationBarTitleText": "适应性培训",
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/basicTraining/myBasicTraining/myBasicTraining",
+			"style": {
+				"navigationBarTitleText": "我的适应性培训",
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/upgrade/upgrade/upgrade",
+			"style": {
+				"navigationBarTitleText": "学历提升",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/upgrade/introductionDetails/introductionDetails",
+			"style": {
+				"navigationBarTitleText": "学历提升",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/inbuild/inbuild",
+			"style": {
+				"navigationBarTitleText": "建设中"
+			}
+		},
+		{
+			"path": "pages/recruitment/recruitment",
+			"style": {
+				"navigationBarTitleText": "招聘就业",
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/myResume/myResume",
+			"style": {
+				"navigationBarTitleText": "简历",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/myResume/addExperience",
+			"style": {
+				"navigationBarTitleText": "添加工作经历",
+				"enablePullDownRefresh": false,
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/myResume/addEducation",
+			"style": {
+				"navigationBarTitleText": "添加培训与教育经历",
+				"enablePullDownRefresh": false,
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/personalModify/personalModify",
+			"style": {
+				"navigationBarTitleText": "个人资料修改",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white"
+			}
+		},
+		{
+			"path": "pages/schools/schools",
+			"style": {
+				"navigationBarTitleText": "学院列表",
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/skillsTraining/skillsTraining",
+			"style": {
+				"navigationBarTitleText": "技能培训"
+			}
+		},
+		{
+			"path": "pages/basicTraining/basicTraining",
+			"style": {
+				"navigationBarTitleText": "适应性培训"
+			}
+		},
+		{
+			"path": "pages/basicTraining/myBasicTraining/myBasicTraining",
+			"style": {
+				"navigationBarTitleText": "我的适应性培训",
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white"
+			}
+		},
+		{
+			"path": "pages/inbuild/inbuild",
+			"style": {
+				"navigationBarTitleText": "建设中"
+			}
+		},
+		{
+			"path": "pages/recruitment/recruitment",
+			"style": {
+				"navigationStyle": "custom",
+				"navigationBarTitleText": "招聘就业"
+			}
+		},
+		{
+			"path": "pages/myResume/myResume",
+			"style": {
+				"navigationBarTitleText": "简历",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#2a82e4",
+				"navigationBarTextStyle": "white"
+			}
+		},
+		{
+			"path": "pages/personalModify/personalModify",
+			"style": {
+				"navigationBarTitleText": "个人资料修改",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#fff"
+			}
+		},
+		{
+			"path": "pages/evaluationIntention/evaluationIntention",
+			"style": {
+				"navigationBarTitleText": "求职意向自我评价",
+				"enablePullDownRefresh": false,
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/myDelivery/myDelivery",
+			"style": {
+				"navigationBarTitleText": "我的投递",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/myInterview/myInterview",
+			"style": {
+				"navigationBarTitleText": "我的面试",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/myEvaluation/myEvaluation",
+			"style": {
+				"navigationBarTitleText": "我的评价",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white"
+			}
+		},
+		{
+			"path": "pages/setting/setting",
+			"style": {
+				"navigationBarTitleText": "设置",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/progressiveIntegral/progressiveIntegral",
+			"style": {
+				"navigationBarTitleText": "进步积分",
+				"enablePullDownRefresh": false,
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/cooperativeEnterprise/cooperativeEnterprise",
+			"style": {
+				"navigationBarTitleText": "企业列表",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/businessDetails/businessDetails",
+			"style": {
+				"navigationBarTitleText": "企业详情",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/jobDetails/jobDetails",
+			"style": {
+				"navigationBarTitleText": "职位详情",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/resumeDeliveryResults/resumeDeliveryResults",
+			"style": {
+				"navigationBarTitleText": "简历投递结果",
+				"enablePullDownRefresh": false,
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/applyEducationCode/applyEducationCode",
+			"style": {
+				"navigationBarTitleText": "退役军人职业教育码申请",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/applyEducationCode/applyEducationSuccess",
+			"style": {
+				"navigationBarTitleText": "退役军人职业教育码申请",
+				"enablePullDownRefresh": false,
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/newsInformation/newsInformation",
+			"style": {
+				"navigationBarTitleText": "新闻动态",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/schoolDetails/schoolDetails",
+			"style": {
+				"navigationBarTitleText": "学院详情",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/professionalDetails/professionalDetails",
+			"style": {
+				"navigationBarTitleText": "专业详情",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/policyInfo/policyInfo",
+			"style": {
+				"navigationBarTitleText": "政策资讯",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/notification/notification",
+			"style": {
+				"navigationBarTitleText": "消息通知",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/questionConsulting/questionConsulting",
+			"style": {
+				"navigationBarTitleText": "问题咨询",
+				"enablePullDownRefresh": false,
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/policyInfo/policyInfoDetails",
+			"style": {
+				"navigationBarTitleText": "政策资讯详情",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/integralRule/integralRule",
+			"style": {
+				"navigationBarTitleText": "积分规则",
+				"enablePullDownRefresh": false,
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/recruitStudents/recruitStudents",
+			"style": {
+				"navigationBarTitleText": "招生简章",
+				"enablePullDownRefresh": false,
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/upgrade/professionalIntroduction/professionalIntroduction",
+			"style": {
+				"navigationBarTitleText": "专业介绍",
+				"enablePullDownRefresh": false,
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/basicTraining/onlineTrainingDetails/onlineTrainingDetails",
+			"style": {
+				"navigationBarTitleText": "适应性培训线上课程",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/basicTraining/offlineTrainingDetails/offlineTrainingDetails",
+			"style": {
+				"navigationBarTitleText": "线下课程详情",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/upgrade/courseDetail/courseDetail",
+			"style": {
+				"navigationBarTitleText": "课程详细",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white"
+			}
+		},
+		{
+			"path": "pages/skillsTraining/registrationNotice/registrationNotice",
+			"style": {
+				"navigationBarTitleText": "报班通知",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white"
+			}
+		},
+		{
+			"path": "pages/mine/skillsTraining/skillsTraining",
+			"style": {
+				"navigationBarTitleText": "我的技能培训",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/skillsTraining/skillsPackage/skillsPackage",
+			"style": {
+				"navigationBarTitleText": "技能包",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white"
+			}
+		},
+		{
+			"path": "pages/skillsTraining/skillsTrainingCourse/skillsTrainingCourse",
+			"style": {
+				"navigationBarTitleText": "技能培训课程",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white"
+			}
+		},
+		{
+			"path": "pages/skillsTraining/submitSuccess/submitSuccess",
+			"style": {
+				"navigationBarTitleText": "",
+				"enablePullDownRefresh": false,
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/skillsTraining/courseDetailed/courseDetailed",
+			"style": {
+				"navigationBarTitleText": "课程详细",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/mine/skillsTraining/skillsTrainingDetails/skillsTrainingDetails",
+			"style": {
+				"navigationBarTitleText": "我的技能培训详情",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/skillsTraining/achievementCertificate/achievementCertificate",
+			"style": {
+				"navigationBarTitleText": "成绩和证书",
+				"enablePullDownRefresh": false,
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/skillsTraining/addAchievementCertificate/addAchievementCertificate",
+			"style": {
+				"navigationBarTitleText": "录入成绩与证书",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white"
+			}
+		},
+		{
+			"path": "pages/skillsTraining/certificateDetails/certificateDetails",
+			"style": {
+				"navigationBarTitleText": "证书详情",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white"
+			}
+		},
+		{
+			"path": "pages/notification/noticeDetails/noticeDetails",
+			"style": {
+				"navigationBarTitleText": "消息详情",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/upgrade/upgradeCourse/upgradeCourse",
+			"style": {
+				"navigationBarTitleText": "学历提升课程",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/webView/webView",
+			"style": {
+				"navigationBarTitleText": "",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white"
+			}
+		},
+		{
+			"path": "pages/entrepreneurshipGuidelines/entrepreneurshipGuidelines",
+			"style": {
+				"navigationBarTitleText": "创业指引",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/entrepreneurshipGuidelines/addPlan/addPlan",
+			"style": {
+				"navigationBarTitleText": "提交创业计划",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/entrepreneurshipGuidelines/planDetails/planDetails",
+			"style": {
+				"navigationBarTitleText": "创业计划详情",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/entrepreneurshipGuidelines/previewPdf/previewPdf",
+			"style": {
+				"navigationBarTitleText": "预览PDF",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white",
+				"navigationStyle": "custom"
+			}
+		}, {
+			"path": "pages/offlineSignin/offlineSignin",
+			"style": {
+				"navigationBarTitleText": "线下培训签到",
+				"enablePullDownRefresh": false,
+				"navigationBarBackgroundColor": "#3D5D4C",
+				"navigationBarTextStyle": "white",
+				"navigationStyle": "custom"
+			}
+
+		}
+	],
+	"globalStyle": {
+		"navigationBarTextStyle": "black",
+		"navigationBarTitleText": "uni-app",
+		"navigationBarBackgroundColor": "#F2F2F2",
+		"backgroundColor": "#F2F2F2"
+	},
+	"tabBar": {
+		"color": "#909399",
+		"selectedColor": "#303133",
+		"borderStyle": "black",
+		"backgroundColor": "#ffffff",
+		"list": [{
+				"pagePath": "pages/index/index",
+				"iconPath": "static/icons/index-gray.png",
+				"selectedIconPath": "static/icons/index.png",
+				"text": "首页"
+			},
+			{
+				"pagePath": "pages/mycode/mycode",
+				"iconPath": "static/icons/code-gray.png",
+				"selectedIconPath": "static/icons/code.png",
+				"text": "退役军人码"
+			},
+			{
+				"pagePath": "pages/mine/mine",
+				"iconPath": "static/icons/mine-gray.png",
+				"selectedIconPath": "static/icons/mine.png",
+				"text": "我"
+			}
+		]
+	}
 }

+ 10 - 0
h5_web/pages/mycode/mycode.vue

@@ -92,6 +92,9 @@
 							<u-form-item label="薪资范围:" prop="salaryRangeName" :required="true">
 								<u-input v-model="conditionForm.salaryRangeName" placeholder="请选择您的薪资范围" type="select" @click="salaryRangeClick"/>
 							</u-form-item>
+							<u-form-item label="求职意向:" prop="intention" :required="true">
+								<u-input v-model="conditionForm.intention" placeholder="请输入您的求职意向" type="textarea"/>
+							</u-form-item>
 						</u-form>
 					</view>
 				</view>
@@ -145,6 +148,13 @@
 								message: '请选择薪资范围',
 								trigger: ['change', 'blur']
 							}
+						],
+						intention: [
+							{
+								required: true,
+								message: '请填写求职意向',
+								trigger: ['change', 'blur']
+							}
 						]
 					},
 					employmentStatusList: [],

+ 27 - 0
h5_web/pages/offlineSignin/offlineSignin.scss

@@ -0,0 +1,27 @@
+.sign-in {
+	background-color: #fafafa;
+	min-height: 100vh;
+	&-box {
+		padding: 30rpx;
+		width: 100%;
+		&-divider {
+			margin-top: 300rpx;
+			width: 100%;
+			height: 1px;
+			background-color: #E2E2E2;
+		}
+		&-datetime {
+			text-align: center;
+			margin-top: 200rpx;
+			.sibd-date {
+				margin-top: 30rpx;
+			}
+		}
+		&-button {
+			margin-top: 100rpx;
+			.sign-in-btn {
+				margin-bottom: 40rpx;
+			}
+		}
+	}
+}

+ 47 - 0
h5_web/pages/offlineSignin/offlineSignin.vue

@@ -0,0 +1,47 @@
+<template>
+	<view class="sign-in">
+		<view class="sign-in-box">
+			<view class="sign-in-box-divider"></view>
+			<view class="sign-in-box-datetime">
+				<view class="sibd-time">
+					<clock-learn />
+				</view>
+				<view class="sibd-date">
+					{{ $u.timeFormat(new Date(), 'mm月dd日') }}
+					{{ getDateString() }}
+				</view>
+			</view>
+			<view class="sign-in-box-button">
+				<u-button type="primary" class="sign-in-btn">立即签到</u-button>
+				<u-button type="info">签到记录</u-button>
+			</view>
+		</view>
+	</view>
+</template>
+
+<script>
+	import clockLearn from './../../components/clock-learn/index.vue'
+	export default {
+		components: {
+			clockLearn
+		},
+		data() {
+			return {
+			}
+		},
+		onShow() {
+		},
+		methods: {
+			getDateString() {
+				const weekList = ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'],
+					currentDate = new Date(),
+					week = currentDate.getDay();
+				return weekList[week]
+			}
+		},
+	}
+</script>
+
+<style lang="scss" scoped>
+	@import './offlineSignin.scss';
+</style>

+ 2 - 2
h5_web/pages/phoneLogin/phoneLogin.vue

@@ -48,7 +48,7 @@
 				toastType: '',
 				accessToken: '',
 				userId: '',
-				telError: false,
+				telError: false
 			}
 		},
 		onShow() {
@@ -158,7 +158,7 @@
 			},
 			// 跳转到首页
 			jumpIndex() {
-				let ret = localStorage.getItem('backUrl')
+				let ret = localStorage.getItem('veteransBackUrl')
 				if (ret && ret.indexOf('phoneLogin') < 0) {
 					// 截取url
 					const pagesIndex = ret.indexOf('pages')

+ 2 - 2
h5_web/vue.config.js

@@ -1,9 +1,9 @@
 module.exports = {
   devServer: {
     proxy: {
-      //配置跨域
+      // 配置跨域
       '/apis': {
-        target: 'http://api.veterans.hongweisoft.com/api', //搜狐的域名
+        target: 'http://api.veterans.hongweisoft.com/api',
         ws: false,
         changOrigin: true, //允许跨域
         pathRewrite: {