竞赛产品调整暂提
This commit is contained in:
parent
508afb9954
commit
dc68ba2397
@ -228,6 +228,8 @@ const ContestSceneManage = () => import('@/views/contestDataManage/contestSceneM
|
||||
const ContestTaskScoreManage = () => import('@/views/contestDataManage/contestTaskScoreManage/ContestTaskScoreManage');
|
||||
const ContestSeasonManage = () => import('@/views/contestDataManage/contestSeasonManage/ContestSeasonManage');
|
||||
const ContestScoreEdit = () => import('@/views/contestDataManage/contestTaskScoreManage/edit');
|
||||
const ContestList = () => import('@/views/contest/contestList');
|
||||
const ContestDetail = () => import('@/views/contest/contestDetail');
|
||||
|
||||
// import { GenerateRouteProjectList } from '@/scripts/ProjectConfig';
|
||||
// import { getSessionStorage } from '@/utils/auth';
|
||||
@ -673,6 +675,16 @@ export const publicAsyncRoute = [
|
||||
path: '/pis',
|
||||
component: PisScreen,
|
||||
hidden: true
|
||||
},
|
||||
{
|
||||
path: '/contest/list',
|
||||
component: ContestList,
|
||||
hidden: true
|
||||
},
|
||||
{
|
||||
path: '/contest/detail',
|
||||
component: ContestDetail,
|
||||
hidden: true
|
||||
}
|
||||
|
||||
];
|
||||
|
13
src/views/contest/contestDetail.vue
Normal file
13
src/views/contest/contestDetail.vue
Normal file
@ -0,0 +1,13 @@
|
||||
<template>
|
||||
<div>任务详情</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "contestDetail"
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
13
src/views/contest/contestList.vue
Normal file
13
src/views/contest/contestList.vue
Normal file
@ -0,0 +1,13 @@
|
||||
<template>
|
||||
<div>任务列表</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "contestList"
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
@ -242,6 +242,10 @@ export default {
|
||||
type: this.$route.query.type
|
||||
};
|
||||
this.judgeOtherPage(params);
|
||||
} else if (this.$store.state.projectConfig.projectCode === 'DSXL') {
|
||||
this.loading = false;
|
||||
path = '/contest/list';
|
||||
this.$router.push({ path: path });
|
||||
} else {
|
||||
this.loading = false;
|
||||
path = '/simulation/simulationIndex';
|
||||
|
Loading…
Reference in New Issue
Block a user