forked from osredm_test/osredm-comp-custom
update
This commit is contained in:
parent
df61dd91d1
commit
3979bcfb50
File diff suppressed because it is too large
Load Diff
|
@ -14,8 +14,10 @@
|
||||||
"mavon-editor": "^2.10.4",
|
"mavon-editor": "^2.10.4",
|
||||||
"mui-player": "^1.6.0",
|
"mui-player": "^1.6.0",
|
||||||
"mui-player-desktop-plugin": "^1.4.2",
|
"mui-player-desktop-plugin": "^1.4.2",
|
||||||
|
"sass-loader": "^7.3.1",
|
||||||
"vue": "^2.6.11",
|
"vue": "^2.6.11",
|
||||||
"vue-router": "3.5.2"
|
"vue-router": "3.5.2",
|
||||||
|
"node-sass": "^4.14.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@vue/cli-plugin-babel": "~4.4.5",
|
"@vue/cli-plugin-babel": "~4.4.5",
|
||||||
|
|
|
@ -0,0 +1,90 @@
|
||||||
|
<template>
|
||||||
|
|
||||||
|
<div class="site-wrapper site-page--not-found">
|
||||||
|
<div class="site-content__wrapper">
|
||||||
|
<div class="site-content">
|
||||||
|
<h2 class="not-found-title">404</h2>
|
||||||
|
<p class="not-found-desc">抱歉!您访问的页面<em>失联</em>啦 ...</p>
|
||||||
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
class="not-found-btn-gohome"
|
||||||
|
@click="backOsredm"
|
||||||
|
>进入首页</el-button
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</template>
|
||||||
|
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
methods:{
|
||||||
|
|
||||||
|
// 返回红山开源
|
||||||
|
backOsredm(){
|
||||||
|
window.location.href='https://www.osredm.com'
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
|
||||||
|
.site-wrapper.site-page--not-found {
|
||||||
|
position: absolute;
|
||||||
|
top: 60px;
|
||||||
|
right: 0;
|
||||||
|
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
.site-content__wrapper {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
.site-content {
|
||||||
|
position: fixed;
|
||||||
|
top: 15%;
|
||||||
|
left: 50%;
|
||||||
|
z-index: 2;
|
||||||
|
padding: 30px;
|
||||||
|
text-align: center;
|
||||||
|
transform: translate(-50%, 0);
|
||||||
|
}
|
||||||
|
.not-found-title {
|
||||||
|
margin: 20px 0 15px;
|
||||||
|
font-size: 8em;
|
||||||
|
font-weight: 500;
|
||||||
|
color: rgb(55, 71, 79);
|
||||||
|
}
|
||||||
|
.not-found-desc {
|
||||||
|
margin: 0 0 30px;
|
||||||
|
font-size: 26px;
|
||||||
|
text-transform: uppercase;
|
||||||
|
color: rgb(118, 131, 143);
|
||||||
|
> em {
|
||||||
|
font-style: normal;
|
||||||
|
color: #ee8145;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.not-found-btn-gohome {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.el-button--primary {
|
||||||
|
color: #fff;
|
||||||
|
background: #466AFF ;
|
||||||
|
border-color: #466AFF ;;
|
||||||
|
}
|
||||||
|
.el-button--primary:hover, .el-button--primary:focus {
|
||||||
|
background: #7890ee;
|
||||||
|
border-color: #7890ee;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
|
@ -65,37 +65,37 @@ export default {
|
||||||
handleSelect(key, keyPath) {
|
handleSelect(key, keyPath) {
|
||||||
switch (key){
|
switch (key){
|
||||||
case "home":
|
case "home":
|
||||||
pageUtils.openPage(this.$router,"/home")
|
pageUtils.openPage(this.$router,"/" + this.$route.params.compId + "/home")
|
||||||
break;
|
break;
|
||||||
case "chat":
|
case "chat":
|
||||||
pageUtils.openPage(this.$router,"/chat")
|
pageUtils.openPage(this.$router,"/" +this.$route.params.compId +"/chat")
|
||||||
break;
|
break;
|
||||||
case "guide":
|
case "guide":
|
||||||
pageUtils.openPage(this.$router,"/guide")
|
pageUtils.openPage(this.$router,"/" +this.$route.params.compId +"/guide")
|
||||||
break;
|
break;
|
||||||
case "apply":
|
case "apply":
|
||||||
pageUtils.openPage(this.$router,"/apply")
|
pageUtils.openPage(this.$router,"/" +this.$route.params.compId +"/apply")
|
||||||
break;
|
break;
|
||||||
case "submit":
|
case "submit":
|
||||||
pageUtils.openPage(this.$router,"/submit")
|
pageUtils.openPage(this.$router,"/" +this.$route.params.compId +"/submit")
|
||||||
break;
|
break;
|
||||||
case "chart":
|
case "chart":
|
||||||
pageUtils.openPage(this.$router,"/chart")
|
pageUtils.openPage(this.$router,"/" +this.$route.params.compId +"/chart")
|
||||||
break;
|
break;
|
||||||
case "contact":
|
case "contact":
|
||||||
pageUtils.openPage(this.$router,"/contact")
|
pageUtils.openPage(this.$router,"/" +this.$route.params.compId +"/contact")
|
||||||
break;
|
break;
|
||||||
case "applyList":
|
case "applyList":
|
||||||
pageUtils.openPage(this.$router,"/applyList")
|
pageUtils.openPage(this.$router,"/" +this.$route.params.compId +"/applyList")
|
||||||
break;
|
break;
|
||||||
case "submitList":
|
case "submitList":
|
||||||
pageUtils.openPage(this.$router,"/submitList")
|
pageUtils.openPage(this.$router,"/" +this.$route.params.compId +"/submitList")
|
||||||
break;
|
break;
|
||||||
case "notice":
|
case "notice":
|
||||||
pageUtils.openPage(this.$router,"/notice")
|
pageUtils.openPage(this.$router,"/" +this.$route.params.compId +"/notice")
|
||||||
break;
|
break;
|
||||||
case "rank":
|
case "rank":
|
||||||
pageUtils.openPage(this.$router,"/rank")
|
pageUtils.openPage(this.$router,"/" +this.$route.params.compId +"/rank")
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
// console.log(key)
|
// console.log(key)
|
||||||
|
|
|
@ -0,0 +1,212 @@
|
||||||
|
<template>
|
||||||
|
<div class="loginWraper">
|
||||||
|
<!-- v-bind:model的缩写 绑定登录表格
|
||||||
|
表单验证规则 自己设定
|
||||||
|
获取登录表格元素 this.longinForm -->
|
||||||
|
<el-form
|
||||||
|
:model="loginForm"
|
||||||
|
:rules="Rules"
|
||||||
|
ref="loginForm"
|
||||||
|
label-position="left"
|
||||||
|
label-width="0px"
|
||||||
|
class="login-container"
|
||||||
|
>
|
||||||
|
<h3 class="title"></h3>
|
||||||
|
<el-form-item prop="adminName" class="a">
|
||||||
|
<el-input
|
||||||
|
type="text"
|
||||||
|
v-model="loginForm.adminName"
|
||||||
|
auto-complete="off"
|
||||||
|
placeholder="账号"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item prop="adminPass">
|
||||||
|
<el-input
|
||||||
|
type="password"
|
||||||
|
v-model="loginForm.adminPass"
|
||||||
|
auto-complete="off"
|
||||||
|
placeholder="密码"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<!-- 验证码 -->
|
||||||
|
<el-form-item>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item prop="captcha">
|
||||||
|
<el-input
|
||||||
|
type="test"
|
||||||
|
v-model="loginForm.captcha"
|
||||||
|
auto-complete="off"
|
||||||
|
placeholder="验证码, 单击图片刷新"
|
||||||
|
style="width: 100%"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col class="line" :span="1"> </el-col>
|
||||||
|
<el-col :span="11">
|
||||||
|
<el-form-item>
|
||||||
|
<img
|
||||||
|
style="width: 70%"
|
||||||
|
class="pointer"
|
||||||
|
:src="loginForm.src"
|
||||||
|
@click="refreshCaptcha()"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<el-form-item style="width: 100%">
|
||||||
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
style="width: 48%"
|
||||||
|
@click.native.prevent="reset()"
|
||||||
|
>重 置</el-button
|
||||||
|
>
|
||||||
|
<!-- 主要按钮 -->
|
||||||
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
style="width: 48%"
|
||||||
|
@click.native.prevent="login()"
|
||||||
|
>登 录</el-button
|
||||||
|
>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
<div class="footer"><p>@ 1703050328 张启磊</p></div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Cookies from "js-cookie";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "Login",
|
||||||
|
|
||||||
|
data() {
|
||||||
|
// 定义数据
|
||||||
|
return {
|
||||||
|
logining: false,
|
||||||
|
loginForm: {
|
||||||
|
// 登录表格
|
||||||
|
adminName: "",
|
||||||
|
adminPass: "",
|
||||||
|
captcha: "",
|
||||||
|
src: "http://localhost:8088/graduate_evaluate/createPicCode",
|
||||||
|
},
|
||||||
|
Rules: {
|
||||||
|
// 表单验证规则 必须填写
|
||||||
|
adminName: [{ required: true, message: "请输入账号", trigger: "blur" }],
|
||||||
|
adminPass: [{ required: true, message: "请输入密码", trigger: "blur" }],
|
||||||
|
captcha: [{ required: true, message: "请输入验证码", trigger: "blur" }],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
// 定义方法
|
||||||
|
login() {
|
||||||
|
let adminInfo = {
|
||||||
|
picCode: this.loginForm.captcha,
|
||||||
|
adminName: this.loginForm.adminName,
|
||||||
|
adminPass: this.loginForm.adminPass,
|
||||||
|
};
|
||||||
|
|
||||||
|
this.$api.login
|
||||||
|
.login(adminInfo)
|
||||||
|
.then((res) => {
|
||||||
|
console.log(res);
|
||||||
|
if (res.code != 0) {
|
||||||
|
alert(res.message);
|
||||||
|
this.loginForm.src =
|
||||||
|
"http://localhost:8088/graduate_evaluate/createPicCode?t=" +
|
||||||
|
new Date().getTime();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
Cookies.set("token", res.data.token); // 放置token到Cookie
|
||||||
|
sessionStorage.setItem("name", res.data.adminName); // 保存管理员信息到本地本地存储
|
||||||
|
sessionStorage.setItem("pass", res.data.adminPass);
|
||||||
|
sessionStorage.setItem("rank", res.data.adminRank);
|
||||||
|
this.$router.push("/"); // 登录成功,跳转到主页
|
||||||
|
})
|
||||||
|
.catch(function (res) {
|
||||||
|
alert(res);
|
||||||
|
this.refreshCaptcha();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
// 刷新验证码
|
||||||
|
refreshCaptcha: function () {
|
||||||
|
this.loginForm.src =
|
||||||
|
"http://localhost:8088/graduate_evaluate/createPicCode?t=" +
|
||||||
|
new Date().getTime();
|
||||||
|
},
|
||||||
|
|
||||||
|
// 重置表单
|
||||||
|
reset() {
|
||||||
|
this.$refs.loginForm.resetFields();
|
||||||
|
},
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
|
||||||
|
.login-container {
|
||||||
|
-webkit-border-radius: 5px;
|
||||||
|
-moz-border-radius: 5px;
|
||||||
|
border-radius: 20px;
|
||||||
|
background-clip: padding-box;
|
||||||
|
margin: 150px auto;
|
||||||
|
width: 350px;
|
||||||
|
padding: 35px 35px 15px 35px;
|
||||||
|
background: #fff;
|
||||||
|
opacity: 0.9;
|
||||||
|
border: 1px solid #eaeaea;
|
||||||
|
box-shadow: 0 0 25px #cac6c6;
|
||||||
|
.title {
|
||||||
|
margin: 0px auto 40px auto;
|
||||||
|
text-align: center;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
||||||
|
|
||||||
|
<style>
|
||||||
|
|
||||||
|
.loginWraper {
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
bottom: 0;
|
||||||
|
right: 0;
|
||||||
|
background: url(../../assets/Pic/loginPic.jpg) no-repeat;
|
||||||
|
background-size: cover;
|
||||||
|
}
|
||||||
|
.login-container .el-input {
|
||||||
|
width: 350px;
|
||||||
|
left: 10px;
|
||||||
|
}
|
||||||
|
.login-container .el-form-item__error {
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
.footer {
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.el-button--primary {
|
||||||
|
color: #fff;
|
||||||
|
background: rgb(66, 166, 199);
|
||||||
|
border-color: rgb(66, 166, 199);;
|
||||||
|
}
|
||||||
|
.el-button--primary:hover, .el-button--primary:focus {
|
||||||
|
background: #7890ee;
|
||||||
|
border-color: #7890ee;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
|
@ -6,8 +6,7 @@ import ElementUI from 'element-ui'
|
||||||
import 'element-ui/lib/theme-chalk/index.css'
|
import 'element-ui/lib/theme-chalk/index.css'
|
||||||
|
|
||||||
import Axios from "axios"
|
import Axios from "axios"
|
||||||
import http from './utils/http/index'
|
import api from './utils/http/index'
|
||||||
|
|
||||||
import mavonEditor from 'mavon-editor'
|
import mavonEditor from 'mavon-editor'
|
||||||
import 'mavon-editor/dist/css/index.css'
|
import 'mavon-editor/dist/css/index.css'
|
||||||
|
|
||||||
|
@ -19,7 +18,7 @@ import * as echarts from 'echarts';
|
||||||
import moment from "moment"; */
|
import moment from "moment"; */
|
||||||
|
|
||||||
|
|
||||||
Vue.use(http)
|
Vue.use(api)
|
||||||
Vue.prototype.$axios = Axios
|
Vue.prototype.$axios = Axios
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
<script>
|
<script>
|
||||||
// import 'mavon-editor/dist/css/index.css'
|
// import 'mavon-editor/dist/css/index.css'
|
||||||
import Video from "@/components/Video";
|
import Video from "@/components/Video";
|
||||||
|
import pageUtils from "@/utils/pageUtils";
|
||||||
export default {
|
export default {
|
||||||
name: "Home",
|
name: "Home",
|
||||||
components: {
|
components: {
|
||||||
|
@ -41,6 +41,17 @@ export default {
|
||||||
videoWidth: "100%",
|
videoWidth: "100%",
|
||||||
content:'测试内容测试内容测试内容'
|
content:'测试内容测试内容测试内容'
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
methods:{
|
||||||
|
checkComp(){
|
||||||
|
|
||||||
|
|
||||||
|
pageUtils.checkComp(this.$router,this.$route.params.compId,this.$api)
|
||||||
|
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.checkComp()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -12,7 +12,7 @@ let routes = [
|
||||||
children:[
|
children:[
|
||||||
{
|
{
|
||||||
// 赛事首页
|
// 赛事首页
|
||||||
path: "/home",
|
path: "/:compId/home",
|
||||||
component: () => import("@/pages/Home/Home"),
|
component: () => import("@/pages/Home/Home"),
|
||||||
meta: {
|
meta: {
|
||||||
title: '红山开源社区'
|
title: '红山开源社区'
|
||||||
|
@ -20,7 +20,7 @@ let routes = [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// 赛事首页编辑
|
// 赛事首页编辑
|
||||||
path: "/homeEdit",
|
path: "/:compId/homeEdit",
|
||||||
component: () => import("@/pages/Home/HomeEdit"),
|
component: () => import("@/pages/Home/HomeEdit"),
|
||||||
meta: {
|
meta: {
|
||||||
title: '红山开源社区'
|
title: '红山开源社区'
|
||||||
|
@ -28,7 +28,7 @@ let routes = [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// 赛事指南
|
// 赛事指南
|
||||||
path: "/guide",
|
path: "/:compId/guide",
|
||||||
component: () => import("@/pages/Guide/Guide"),
|
component: () => import("@/pages/Guide/Guide"),
|
||||||
meta: {
|
meta: {
|
||||||
title: '红山开源社区'
|
title: '红山开源社区'
|
||||||
|
@ -36,7 +36,7 @@ let routes = [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// 赛事指南编辑
|
// 赛事指南编辑
|
||||||
path: "/guideEdit",
|
path: "/:compId/guideEdit",
|
||||||
component: () => import("@/pages/Guide/GuideEdit"),
|
component: () => import("@/pages/Guide/GuideEdit"),
|
||||||
meta: {
|
meta: {
|
||||||
title: '红山开源社区'
|
title: '红山开源社区'
|
||||||
|
@ -44,7 +44,7 @@ let routes = [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// 通知公告
|
// 通知公告
|
||||||
path: "/notice",
|
path: "/:compId/notice",
|
||||||
component: () => import("@/pages/Notice/Notice"),
|
component: () => import("@/pages/Notice/Notice"),
|
||||||
meta: {
|
meta: {
|
||||||
title: '红山开源社区'
|
title: '红山开源社区'
|
||||||
|
@ -52,7 +52,7 @@ let routes = [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// 通知公告编辑
|
// 通知公告编辑
|
||||||
path: "/noticeEdit",
|
path: "/:compId/noticeEdit",
|
||||||
component: () => import("@/pages/Notice/NoticeEdit"),
|
component: () => import("@/pages/Notice/NoticeEdit"),
|
||||||
meta: {
|
meta: {
|
||||||
title: '红山开源社区'
|
title: '红山开源社区'
|
||||||
|
@ -60,7 +60,7 @@ let routes = [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// 参赛报名
|
// 参赛报名
|
||||||
path: "/apply",
|
path: "/:compId/apply",
|
||||||
component: () => import("@/pages/Apply/Apply"),
|
component: () => import("@/pages/Apply/Apply"),
|
||||||
meta: {
|
meta: {
|
||||||
title: '红山开源社区'
|
title: '红山开源社区'
|
||||||
|
@ -68,7 +68,7 @@ let routes = [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// 作品提交
|
// 作品提交
|
||||||
path: "/submit",
|
path: "/:compId/submit",
|
||||||
component: () => import("@/pages/Submit/Submit"),
|
component: () => import("@/pages/Submit/Submit"),
|
||||||
meta: {
|
meta: {
|
||||||
title: '红山开源社区'
|
title: '红山开源社区'
|
||||||
|
@ -76,7 +76,7 @@ let routes = [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// 数据统计
|
// 数据统计
|
||||||
path: "/chart",
|
path: "/:compId/chart",
|
||||||
component: () => import("@/pages/Data/Chart"),
|
component: () => import("@/pages/Data/Chart"),
|
||||||
meta: {
|
meta: {
|
||||||
title: '红山开源社区'
|
title: '红山开源社区'
|
||||||
|
@ -84,7 +84,7 @@ let routes = [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// 排行榜
|
// 排行榜
|
||||||
path: "/rank",
|
path: "/:compId/rank",
|
||||||
component: () => import("@/pages/Data/Rank"),
|
component: () => import("@/pages/Data/Rank"),
|
||||||
meta: {
|
meta: {
|
||||||
title: '红山开源社区'
|
title: '红山开源社区'
|
||||||
|
@ -92,7 +92,7 @@ let routes = [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// 交流互动
|
// 交流互动
|
||||||
path: "/chat",
|
path: "/:compId/chat",
|
||||||
component: () => import("@/pages/Chat/Chat"),
|
component: () => import("@/pages/Chat/Chat"),
|
||||||
meta: {
|
meta: {
|
||||||
title: '红山开源社区'
|
title: '红山开源社区'
|
||||||
|
@ -100,7 +100,7 @@ let routes = [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// 交流互动编辑
|
// 交流互动编辑
|
||||||
path: "/chatEdit",
|
path: "/:compId/chatEdit",
|
||||||
component: () => import("@/pages/Chat/ChatEdit"),
|
component: () => import("@/pages/Chat/ChatEdit"),
|
||||||
meta: {
|
meta: {
|
||||||
title: '红山开源社区'
|
title: '红山开源社区'
|
||||||
|
@ -108,7 +108,7 @@ let routes = [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// 联系我们
|
// 联系我们
|
||||||
path: "/contactUs",
|
path: "/:compId/contactUs",
|
||||||
component: () => import("@/pages/ContactUs/ContactUs"),
|
component: () => import("@/pages/ContactUs/ContactUs"),
|
||||||
meta: {
|
meta: {
|
||||||
title: '红山开源社区'
|
title: '红山开源社区'
|
||||||
|
@ -116,7 +116,7 @@ let routes = [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// 联系我们编辑
|
// 联系我们编辑
|
||||||
path: "/contactUsEdit",
|
path: "/:compId/contactUsEdit",
|
||||||
component: () => import("@/pages/ContactUs/ContactUsEdit"),
|
component: () => import("@/pages/ContactUs/ContactUsEdit"),
|
||||||
meta: {
|
meta: {
|
||||||
title: '红山开源社区'
|
title: '红山开源社区'
|
||||||
|
@ -124,7 +124,7 @@ let routes = [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// 报名列表
|
// 报名列表
|
||||||
path: "/applyList",
|
path: "/:compId/applyList",
|
||||||
component: () => import("@/pages/Manage/ApplyList"),
|
component: () => import("@/pages/Manage/ApplyList"),
|
||||||
meta: {
|
meta: {
|
||||||
title: '红山开源社区'
|
title: '红山开源社区'
|
||||||
|
@ -132,7 +132,7 @@ let routes = [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// 作品列表
|
// 作品列表
|
||||||
path: "/submitList",
|
path: "/:compId/submitList",
|
||||||
component: () => import("@/pages/Manage/SubmitList"),
|
component: () => import("@/pages/Manage/SubmitList"),
|
||||||
meta: {
|
meta: {
|
||||||
title: '红山开源社区'
|
title: '红山开源社区'
|
||||||
|
@ -154,6 +154,11 @@ let routes = [
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/404',
|
||||||
|
component:() => import("@/components/404"),
|
||||||
|
name: '404'
|
||||||
}
|
}
|
||||||
|
|
||||||
]
|
]
|
||||||
|
|
|
@ -4,6 +4,7 @@ import config from './config' // 倒入默认配置
|
||||||
import router from '../../router'
|
import router from '../../router'
|
||||||
import { Message } from 'element-ui'
|
import { Message } from 'element-ui'
|
||||||
|
|
||||||
|
|
||||||
export default function $axios (options) {
|
export default function $axios (options) {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
const instance = axios.create({
|
const instance = axios.create({
|
||||||
|
@ -23,12 +24,12 @@ export default function $axios (options) {
|
||||||
|
|
||||||
// Tip: 2
|
// Tip: 2
|
||||||
// 带上 token , 可以结合 vuex 或者重 localStorage
|
// 带上 token , 可以结合 vuex 或者重 localStorage
|
||||||
let token = localStorage.getItem("systemToken")
|
// let token = localStorage.getItem("systemToken")
|
||||||
if (token) {
|
// if (token) {
|
||||||
config.headers.accessToken = token
|
// config.headers.accessToken = token
|
||||||
}else {
|
// }else {
|
||||||
router.push('/login')
|
// router.push('/login')
|
||||||
}
|
// }
|
||||||
// if (store.getters.token) {
|
// if (store.getters.token) {
|
||||||
// config.headers['X-Token'] = getToken() // 让每个请求携带token--['X-Token']为自定义key 请根据实际情况自行修改
|
// config.headers['X-Token'] = getToken() // 让每个请求携带token--['X-Token']为自定义key 请根据实际情况自行修改
|
||||||
// } else {
|
// } else {
|
||||||
|
@ -76,7 +77,7 @@ export default function $axios (options) {
|
||||||
let data;
|
let data;
|
||||||
// IE9时response.data是undefined,因此需要使用response.request.responseText(Stringify后的字符串)
|
// IE9时response.data是undefined,因此需要使用response.request.responseText(Stringify后的字符串)
|
||||||
if(response.data == undefined){
|
if(response.data == undefined){
|
||||||
data = response.request.responseText
|
data = JSON.parse(response.request.responseText)
|
||||||
} else{
|
} else{
|
||||||
data = response.data
|
data = response.data
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,9 +23,19 @@ export const mock = data => {
|
||||||
})
|
})
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
export const getComp = data => {
|
||||||
|
return axios({
|
||||||
|
url: '/comp/getCompByCompId',
|
||||||
|
method: 'post',
|
||||||
|
data
|
||||||
|
})
|
||||||
|
};
|
||||||
|
|
||||||
// 默认全部倒出
|
// 默认全部倒出
|
||||||
// 根据需要进行
|
// 根据需要进行
|
||||||
export default {
|
export default {
|
||||||
query,
|
query,
|
||||||
mock
|
mock,
|
||||||
|
getComp
|
||||||
}
|
}
|
|
@ -1,10 +1,47 @@
|
||||||
|
|
||||||
|
import { Message } from 'element-ui'
|
||||||
|
|
||||||
// Header导航栏页面更改
|
// Header导航栏页面更改
|
||||||
function openPage(router,path){
|
|
||||||
|
function openPage(router, path){
|
||||||
router.push({
|
router.push({
|
||||||
path: path
|
path: path
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 检测竞赛是否存在
|
||||||
|
function checkComp(router,compId, http){
|
||||||
|
var compInfo = {
|
||||||
|
compId
|
||||||
|
}
|
||||||
|
http.getComp(compInfo).then((res)=>{
|
||||||
|
console.log(res)
|
||||||
|
if (res.status === 0) {
|
||||||
|
//存在竞赛 但是要检测是否正式上线
|
||||||
|
if (res.data.online === true) {
|
||||||
|
//正式上线 可以显示页面
|
||||||
|
}else {
|
||||||
|
// 未正式上线,需要拦截等操作,跳转404
|
||||||
|
Message.warning("该竞赛还未上线")
|
||||||
|
//TODO: 可添加判断是否为白名单用户进行测试工作
|
||||||
|
router.push({
|
||||||
|
path: '/404'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
}else {
|
||||||
|
// 不存在该竞赛 提示 并跳转404
|
||||||
|
Message.warning("不存在该竞赛")
|
||||||
|
router.push({
|
||||||
|
path: '/404'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
openPage
|
openPage,
|
||||||
|
checkComp
|
||||||
}
|
}
|
|
@ -14,7 +14,7 @@ module.exports = {
|
||||||
port:8020,
|
port:8020,
|
||||||
proxy: {
|
proxy: {
|
||||||
'/api': {
|
'/api': {
|
||||||
target: 'http://localhost:8081',
|
target: 'http://localhost:8010',
|
||||||
changeOrigin: true,
|
changeOrigin: true,
|
||||||
pathRewrite: {
|
pathRewrite: {
|
||||||
'^/api': ''
|
'^/api': ''
|
||||||
|
|
Loading…
Reference in New Issue