实验台等修复

UI_2022-02-10
yujialong 3 years ago
parent 4e6fca85ad
commit 998289be40
  1. 3
      src/components/breadcrumb/index.vue
  2. 10
      src/layouts/navbar/index.vue
  3. 8
      src/pages/ass/list/index.vue
  4. 33
      src/pages/station/list/index.vue
  5. 12
      src/plugins/requests/index.js

@ -1,7 +1,7 @@
<template>
<div class="breadcrumb">
<el-breadcrumb separator=">">
<el-breadcrumb-item v-for="(item, index) in pages" :key="index" :to="{ path: index == pages.length - 1 ? curRoute : route }">{{item}}</el-breadcrumb-item>
<el-breadcrumb-item v-for="(item, index) in pages" :key="index" :to="{ path: index == pages.length - 1 ? '.' : route }">{{item}}</el-breadcrumb-item>
</el-breadcrumb>
</div>
</template>
@ -26,7 +26,6 @@ export default {
},
methods: {
update(data){
console.log(2222,data)
this.pages = data.split('/')
}
}

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

@ -71,17 +71,17 @@
<el-table-column prop="sysName" label="课程名称" align="center" show-overflow-tooltip></el-table-column>
<el-table-column prop="experimentalName" label="考核名称" align="center" show-overflow-tooltip></el-table-column>
<el-table-column prop="className" label="实验班级" align="center"></el-table-column>
<el-table-column prop="experimentalNum" label="实验人数" align="center"></el-table-column>
<el-table-column prop="experimentDuration" label="考试时长" align="center"></el-table-column>
<el-table-column prop="experimentalNum" width="90" label="实验人数" align="center"></el-table-column>
<el-table-column prop="experimentDuration" width="90" label="考试时长" align="center"></el-table-column>
<el-table-column prop="createTime" label="创建时间" align="center"></el-table-column>
<el-table-column prop="startTime" label="起始时间" align="center"></el-table-column>
<el-table-column prop="stopTime" label="结束时间" align="center"></el-table-column>
<el-table-column label="倒计时" align="center">
<el-table-column label="倒计时" width="90" align="center">
<template slot-scope="scope">
<span>{{ timeFilter(scope.row) }}</span>
</template>
</el-table-column>
<el-table-column label="考核状态" align="center">
<el-table-column label="考核状态" width="90" align="center">
<template slot-scope="scope">
<span class="ellipsis">{{ status[scope.row.status] }}</span>
</template>

@ -1,6 +1,6 @@
<template>
<!-- 实验台 -->
<div class="box index">
<div class="wrap index">
<div class="search">
<h6>创新实验智能教学</h6>
<div class="input">
@ -8,11 +8,10 @@
<input type="text" placeholder="请输入关键词" v-model="keyword">
</div>
</div>
<div class="wrap">
<div class="station">
<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" v-html="item.curriculumName"></p>
</a>
</template>
</div>
@ -79,34 +78,24 @@ export default {
}
}
.wrap {
.station {
display: flex;
flex-wrap: wrap;
width: 70%;
margin: 0 auto;
width: 1072px;
min-height: calc(100vh - 520px);
box-sizing: border-box;
padding: 30px 0;
margin: 0 auto;
.item {
width: 16%;
margin: 20px;
text-align: center;
width: 256px;
height: 195px;
margin: 0 6px 4px;
cursor: pointer;
&:hover {
opacity: .9;
}
img {
width: 100px;
height: 100px;
margin: 0 auto 6px;
}
.text {
font-size: 14px;
text-align: center;
color: #333;
width: 100%;
height: 100%;
}
}
}

@ -21,7 +21,7 @@ service.interceptors.request.use(config => {
util.errorMsg({
message: "退出登陆",
onClose: function() {
router.push({ name: "/login" });
router.push({ name: "/index" });
}
});
return Promise.reject(err);
@ -54,10 +54,7 @@ service.interceptors.response.use(
util.errorMsg("登录过期,请重新登录");
setTimeout(() => {
router.replace({
path: "/login",
query: {
redirect: router.currentRoute.fullPath
}
path: "/index"
});
}, 1000);
break;
@ -77,10 +74,7 @@ service.interceptors.response.use(
// 跳转登录页面,并将要浏览的页面fullPath传过去,登录成功后跳转需要访问的页面
setTimeout(() => {
router.replace({
path: "/login",
query: {
redirect: router.currentRoute.fullPath
}
path: "/index"
});
}, 1000);
break;

Loading…
Cancel
Save