mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/student-h5.git
synced 2025-12-09 19:06:47 +08:00
21 lines
729 B
Vue
21 lines
729 B
Vue
<!--
|
|
* @Author: lixg lixg@dongwu-inc.com
|
|
* @Date: 2023-01-17 19:47:07
|
|
* @LastEditors: lixg lixg@dongwu-inc.com
|
|
* @LastEditTime: 2023-02-19 10:45:30
|
|
* @FilePath: /stu_h5/src/views/sign/signSuccessResult.vue
|
|
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
|
-->
|
|
<template>
|
|
<el-result icon="success" title="签到成功" sub-title="您已经签到成功">
|
|
<template #extra>
|
|
<el-button type="primary" @click="toIndex">返回首页</el-button>
|
|
</template>
|
|
</el-result>
|
|
</template>
|
|
<script setup>
|
|
function toIndex() {
|
|
window.location.href = import.meta.env.VITE_BOE_API_URL;
|
|
}
|
|
</script>
|