导航实验台等修复

dev_2020-03-03
yujialong 3 years ago
parent 70c0f0c3b8
commit 6d886b3660
  1. 11
      src/layouts/navbar/index.vue
  2. 4
      src/pages/index/list/index.vue
  3. 17
      src/pages/station/list/index.vue
  4. 4
      src/router/permission.js
  5. 37
      src/setting.js

@ -64,17 +64,20 @@ export default {
};
},
mounted() {
this.menus = util.local.get(Setting.tokenKey) ? this.loginedMenu : this.touristMenu
const path = this.$route.path
this.menus = Setting.whiteList.find(e => e === path) ? this.touristMenu : this.loginedMenu
},
methods: {
jump(item) {
//
if ((!util.local.get(Setting.tokenKey) && this.loginedMenu.find(e => e.index === item.index)) || util.local.get(Setting.tokenKey) && this.touristMenu.find(e => e.index === item.index)) {
const token = util.local.get(Setting.tokenKey)
//
if (!token && this.loginedMenu.find(e => e.index === item.index)) {
location.reload()
} else {
this.active = item.index
this.$router.push(item.index).catch(err => {})
}
token !== this.token && location.reload() // tokentoken
}
}
}
};

@ -28,7 +28,7 @@
<img src="@/assets/img/index/index1.png" alt="">
<div class="text">
<h6>平台概览</h6>
<p class="desc">专业打造满足开展虚拟实验教学的多样性需</p>
<p class="desc">专业打造满足开展虚拟实验教学的多样性需</p>
</div>
</li>
<li class="wow fadeInUp" :class="{active: active === 2}" data-wow-delay="0.2s" @click="toPart(2)">
@ -324,7 +324,7 @@ export default {
}
.list{
display: flex;
height: 370px;
height: 390px;
li{
width: 33.33%;
padding: 107px 35px 0;

@ -13,6 +13,7 @@
<template v-for="(item,index) in curriculumList">
<a class="item" @click="goPreview(item)" :key="index" v-if="!keyword || item.curriculumName.includes(keyword)">
<img :src="item.coverUrl" alt="">
<p class="text" :title="item.curriculumName"><span>{{ item.curriculumName }}</span></p>
</a>
</template>
</div>
@ -92,6 +93,7 @@ export default {
margin: 0 auto;
}
.item {
position: relative;
width: 256px;
height: 195px;
margin: 0 6px 4px;
@ -103,6 +105,21 @@ export default {
width: 100%;
height: 100%;
}
.text {
position: absolute;
bottom: 14px;
left: 25px;
display: flex;
align-items: center;
width: 130px;
height: 50px;
font-size: 12px;
line-height: 1.6;
overflow: hidden;
span {
@include mul-ellipsis(2);
}
}
}
}
</style>

@ -2,13 +2,13 @@ import router from "./index";
import Setting from "@/setting";
import util from "@/libs/util";
const whiteList = ['/login', '/index/list', '/cityPartner/list', '/devPlatform/list'] // 白名单
const whiteList = Setting.whiteList // 白名单
router.beforeEach((to, from, next) => {
document.title = Setting.titleSuffix;
const role = util.local.get(Setting.tokenKey);
if (!role && !whiteList.includes(to.path)) {
next('/index/list')
} else if(role && whiteList.includes(to.path)) {
} else if(role && to.path === '/login') {
next('/station')
} else {
next()

@ -66,42 +66,9 @@ const Setting = {
storeKey: "oc_client_store", // localStorage里保存的vuex的key
initialPassword: "111aaa", // 默认密码
/**
* python子系统
* 路由白名单
* */
pythonList: [
{
id: 1,
path: 'pyTrials'
},
{
id: 4,
path: 'pyFinance'
},
{
id: 5,
path: 'pyProjects'
},
{
id: 6,
path: 'pyRandom'
},
{
id: 7,
path: 'pyQuantification'
},
{
id: 8,
path: 'pyAnalysis'
},
{
id: 9,
path: 'pyDataclean'
},
{
id: 10,
path: 'pyAcquisition'
}
],
whiteList: ['/login', '/index/list', '/cityPartner/list', '/devPlatform/list'],
/**
* 多语言配置
* */

Loading…
Cancel
Save