| 123456789101112131415161718192021 |
- <template>
- <a-result status="404" title="404" sub-title="系统升级维护中。">
- <template #extra>
- <a-button type="primary" @click="gohome">返回首页</a-button>
- <a-button type="dashed" @click="goback">返回上一页</a-button>
- </template>
- </a-result>
- </template>
- <script>
- export default {
- methods: {
- gohome() {
- location.href = '/'
- },
- goback() {
- this.$router.go(-1)
- }
- }
- }
- </script>
|