增加面授课未发布提示

This commit is contained in:
sunhonglai
2025-04-01 17:29:09 +08:00
parent 324874a68f
commit 180bd018b4

View File

@@ -0,0 +1,13 @@
<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>