评估页面新增跳转

This commit is contained in:
zhangsir
2024-10-09 19:10:01 +08:00
parent b42942dd9d
commit 644b1edaa9
2 changed files with 26 additions and 0 deletions

View File

@@ -302,6 +302,11 @@ const { data } = useRequest(
targetId: infoId ? infoId : 0, targetId: infoId ? infoId : 0,
}, },
(e) => { (e) => {
if (e.code === 9) {
router.push({
path: "/NotProject3",
});
}
if (e.code === 10) { if (e.code === 10) {
router.push({ router.push({
path: "/NotProject2", path: "/NotProject2",

View File

@@ -0,0 +1,21 @@
<!--
* @Author: lixg lixg@dongwu-inc.com
* @Date: 2023-03-01 20:41:06
* @LastEditors: lixg lixg@dongwu-inc.com
* @LastEditTime: 2023-03-09 18:33:51
* @FilePath: /stu_h5/src/views/nottask/NotTask.vue
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
-->
<template>
<el-result icon="error" title="课程未开始,请耐心等待!" sub-title="请联系管理员">
<template #extra>
<el-button type="primary" @click="toIndex">返回首页</el-button>
</template>
</el-result>
</template>
<script setup>
function toIndex() {
window.location.href =
window.location.protocol + import.meta.env.VITE_BOE_HOME;
}
</script>