27 lines
681 B
Vue
27 lines
681 B
Vue
<!--
|
|
* @Author: zwq
|
|
* @Date: 2023-08-07 08:26:17
|
|
* @LastEditors: zwq
|
|
* @LastEditTime: 2023-08-07 16:02:48
|
|
* @Description:
|
|
-->
|
|
<template>
|
|
<div class="aui-wrapper aui-page__not-found">
|
|
<div class="aui-content__wrapper">
|
|
<div class="aui-content">
|
|
<h2 class="title">400</h2>
|
|
<p class="desc" v-html="$t('notFound.desc')"></p>
|
|
<div class="btn-bar">
|
|
<el-button @click="$router.go(-1)">{{ $t('notFound.back') }}</el-button>
|
|
<el-button type="primary" @click="$router.push({ name: 'main' })">{{ $t('notFound.home') }}</el-button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
}
|
|
</script>
|