提交 cde555ca authored 作者: lihuihui's avatar lihuihui

改版3.0

上级 c061a04c
<template>
<div>
<div class="home-head">
<img src="https://zws-imgs-pub.ezijing.com/static/public/097c7cf05ebd01ac34743c50fb0ed9f1.png" alt="">
</div>
</div>
</template>
<script>
export default {
}
</script>
<style lang="scss" scoped>
.home-head{
img{
width: 100%;
display: block;
}
}
</style>
......@@ -68,7 +68,7 @@ export default {
margin-top: 20px;
h3 {
font-size: 16px;
color: #222;
color: #fff;
line-height: 1;
margin-bottom: 15px;
}
......@@ -76,8 +76,8 @@ export default {
}
.app-footer-main {
padding: 10px 0;
color: #222;
background-color: #f9f9f9;
color: #fff;
background-color: #A81A42;
.inner {
display: flex;
justify-content: space-between;
......@@ -88,7 +88,7 @@ export default {
margin-top: 10px;
line-height: 30px;
font-size: 12px;
color: #222;
color: #fff;
}
.right {
display: flex;
......@@ -96,20 +96,20 @@ export default {
.contact {
h3 {
font-size: 16px;
color: #222;
color: #fff;
line-height: 1;
margin-bottom: 15px;
}
p {
font-size: 12px;
color: #222;
color: #fff;
line-height: 24px;
}
}
.qrcode {
h3 {
font-size: 16px;
color: #222;
color: #fff;
line-height: 1;
margin-bottom: 15px;
}
......
<template>
<header class="app-header">
<section class="app-header-main">
<div class="poster"></div>
<div class="handle-btn">
<span @click="isLogin = true">用户登录</span>
<span>\</span>
<span @click="$router.push({ path: '/register' })">注册</span>
<div class="nav-box">
<div class="colors"></div>
<div class="header-mian">
<div class="logo-box" @click="$router.push({ path: '/' })">
<img src="http://zws-imgs-pub.oss-cn-beijing.aliyuncs.com/static/ezijing/logo/ezijing-logo.svg" alt="">
<div class="logo-text">
<p>金融产品数字化营销</p>
<p>职业技能等级证书</p>
</div>
</div>
<ul class="nav-box">
<template v-for="(item, index) in navList">
<router-link :to="item.path" :key="index">
<li :class="isClassShow(item)">{{ item.title }}</li>
</router-link>
</template>
</ul>
<div class="login" @click="isLogin = true">用户登陆/注册</div>
</div>
</section>
<section class="app-header-menu">
<ul>
<template v-for="(item, index) in navList">
<router-link :to="item.path" :key="index">
<li
:class="isClassShow(item)"
>
{{ item.title }}
</li>
</router-link>
</template>
</ul>
</section>
<vue-passport ref="passport" @ready="onReady" :options="options"></vue-passport>
<login v-if="isLogin" @closeMask="closeMask"></login>
</div>
<login v-if="isLogin" @reg="reg" @closeMask="closeMask"></login>
</header>
</template>
......@@ -37,11 +35,9 @@ export default {
title: '索菲亚大学金融方向工商管理硕士项目',
navList: [
{ title: '首页', path: '/index' },
{ title: '工作动态', path: '/news', children: { path: ['/news/detail'] } },
{ title: '教材中心', path: '/textBook', children: { path: ['/textBook/detail', '/textBook/chapter'] }},
{ title: '师资培训', path: '/train', children: { path: ['/train/detail', '/train/form'] } },
{ title: '考核站点', path: '/site' },
{ title: '证书成绩查询', path: '/query' }
{ title: '通知公告', path: '/news', children: { path: ['/news/detail'] } },
{ title: '办事大厅', path: '/hall', children: { path: ['/textBook/detail', '/textBook/chapter'] }},
{ title: '教·学服务', path: '/service', children: { path: ['/train/detail', '/train/form'] } }
],
isLogin: false,
user: null,
......@@ -63,7 +59,6 @@ export default {
},
isClassShow() {
return (item) => {
return this.$route.path === item.path
? 'active'
: item.children
......@@ -80,13 +75,12 @@ export default {
mounted() {
},
watch: {
// $route(route) {
// if (route.query.needLogin.path) {
// this.handleLogin()
// }
// }
},
methods: {
reg() {
this.isLogin = false
this.$router.push({ path: '/register' })
},
closeMask(blo) {
this.isLogin = blo
},
......@@ -119,52 +113,77 @@ export default {
</script>
<style lang="scss" scoped>
.app-header {
background-color: #fff;
.inner {
max-width: 970px;
margin: 0 auto;
.home-head{
img{
width: 100%;
display: block;
// height: 240px;
}
}
.app-header-main {
.nav-box{
position: relative;
.poster{
width: 100%;
height: 220px;
background: url(https://zws-imgs-pub.ezijing.com/static/public/7f46acc2486aec78c8fd4bdf5afd9589.png) center;
background-size: cover;
}
.handle-btn{
height: 70px;
background: #A81A42;
}
.app-header{
// position: relative;
// height: 70px;
// background: #A81A42;
.colors{
background: #fff;
width: 50%;
height: 100%;
position: absolute;
top: 16px;
right: 24px;
span{
font-size: 14px;
color: #FFFFFF;
line-height: 20px;
cursor: pointer;
}
top: 0;
left: 0;
}
}
.app-header-menu{
width: 100%;
height: 56px;
background: linear-gradient(47deg, #C01540 0%, #C01540 7%, #D43960 26%, #FF87A5 100%, #C01540 100%);
ul{
.header-mian{
width: 1200px;
margin: 0 auto;
height: 100%;
display: flex;
justify-content: center;
li{
width: 200px;
height: 56px;
text-align: center;
line-height: 56px;
font-size: 20px;
color: #FFFFFF;
align-items: center;
.login{
margin-left: auto;
color: #fff;
cursor: pointer;
}
.logo-box{
cursor: pointer;
&.active{
font-size: 20px;
color: #AF1B40;
background: #fff;
position: relative;
z-index: 1;
width: 530px;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
background: #fff;
img{
width: 119px;
height: 40px;
margin-right: 40px;
}
.logo-text{
text-align: center;
font-size: 18px;
color: #A91C43;
line-height: 25px;
}
}
.nav-box{
position: relative;
z-index: 1;
background: #A81A42;
padding-left: 60px;
display: flex;
align-items: center;
li{
font-size: 14px;
color: #FFFFFF;
margin-right: 36px;
&.active{
font-weight: bold;
}
}
}
}
......
......@@ -33,7 +33,7 @@
</li>
</ul>
<div class="login-btn">登录</div>
<div class="register-btn">注册</div>
<div class="register-btn" @click="$emit('reg')">注册</div>
</div>
<div class="mask" @click="closeMask"></div>
</div>
......
......@@ -33,19 +33,30 @@ export default {
.btn-tabs-boxs{
// padding: 24px 0 30px;
display: flex;
justify-content: center;
// justify-content: center;
div{
cursor: pointer;
// text-align: center;
// width: 200px;
// height: 56px;
// background: #F9F9F9;
// font-size: 18px;
// color: #666666;
// line-height: 56px;
// &.active{
// color: #fff;
// background: linear-gradient(315deg, rgba(225, 47, 116, 0.83) 0%, #C01540 100%);
// }
width: 88px;
height: 34px;
border-radius: 27px;
text-align: center;
width: 200px;
height: 56px;
background: #F9F9F9;
font-size: 18px;
color: #666666;
line-height: 56px;
line-height: 34px;
font-size: 14px;
color: #444444;
&.active{
background: #A81A41;
color: #fff;
background: linear-gradient(315deg, rgba(225, 47, 116, 0.83) 0%, #C01540 100%);
}
}
}
......
<template>
<div class="school-box">
<div class="module1 content-max-width">
<div class="title">试点申报</div>
<div class="p">试点申报请前往职业技能等级证书信息管理服务平台(网址: https://vslc.ncb.edu.cn/csr-declaraPlatform)进行申请。</div>
<img src="https://zws-imgs-pub.ezijing.com/static/public/fef814a1209bab02367cfdf8ab4f51dc.png" alt="" class="img">
<div class="p1">
<span>试点申报入口:</span>
<div class="all-btn">看通知</div>
</div>
<div class="p1">
<span class="text-index-2em">通知关注:</span>
<div class="all-btn">看通知</div>
</div>
<div class="p1">
<span class="text-index-2em">通知关注:</span>
<div class="color-c">我司会联系您,请关注校方注册网站时联系人注册手机的通知。</div>
</div>
</div>
<div class="module2">
<div class="content-max-width">
<div class="title">组织老师培训</div>
<div class="p">有关单位意向申报成为1+X职业技能等级证书考核站点,请按要求登录政府网站申请试点院校业务平台(网址: https://vslc.ncb.edu.cn )输入试点院校管理员的账号密码,在考试管理菜单中,打开申报考点栏目,即可自主申报考核站点</div>
<div class="all-btn con-btn">去申请</div>
<div class="title mar-t36">组织开班授课</div>
<div class="item">
<img src="https://zws-imgs-pub.ezijing.com/static/public/6a969be695f821530e26bda9cdd727fb.png" alt="">
<div class="content">
<div class="text">
学校可统一组织开班授课。线上课程可使用我司学习系统的辅助教学功能。<br/>
支持视频课程教学播放、PPT课程讲义播放。<br/>
管理班级学员和开班课,了解各班学习进度
</div>
<div class="all-btn">进入系统</div>
</div>
</div>
</div>
</div>
<div class="module3 content-max-width">
<div class="title">考试报名</div>
<div class="text-box">
<div class="text">成绩查询请前往职业技能等级证书信息管理服务平台(网址: https://vslc.ncb.edu.cn/csr-scoreCertificate)进行查询。</div>
<div class="all-btn">进入系统</div>
</div>
<div class="img-box">
<img src="https://zws-imgs-pub.ezijing.com/static/public/182e9ee4459c70648ddd626075d666a8.png" alt="">
<img src="https://zws-imgs-pub.ezijing.com/static/public/94d7bf72697b2b6e452e93b555b50038.png" alt="">
</div>
</div>
</div>
</template>
<script>
export default {
}
</script>
<style lang="scss" scoped>
.content-max-width{
width: 1200px;
margin: 0 auto;
}
.title{
font-size: 24px;
font-weight: bold;
color: #333333;
line-height: 33px;
}
.all-btn{
width: 104px;
height: 40px;
background: linear-gradient(315deg, rgba(225, 47, 116, 0.83) 0%, #C01540 100%);
border-radius: 4px;
text-align: center;
line-height: 40px;
color: #fff;
font-size: 14px;
cursor: pointer;
}
.school-box{
background: #F8F8F9;
.module1{
padding: 36px 0;
.p{
font-size: 18px;
color: #666666;
line-height: 36px;
margin: 16px 0;
}
.img{
width: 600px;
margin: 0 auto;
display: block;
}
.p1{
margin: 16px 0;
display: flex;
align-items: center;
.color-c{
line-height: 30px;
color: #666666;
font-size: 18px;
}
span{
font-size: 18px;
font-weight: bold;
color: #222222;
line-height: 30px;
&.text-index-2em{
text-indent: 2em;
}
}
}
}
.module2{
padding: 36px 0;
background: #fff;
.mar-t36{
margin-top: 36px;
}
.p{
font-size: 18px;
color: #666666;
line-height: 36px;
margin: 16px 0;
}
.con-btn{
margin: 0 auto;
}
.item{
display: flex;
margin-top: 16px;
img{
width: 326px;
height: 180px;
margin-left: 47px;
}
.content{
margin-left: 40px;
.text{
font-size: 18px;
color: #666666;
line-height: 36px;
}
.all-btn{
margin-top: 16px;
}
}
}
}
.module3{
padding: 46px 0 36px;
.text-box{
display: flex;
align-items: center;
margin: 24px 0 16px;
.text{
font-size: 18px;
color: #666666;
line-height: 36px;
}
.all-btn{
margin-left: 25px;
}
}
.img-box{
display: flex;
justify-content: center;
img{
&:nth-child(1){
margin-right: 74px;
}
&:nth-child(2){
margin-top: 16px;
}
}
}
}
}
</style>
<template>
<div class="candida-box">
<div class="module1 content-max-width">
<div class="title">考生报名</div>
<div class="dosc">1+X证书制度是国家职业教育改革方案实施的重要举措,为全面落实《国家职业教育改革实施方案》和教育部等四部印发的《关于在院校实施“学历证书”+若干职业技能等级证书制度试点方案》(简称1+X证书)文件精神,高效有序推进《金融产品数字化营销职业技能等级证书》考核工作,对已申报1+X证书试点的院校,现开启考试报名工作,有关事项安排如下:</div>
<div class="p">
<span>考试报名对象:</span>
已申报1+X证书试点并通过考核站点验收的学校
</div>
<div class="p2">
<span>考试计划:</span>
<img src="https://zws-imgs-pub.ezijing.com/static/public/6e74b2e552bc3a2bf00062e3af03fe7b.png" alt="">
</div>
<div class="p2">
<span>考试计划:</span>
<div>请各试点院校根据学生学习情况,灵活选择考试时间,组织考试。<br/>
2021年1月份的1+X考试需在12月20日完成报名,报名后不能做任何变更,请各试点院校提前做好相关计划。<br/>
请在每场考试报名截止日期之前完成报名,并于考试当天准时参加考试。因个人原因导致的缺考,不予重新免费安排考试。<br/>
请在每场考试缴费截止日期之前完成缴费,并确保缴费人数与报名人数一致,否则不予安排考试。</div>
</div>
<div class="bm-btn">去报名</div>
<div class="p2 padd-b-36">
<span>缴费流程:</span>
<div class="process">
<span class="order"></span>
<div class="text">学生</div>
<div class="border"></div>
<span class="order"></span>
<div class="text">试点学校</div>
<div class="border"></div>
<span class="order"></span>
<div class="text">培训评价组织</div>
</div>
</div>
</div>
<div class="module2">
<div class="content-max-width">
<div class="title">学习课程</div>
<div class="item">
<img class="img" src="https://zws-imgs-pub.ezijing.com/static/public/dc31668fb1d44405ad8b52c94d9c5e3b.png" alt="">
<div class="content-text">
<div class="text">
学习系统以学习课程和做题练题为主要功能。学习课程以视频展示,清晰、流畅且稳定。视频播放支持倍速、全屏切换、课程讲义和视频双频同步播放;视频章节中插入试卷随学随考;支持视频课程及PDF、PPT等文本课程学习。做题练题区分模拟测试和错题、收藏功能。模拟测试模拟真考流程,熟悉考试做题方式并评估成绩给定参考答案;错题练习系统自动记录错题,针对薄弱环节使学员多次加强练习。收藏试题主动添加试题。学习系统以帮助所有学员取得最好的成绩为目标,可随时客服反馈意见,及时处理和改进。
</div>
<div class="run-btn">进入系统</div>
</div>
</div>
<div class="title">参加考试</div>
<div class="process">
<div class="item">
<div class="icon-box">
<img src="https://zws-imgs-pub.ezijing.com/static/public/a3ac60aa76afa4306d9d52e0693ad86f.png" alt="" class="icon">
</div>
<div class="name">打印准考证</div>
</div>
<div class="border"></div>
<div class="item">
<div class="icon-box">
<img src="https://zws-imgs-pub.ezijing.com/static/public/417180cc1fdf4078b26478923f1552de.png" alt="" class="icon">
</div>
<div class="name">关注考点通知</div>
</div>
<div class="border"></div>
<div class="item">
<div class="icon-box">
<img src="https://zws-imgs-pub.ezijing.com/static/public/df4fd1064d73a099666f3ba38fe106cd.png" alt="" class="icon">
</div>
<div class="name mar-10">身份验证按时入<br/>场熟悉机考系统</div>
</div>
<div class="border"></div>
<div class="item">
<div class="icon-box">
<img src="https://zws-imgs-pub.ezijing.com/static/public/3319cf892c2535c1963ec8daef711264.png" alt="" class="icon">
</div>
<div class="name">完成考试</div>
</div>
</div>
</div>
</div>
<div class="module3 content-max-width">
<div class="title mar-t36">成绩查询</div>
<div class="p">成绩查询请前往职业技能等级证书信息管理服务平台(网址: https://vslc.ncb.edu.cn/csr-scoreCertificate)进行查询。</div>
<img src="https://zws-imgs-pub.ezijing.com/static/public/e2c0c840ca551e344ffff6c03775030c.png" class="img1" alt="">
<div class="btn">去查询</div>
<div class="title">证书查询</div>
<div class="p">证书查询请前往职业技能等级证书信息管理服务平台(网址: https://vslc.ncb.edu.cn/csr-verification)进行查询。</div>
<img src="https://zws-imgs-pub.ezijing.com/static/public/8176a5a1080aeb1e67240d85d12ef468.png" alt="" class="img2">
<div class="btn">去查询</div>
</div>
</div>
</template>
<script>
export default {
}
</script>
<style lang="scss" scoped>
.content-max-width{
width: 1200px;
margin: 0 auto;
}
.candida-box{
.module1{
padding-top: 37px;
.title{
font-size: 24px;
font-weight: bold;
color: #333333;
line-height: 33px;
}
.dosc{
font-size: 18px;
color: #666666;
line-height: 36px;
margin-top: 16px;
}
.p{
font-size: 18px;
font-weight: bold;
color: #666666;
line-height: 30px;
margin-top: 16px;
span{
font-size: 18px;
font-weight: bold;
color: #222222;
line-height: 30px;
}
}
.p2{
font-size: 18px;
font-weight: bold;
color: #666666;
line-height: 30px;
margin-top: 16px;
span{
font-size: 18px;
font-weight: bold;
color: #222222;
line-height: 30px;
}
display: flex;
margin-top: 16px;
}
.bm-btn{
width: 104px;
height: 40px;
background: linear-gradient(315deg, rgba(225, 47, 116, 0.83) 0%, #C01540 100%);
border-radius: 4px;
font-size: 14px;
font-weight: bold;
color: #FFFFFF;
line-height: 40px;
text-align: center;
margin-left: 90px;
margin-top: 16px;
}
.process{
display: flex;
align-items: center;
.order{
color: #CCCCCC;
margin-right: 10px;
}
.text{
font-size: 18px;
color: #222222;
margin-right: 10px;
}
.border{
width: 100px;
height: 1px;
background: #ccc;
margin-right: 10px;
}
}
.padd-b-36{
padding-bottom: 36px;
}
}
.module2{
background: #fff;
padding: 24px 0 29px;
.title{
font-size: 24px;
font-weight: bold;
color: #333333;
line-height: 33px;
margin-bottom: 25px;
}
.process{
display: flex;
}
.item{
// display: flex;
.img{
width: 326px;
height: 180px;
}
.content-text{
margin-left: auto;
width: 793px;
.text{
color: #666666;
font-size: 18px;
line-height: 36px;
}
.run-btn{
width: 104px;
height: 40px;
background: linear-gradient(315deg, rgba(225, 47, 116, 0.83) 0%, #C01540 100%);
border-radius: 4px;
line-height: 40px;
text-align: center;
color: #fff;
font-size: 14px;
font-weight: bold;
margin-top: 16px;
cursor: pointer;
margin-bottom: 36px;
}
}
}
.process{
display: flex;
justify-content: center;
.item{
.icon-box{
display: flex;
align-items: center;
justify-content: center;
width: 74px;
height: 74px;
background: #FFFFFF;
box-shadow: 0px 1px 4px 0px rgba(153, 153, 153, 0.3);
border-radius: 50%;
margin: 0 auto;
img{
width: 40px;
display: block;
}
}
.name{
font-size: 18px;
font-weight: bold;
color: #222222;
line-height: 25px;
margin-top: 20px;
&.mar-10{
margin-top: 10px;
}
}
}
.border{
width: 120px;
height: 2px;
background: #CCCCCC;
border-radius: 1px;
margin: 36px 30px 0;
}
}
}
.module3{
padding-bottom: 36px;
.title{
font-size: 24px;
font-weight: bold;
color: #333333;
line-height: 33px;
margin-bottom: 16px;
}
.p{
font-size: 18px;
color: #666666;
line-height: 36px;
}
.img1{
width: 600px;
display: block;
margin: 16px auto;
}
.img2{
width: 609px;
display: block;
margin: 16px auto;
}
.btn{
margin: 0 auto;
width: 104px;
height: 40px;
background: linear-gradient(315deg, rgba(225, 47, 116, 0.83) 0%, #C01540 100%);
border-radius: 4px;
font-size: 14px;
text-align: center;
font-weight: bold;
color: #FFFFFF;
line-height: 40px;
}
}
}
.mar-t36{
margin-top: 36px;
}
</style>
<template>
<div class="teacher-box">
<div class="module1 content-max-width">
<div class="title">师资培训报名</div>
<div class="p">网站师资培训页面选择项目课程点击在线报名,填写培训申请表后,关注审核结果和培训通知。</div>
<div class="p1">
<span>培训报名对象:</span>
<div class="color-c">
相关对口金融专业的老师
</div>
</div>
<div class="p1">
<span>报名入口:</span>
<div class="all-btn">去报名</div>
</div>
<div class="p1">
<span>通知关注:</span>
<div class="all-btn">看通知</div>
</div>
<div class="title mar-t36-b26">老师培训</div>
<div class="item">
<img src="https://zws-imgs-pub.ezijing.com/static/public/6a969be695f821530e26bda9cdd727fb.png" alt="">
<div class="content">
<div class="text">
学习系统以学习课程和辅助教学为主要功能。<br/>
老师学习课程以视频展示为主,清晰、流畅且稳定。视频播放支持倍速、全屏切换、课程讲义和视频双频同步播放;<br/>
辅助教学,使用学习系统,开班授课,可辅导所有学员班课讲解,以取得最好的成绩。
</div>
<div class="all-btn">进入系统</div>
</div>
</div>
</div>
<div class="module2">
<div class="content-max-width">
<div class="title">参加考试</div>
<div class="p">师资培训之后,会通知各位老师线下或者线上考试。</div>
<div class="p1">
<span>通知关注:</span>
<div class="all-btn">看通知</div>
</div>
<div class="title mar-t36-b16">培训证书</div>
<div class="cert-box">
<img src="https://zws-imgs-pub.ezijing.com/static/public/c10eedf619424f2881a214284818626c.png" alt="">
<div class="text">师资培训通过之后,会颁发师资培训证书。</div>
</div>
</div>
</div>
<div class="module3 content-max-width">
<div class="title">开班授课</div>
<div class="item">
<div class="item">
<img src="https://zws-imgs-pub.ezijing.com/static/public/6a969be695f821530e26bda9cdd727fb.png" alt="">
<div class="content">
<div class="text">
可使用学习系统的辅助教学功能。<br/>
支持视频课程教学播放、PPT课程讲义播放。<br/>
管理班级学员和开班课,了解进度
</div>
<div class="all-btn">进入系统</div>
</div>
</div>
</div>
</div>
</div>
</template>
<script>
export default {
}
</script>
<style lang="scss" scoped>
.content-max-width{
width: 1200px;
margin: 0 auto;
}
.all-btn{
width: 104px;
height: 40px;
background: linear-gradient(315deg, rgba(225, 47, 116, 0.83) 0%, #C01540 100%);
border-radius: 4px;
text-align: center;
line-height: 40px;
color: #fff;
font-size: 14px;
cursor: pointer;
}
.teacher-box{
.module1{
padding: 36px 0;
.title{
font-weight: bold;
color: #333333;
line-height: 33px;
font-size: 24px;
&.mar-t36-b26{
margin: 36px 0 26px;
}
}
.p{
font-size: 18px;
color: #666666;
line-height: 36px;
margin: 16px 0;
}
.p1{
margin: 16px 0;
display: flex;
align-items: center;
.color-c{
line-height: 30px;
color: #666666;
font-size: 18px;
}
span{
font-size: 18px;
font-weight: bold;
color: #222222;
line-height: 30px;
}
}
.item{
display: flex;
img{
width: 326px;
height: 180px;
}
.content{
margin-left: auto;
width: 790px;
.text{
font-size: 18px;
color: #666666;
line-height: 36px;
}
.all-btn{
margin-top: 16px;
}
}
}
}
.module2{
background: #fff;
padding: 36px 0;
.title{
font-size: 24px;
font-weight: bold;
color: #333333;
line-height: 33px;
&.mar-t36-b16{
margin: 36px 0 16px;
}
}
.p{
font-size: 18px;
color: #666666;
line-height: 36px;
margin: 16px 0;
}
.p1{
margin: 16px 0;
display: flex;
align-items: center;
.color-c{
line-height: 30px;
color: #666666;
font-size: 18px;
}
span{
font-size: 18px;
font-weight: bold;
color: #222222;
line-height: 30px;
}
}
.cert-box{
display: flex;
align-items: center;
img{
width: 230px;
height: 145px;
}
.text{
font-size: 18px;
color: #666666;
margin-left: 80px;
}
}
}
.module3{
padding: 36px 0;
.title{
font-size: 24px;
font-weight: bold;
color: #333333;
line-height: 33px;
}
.item{
margin-top: 20px;
display: flex;
img{
width: 326px;
height: 180px;
}
.content{
margin-left: 76px;
.text{
font-size: 18px;
color: #666666;
line-height: 36px;
}
.all-btn{
margin-top: 16px;
}
}
}
}
}
</style>
<template>
<div class="hall-box">
<haedBanner></haedBanner>
<div class="home-office-hall content-max-width">
<div class="title">办事大厅</div>
<div class="office-mian">
<ul class="tab-btn-box">
<li
v-for="(item, index) in offsetBtn"
:class="offsetTabIndex == index && 'active'"
:key="index"
@click="offsetTab(index)"
>{{ item }}</li>
</ul>
<ul class="item-box">
<template v-if="offsetTabIndex == 0">
<template v-for="(item, index) in examineeNav">
<li :key="index" @click="goPage(item.path)">
<img :src="item.icon" alt="" class="img">
<img :src="item.iconActive" alt="" class="img-active">
<div class="text">{{ item.text }}</div>
</li>
</template>
</template>
<template v-if="offsetTabIndex == 1">
<template v-for="(item, index) in teacherNav">
<li :key="index" @click="goPage(item.path)">
<img :src="item.icon" alt="" class="img">
<img :src="item.iconActive" alt="" class="img-active">
<div class="text">{{ item.text }}</div>
</li>
</template>
</template>
<template v-if="offsetTabIndex == 2">
<template v-for="(item, index) in schoolNav">
<li :key="index" @click="goPage(item.path)">
<img :src="item.icon" alt="" class="img">
<img :src="item.iconActive" alt="" class="img-active">
<div class="text">{{ item.text }}</div>
</li>
</template>
</template>
</ul>
</div>
</div>
<student-help v-if="offsetTabIndex == 0"></student-help>
<teacher-help v-if="offsetTabIndex == 1"></teacher-help>
<school-help v-if="offsetTabIndex == 2"></school-help>
</div>
</template>
<script>
import haedBanner from '@/components/headBanner'
import studentHelp from './components/studentHelp'
import teacherHelp from './components/teacherHelp'
import schoolHelp from './components/schoolHelp'
export default {
components: {
haedBanner,
studentHelp,
teacherHelp,
schoolHelp
},
data() {
return {
offsetTabIndex: 1,
offsetBtn: ['我是考生', '我是老师', '我是学校'],
examineeNav: [
{
icon: 'https://zws-imgs-pub.ezijing.com/static/public/8617726397bcc6fa81020934c57d92bd.png',
iconActive: 'https://zws-imgs-pub.ezijing.com/static/public/ef0878be9e9fa6deab5b9dcfac9af12b.png',
text: '注册账号',
path: 'register'
},
{
icon: 'https://zws-imgs-pub.ezijing.com/static/public/5c7db419e6af3214fa53b1d4920cf7b5.png',
iconActive: 'https://zws-imgs-pub.ezijing.com/static/public/76256d877bd6787af42d2f6010108a8b.png',
text: '学生报名',
path: ''
},
{
icon: 'https://zws-imgs-pub.ezijing.com/static/public/b5a6b0bf40f24545fd10cbf315e5839c.png',
iconActive: 'https://zws-imgs-pub.ezijing.com/static/public/556e2554d2545d3d3a726dbcbaf20494.png',
text: '学习课程',
path: ''
},
{
icon: 'https://zws-imgs-pub.ezijing.com/static/public/9c4d618281f12680a367d212545cf041.png',
iconActive: 'https://zws-imgs-pub.ezijing.com/static/public/53dd24cbf9c4c1a6ed078ab3b6049e95.png',
text: '参加考试',
path: ''
},
{
icon: 'https://zws-imgs-pub.ezijing.com/static/public/6bf9fedcbff1d13de413667b33787db3.png',
iconActive: 'https://zws-imgs-pub.ezijing.com/static/public/3639914b6dbe79d4b2e745159fd49230.png',
text: '成绩查询',
path: ''
},
{
icon: 'https://zws-imgs-pub.ezijing.com/static/public/1e6d8f785a106b17eb698d1d563ff479.png',
iconActive: 'https://zws-imgs-pub.ezijing.com/static/public/e3088887b1e2fc9711c7ad692e2e53cd.png',
text: '证书查询',
path: ''
}
],
teacherNav: [
{
icon: 'https://zws-imgs-pub.ezijing.com/static/public/2da6e70cac93900bdb1867458c9b7449.png',
iconActive: 'https://zws-imgs-pub.ezijing.com/static/public/c92aa5f2800a9a5bbedce54bfa0d499b.png',
text: '注册账号'
},
{
icon: 'https://zws-imgs-pub.ezijing.com/static/public/284f07548eb240cc384a102f1b7efdda.png',
iconActive: 'https://zws-imgs-pub.ezijing.com/static/public/0c9823481d85f209b4a498945f31ea83.png',
text: '师资培训报名'
},
{
icon: 'https://zws-imgs-pub.ezijing.com/static/public/b278993ee5c29349ff83d1d9b4b596c9.png',
iconActive: 'https://zws-imgs-pub.ezijing.com/static/public/8d24a5c20a8ab87d26db73ccfacd2fba.png',
text: '老师培训'
},
{
icon: 'https://zws-imgs-pub.ezijing.com/static/public/6f9583c270a3302a352ae9bbba64099d.png',
iconActive: 'https://zws-imgs-pub.ezijing.com/static/public/8a16c6cd1dc986075a002fe314f21d0d.png',
text: '参加考试'
},
{
icon: 'https://zws-imgs-pub.ezijing.com/static/public/06f7b0220ab6d8d9d34f6d68258f2669.png',
iconActive: 'https://zws-imgs-pub.ezijing.com/static/public/130affba0b6cefd278c31ddfab74acfc.png',
text: '培训证书'
},
{
icon: 'https://zws-imgs-pub.ezijing.com/static/public/70c3defef24fd1438ada43b3e1ccff87.png',
iconActive: 'https://zws-imgs-pub.ezijing.com/static/public/fe6b2d4c31d7f6369468c675d5876671.png',
text: '开班授课'
}
],
schoolNav: [
{
icon: 'https://zws-imgs-pub.ezijing.com/static/public/00e366f3cc15ab30c1fd285d10989bed.png',
iconActive: 'https://zws-imgs-pub.ezijing.com/static/public/66dd597f670a07584897d03a4c6bd9ab.png',
text: '注册账号'
},
{
icon: 'https://zws-imgs-pub.ezijing.com/static/public/1dc324792168ee1e6a07b5975e6e3d8b.png',
iconActive: 'https://zws-imgs-pub.ezijing.com/static/public/02e1e75b3aed4a92f3038589091be1f2.png',
text: '试点申报'
},
{
icon: 'https://zws-imgs-pub.ezijing.com/static/public/17e3d75022ee88d4661bff4ca61f0966.png',
iconActive: 'https://zws-imgs-pub.ezijing.com/static/public/073a7d9317d0ff8d8876c4ce53d15bc2.png',
text: '考点申报'
},
{
icon: 'https://zws-imgs-pub.ezijing.com/static/public/ea6a2917391444208d9084c3205227b2.png',
iconActive: 'https://zws-imgs-pub.ezijing.com/static/public/55065b21e5ba9bc735a3d3527f07af79.png',
text: '组织老师培训'
},
{
icon: 'https://zws-imgs-pub.ezijing.com/static/public/cc4885f2f4b6f566954cdb15381916f8.png',
iconActive: 'https://zws-imgs-pub.ezijing.com/static/public/901044f1465a5497fef8135f9e2ce4ff.png',
text: '组织开授课'
},
{
icon: 'https://zws-imgs-pub.ezijing.com/static/public/1505fd4535d858b4939e46f2534bfcaf.png',
iconActive: 'https://zws-imgs-pub.ezijing.com/static/public/3c3d204e15a400a7f74b4a9dad44cd55.png',
text: '考试报名'
}
]
}
},
methods: {
offsetTab(n) {
this.offsetTabIndex = n
}
}
}
</script>
<style lang="scss" scoped>
.hall-box{
background: #F8F8F9;
}
.content-max-width{
width: 1200px;
margin: 0 auto;
}
.home-office-hall{
.title{
font-size: 24px;
font-weight: bold;
color: #444444;
line-height: 33px;
padding: 36px 0 16px;
}
.office-mian{
display: flex;
}
.tab-btn-box{
padding-top: 24px;
li{
width: 96px;
height: 40px;
background: none;
border-radius: 23px;
text-align: center;
line-height: 40px;
font-size: 16px;
color: #444444;
cursor: pointer;
&.active{
color: #fff;
background: #A81A42;
border-radius: 23px;
}
}
}
.item-box{
display: flex;
margin-left: 7px;
li{
width: 168px;
height: 168px;
background: #FFFFFF;
box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.09);
border-radius: 4px;
margin-left: 16px;
transition: all .5s;
&:hover{
background: #A81A42;
transform: translateY(-10px);
.img{
display: none;
}
.img-active{
display: block;
}
.text{
color: #fff;
}
}
img{
height: 50px;
display: block;
margin: 43px auto 20px auto;
}
.img-active{
display: none;
}
.text{
text-align: center;
font-size: 16px;
color: #444444;
line-height: 16px;
}
}
}
}
</style>
差异被折叠。
<template>
<div class="news-box">
<breadcrumb class="content-max-width crumb" :data="crumbData"/>
<btn-tabs class="tabs-box" :data="tabsData"></btn-tabs>
<haedBanner></haedBanner>
<!-- <breadcrumb class="content-max-width crumb" :data="crumbData"/> -->
<btn-tabs class="tabs-box content-max-width" :data="tabsData"></btn-tabs>
<ul class="content-max-width">
<template v-for="(item, index) in list">
<li :key="index">
......@@ -19,6 +20,7 @@
</div>
</template>
<script>
import haedBanner from '@/components/headBanner'
import item from './components/listItem'
import btnTabs from '@/components/tabs/btnTabs'
import breadcrumb from '@/components/breadcrumb'
......@@ -27,7 +29,8 @@ export default {
components: {
item,
btnTabs,
breadcrumb
breadcrumb,
haedBanner
},
data() {
return {
......@@ -82,6 +85,11 @@ export default {
}
</script>
<style lang="scss" scoped>
img{
width: 100%;
display: block;
// height: 240px;
}
.crumb{
padding-top: 24px;
}
......@@ -91,7 +99,7 @@ export default {
}
.news-box{
.tabs-box{
padding: 24px 0 30px;
padding: 60px 0 0;
}
}
.pagination{
......
<template>
<div class="book-detail-box content-max-width">
<!-- <breadcrumb class="content-max-width crumb" :data="crumbData"/> -->
<div class="bool-det-top">
<div class="item-box">
<img src="https://zws-imgs-pub.ezijing.com/static/public/7c63bd40600a040f867fe4db9014fb7c.png" alt="">
<div class="right-content">
<div class="title">关于1+X金融数字化营销证书考核站点申报的通知</div>
<div class="des-box">
<p><span>教材简介:</span><i>往价计子断选社界他界四收半很导条回于问个地给资政色金美关做除当打目商马层消酸龙信样世手除制二美信很按划从专我。时先革自好利治条每部教最运则府完接上立什线为象律然对就率则适第变一需党事连识接月报专各口细信要指有飞应组必飞队知从好作用直矿里。已量少查市平料通题界期下干</i></p>
<p class="align-r"><span>定价:</span><i>199¥</i></p>
<p class="align-r cen"><span>数量:</span><input type="text"></p>
<div class="buy-btn">购买</div>
</div>
</div>
</div>
<div class="v-code-box">
<div class="block"></div>
<div class="text">手机扫码浏览</div>
</div>
</div>
<div class="book-det-bottom">
<div class="fix-left">
<div class="material">
<div class="title">教材介绍</div>
<div class="content">
往价计子断选社界他界四收半很导条回于问个地给资政色金美关做除当打目商马层消酸龙信样世手除制二美信很按划从专我。时先革自好利治条每部教最运则府完接上立什线为象律然对就率则适第变一需党事连识接月报专各口细信要指有飞应组必飞队知从好作用直矿里。已量少查市平料通题界期下干
</div>
<div class="info">
<p><span>作者:</span>赵瑾龙</p>
<p><span>出版时间:</span>2020.10.10</p>
<p><span>ISBN:</span>2020.10.19—2020.11.20</p>
<p><span>发行日期:</span>2020.20.20</p>
</div>
</div>
<div class="catalog">
<div class="title">目录</div>
<ul>
<li>
<div class="chapter">第一章</div>
<div class="node" @click="goChapter">第一节</div>
</li>
<li>
<div class="chapter">第一章</div>
<div class="node" @click="goChapter">第一节</div>
</li>
<li>
<div class="chapter">第一章</div>
<div class="node" @click="goChapter">第一节</div>
</li>
</ul>
</div>
</div>
<div class="author">
<div class="title">作者</div>
<div class="item">
<div class="info-box">
<img src="https://zws-imgs-pub.ezijing.com/static/public/f064b2cb83039e1d4754993167d73864.png" alt="">
<div class="info">
<div class="name">赵瑾龙</div>
<div class="xx">研究院</div>
</div>
</div>
<div class="intr">
<div class="name">简介:</div>
<div class="text">往价计子断选社界他界四收半很导条回于问个地给资政色金美关做除当打目商马层消酸龙信样世手除制二美信很按划从专我。</div>
</div>
</div>
</div>
</div>
</div>
</template>
<script>
import breadcrumb from '@/components/breadcrumb'
export default {
components: {
breadcrumb
},
data() {
return {
crumbData: [
{
path: '/',
name: '首页'
},
{
path: '/textBook',
name: '教材中心'
},
{
name: '金融数字化营销'
}
]
}
},
methods: {
goChapter() {
this.$router.push({
path: '/textBook/chapter'
})
}
}
}
</script>
<style lang="scss" scoped>
.content-max-width{
width: 1200px;
margin: 0 auto;
}
.buy-btn{
width: 150px;
height: 36px;
background: linear-gradient(315deg, rgba(225, 47, 116, 0.83) 0%, #C01540 100%);
border-radius: 4px;
text-align: center;
font-size: 14px;
color: #FFFFFF;
line-height: 36px;
margin-top: 16px;
cursor: pointer;
}
.book-det-bottom{
display: flex;
.catalog{
.title{
font-size: 18px;
font-weight: bold;
color: #C80046;
line-height: 25px;
margin-bottom: 24px;
}
ul{
li{
width: 729px;
padding: 16px 0;
border-top: 1px solid #eee;
.chapter{
font-size: 18px;
font-weight: bofld;
color: #262626;
line-height: 25px;
}
.node{
font-size: 14px;
color: #7D7D7D;
line-height: 20px;
margin-top: 12px;
cursor: pointer;
}
}
}
}
.author{
margin-left: auto;
.title{
font-size: 18px;
font-weight: bold;
color: #C80046;
line-height: 25px;
margin-bottom: 24px;
}
.item{
width: 280px;
border-top: 1px solid #eee;
margin-top: 24px;
.info-box{
padding-top: 16px;
display: flex;
align-items: center;
img{
width: 80px;
height: 80px;
}
.info{
margin-left: 16px;
.name{
font-size: 18px;
font-weight: bold;
color: #2B2B2B;
line-height: 25px;
}
.xx{
font-size: 14px;
color: #888888;
line-height: 20px;
margin-top: 12px;
}
}
}
.intr{
margin-top: 16px;
display: flex;
.name{
font-size: 14px;
font-weight: bold;
color: #262626;
line-height: 20px;
white-space: nowrap;
}
.text{
font-size: 14px;
color: #7D7D7D;
line-height: 20px;
}
}
}
}
}
.bool-det-top{
display: flex;
padding-top: 24px;
}
.book-detail-box{
.v-code-box{
width: 136px;
margin-left: 24px;
// margin-top: 24px;
.block{
width: 136px;
height: 136px;
background: #D8D8D8;
border: 1px solid #979797;
}
.text{
font-size: 14px;
color: #222222;
line-height: 20px;
margin-top: 8px;
text-align: center;
}
}
.item-box{
// padding: 24px 0;
// border-bottom: 1px solid #eee;
display: flex;
img{
width: 258px;
height: 143px;
display: block;
}
.right-content{
margin-left: 24px;
.title{
font-size: 18px;
font-weight: bold;
color: #C01540;
line-height: 25px;
}
.des-box{
// width: 523px;
margin-top: 24px;
p{
input{
width: 70px;
height: 40px;
border: 1px solid #ccc;
border-radius: 4px;
outline: none;
padding-left: 10px;
}
// text-align: right;
font-size: 14px;
color: #666666;
line-height: 20px;
margin-bottom: 8px;
display: flex;
&.cen{
align-items: center;
}
&.align-r{
text-align: right;
}
span{
width: 70px;
font-size: 14px;
font-weight: bold;
color: #222222;
line-height: 20px;
white-space: nowrap;
}
i{
width: 523px;
font-style: normal;
font-size: 14px;
color: #717171;
line-height: 20px;
text-align: left;
}
}
}
.detail-btn{
color: #fff;
text-align: center;
line-height: 36px;
width: 96px;
height: 36px;
background: linear-gradient(315deg, rgba(225, 47, 116, 0.83) 0%, #C01540 100%);
border-radius: 4px;
margin-top: 16px;
}
}
}
}
.crumb{
padding-top: 24px;
}
.material{
width: 729px;
margin: 56px 0 30px;
.title{
line-height: 57px;
border-bottom: 1px solid #ddd;
font-size: 18px;
font-weight: bold;
color: #C80046;
}
.content{
font-size: 14px;
color: #717171;
line-height: 20px;
margin-top: 16px;
}
.info{
margin-top: 16px;
font-size: 14px;
color: #262626;
line-height: 20px;
p{
margin-bottom: 14px;
}
span{
font-weight: bold;
}
}
}
</style>
<template>
<div>
<haedBanner></haedBanner>
<ul class="service-tab content-max-width">
<template v-for="(item, index) in tabData">
<li @click="tabChange(index)" :key="index" :class="index == tabIndex && 'active'">{{ item }}</li>
</template>
</ul>
<div class="moudel1 content-max-width" v-if="tabIndex == 0 && !isBuyShow">
<div class="title">“1+X”教材简介</div>
<div class="con-text">
经过对中职、高职和应用型本科财税类专业教学标准的深入研究,通过与具有代表性的院校进行现场访谈,专家研讨等方式的走访调研工作,充分分析了解在书证融通方面各大院校遇到的问题,并就普遍典型问题进行梳理,对比分析2019年教育部职成司发布财经商贸大类的高等职业专业教学标准,并以中职、高职和本科三个层次对标会计专业教学标准的衔接融通方案,一共三套范例参考方案,智能财税职业技能等级标准分为初中高级,以高职为例,适用主要专业财务管理、会计、会计信息管理、审计、税务等专业。暂按16学时计为1学分,智能财税职业技能等级标准(初级)的总学时为136,其中上册40学时、中册56学时、下册40学时,完成初级阶段学习,需要完成其中两门共计96个学时,其中2册为必修,1册和3册选修。总学分为8.5。具体为:
从形式上,我们按照智能财税职业技能等级标准中的工作领域为单位模块进行划分,经过梳理,从高职的最新会计专业教学标准分析,对应课程:财务会计基础、企业财务会计、纳税实务、会计信息系统应用、创新创业教育。对应的课程名称具体
</div>
<div class="buy-box">
<div class="name">立即购买:</div>
<span @click="isBuyShow = true">《金融产品数字化营销初级》</span>
<span @click="isBuyShow = true">《金融产品数字化营销中级》</span>
<span @click="isBuyShow = true">《金融产品数字化营销高级》</span>
</div>
</div>
<div class="moudel2 content-max-width" v-if="tabIndex == 1 && !isBuyShow">
<div class="con-text">
经过对中职、高职和应用型本科财税类专业教学标准的深入研究,通过与具有代表性的院校进行现场访谈,专家研讨等方式的走访调研工作,充分分析了解在书证融通方面各大院校遇到的问题,并就普遍典型问题进行梳理,对比分析2019年教育部职成司发布财经商贸大类的高等职业专业教学标准,并以中职、高职和本科三个层次对标会计专业教学标准的衔接融通方案,一共三套范例参考方案,智能财税职业技能等级标准分为初中高级,以高职为例,适用主要专业财务管理、会计、会计信息管理、审计、税务等专业。暂按16学时计为1学分,智能财税职业技能等级标准(初级)的总学时为136,其中上册40学时、中册56学时、下册40学时,完成初级阶段学习,需要完成其中两门共计96个学时,其中2册为必修,1册和3册选修。总学分为8.5。具体为:
从形式上,我们按照智能财税职业技能等级标准中的工作领域为单位模块进行划分,经过梳理,从高职的最新会计专业教学标准分析,对应课程:财务会计基础、企业财务会计、纳税实务、会计信息系统应用、创新创业教育。对应的课程名称具体
</div>
<div class="down-btn-box">
<div class="all-btn">下载文件1</div>
<div class="all-btn">下载文件2</div>
</div>
<div class="pdf">教学资源.pdf</div>
</div>
<buy v-if="isBuyShow"/>
</div>
</template>
<script>
import haedBanner from '@/components/headBanner'
import buy from './components/buy'
export default {
components: {
haedBanner,
buy
},
data() {
return{
isBuyShow: false,
tabIndex: 0,
tabData: ['教材中心', '教学资源(老师)', '课程学习(学生)', '实操学习']
}
},
methods: {
tabChange(n) {
this.isBuyShow = false
if (n === 2) {
window.location.href = 'https://x-learning.ezijing.com/'
}
this.tabIndex = n
}
}
}
</script>
<style lang="scss" scoped>
.content-max-width{
width: 1200px;
margin: 0 auto;
}
.service-tab{
display: flex;
padding: 36px 0 24px;
li{
cursor: pointer;
padding: 0 16px;
height: 34px;
border-radius: 27px;
line-height: 34px;
font-size: 14px;
color: #444444;
text-align: center;
&.active{
background: #A81A41;
color: #fff;
}
}
}
.all-btn{
width: 104px;
height: 40px;
background: linear-gradient(315deg, rgba(225, 47, 116, 0.83) 0%, #C01540 100%);
border-radius: 4px;
text-align: center;
line-height: 40px;
color: #fff;
font-size: 14px;
cursor: pointer;
}
.moudel1{
.title{
font-size: 24px;
color: #C01540;
line-height: 33px;
margin-bottom: 16px;
text-align: center;
}
.con-text{
font-size: 14px;
color: #717171;
line-height: 36px;
}
.buy-box{
padding-bottom: 36px;
display: flex;
align-items: center;
margin-top: 16px;
.name{
font-size: 18px;
font-weight: bold;
color: #222222;
}
span{
font-size: 14px;
color: #0053C6;
cursor: pointer;
}
.con-text{
font-size: 14px;
color: #717171;
line-height: 36px;
}
}
}
.moudel2{
.con-text{
font-size: 14px;
color: #717171;
line-height: 36px;
}
.down-btn-box{
display: flex;
.all-btn{
margin: 24px 0;
&:nth-child(1){
margin-right: 16px;
}
}
}
.pdf{
font-size: 14px;
color: #0053C6;
line-height: 20px;
padding-bottom: 36px;
cursor: pointer;
}
}
</style>
......@@ -10,7 +10,7 @@
<p>书籍简介:基础数据维护及档案管理</p>
</div>
<router-link :to="`/train/detail?id=${data.id}`">
<div class="detail-btn">查看详情</div>
<div class="detail-btn">在线报名</div>
</router-link>
</div>
<div class="right-time">
......
<template>
<div class="content-max-width">
<breadcrumb class="content-max-width crumb" :data="crumbData"/>
<btn-tabs class="btn-tabs-box" @tabsChange="tabsChange" :data="btnTabsData"></btn-tabs>
<!-- <breadcrumb class="content-max-width crumb" :data="crumbData"/> -->
<!-- <btn-tabs class="btn-tabs-box" @tabsChange="tabsChange" :data="btnTabsData"></btn-tabs> -->
<template v-if="!tabsIndex">
<div class="new-tits">办事大厅</div>
<screen-tabs class="screen-tabs-box" :data="screenTabsData"></screen-tabs>
<div class="train-mian">
<ul>
......@@ -123,6 +124,7 @@ export default {
}
.btn-tabs-box{
padding: 24px 0;
justify-content: left;
}
.train-mian{
display: flex;
......@@ -189,4 +191,12 @@ export default {
background-size: 100% 100% !important;
}
}
.new-tits{
font-size: 24px;
font-weight: bold;
color: #444444;
line-height: 33px;
margin-bottom: 16px;
margin-top: 36px;
}
</style>
......@@ -29,7 +29,11 @@ export default [
// 证书成绩查询
{ path: '/query', component: () => import('@/pages/query/index.vue') },
// 证书成绩查询
{ path: '/register', component: () => import('@/pages/account/register.vue') }
{ path: '/register', component: () => import('@/pages/account/register.vue') },
// 办事大厅
{ path: '/hall', component: () => import('@/pages/hall/index.vue') },
// 教学服务
{ path: '/service', component: () => import('@/pages/service/index.vue') }
]
},
// 考核站点详情
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论