forked from AkkomaGang/admin-fe
Remove unused Error log view files
This commit is contained in:
parent
6abb32e3e6
commit
0087e95141
7 changed files with 0 additions and 77 deletions
|
@ -158,11 +158,6 @@ export default {
|
||||||
confirm: 'Confirm',
|
confirm: 'Confirm',
|
||||||
unfollow: 'Unfollow'
|
unfollow: 'Unfollow'
|
||||||
},
|
},
|
||||||
errorLog: {
|
|
||||||
tips: 'Please click the bug icon in the upper right corner',
|
|
||||||
description: 'Now the management system are basically the form of the spa, it enhances the user experience, but it also increases the possibility of page problems, a small negligence may lead to the entire page deadlock. Fortunately Vue provides a way to catch handling exceptions, where you can handle errors or report exceptions.',
|
|
||||||
documentation: 'Document introduction'
|
|
||||||
},
|
|
||||||
excel: {
|
excel: {
|
||||||
export: 'Export',
|
export: 'Export',
|
||||||
selectedExport: 'Export Selected Items',
|
selectedExport: 'Export Selected Items',
|
||||||
|
|
|
@ -127,11 +127,6 @@ export default {
|
||||||
cancel: 'Cancelar',
|
cancel: 'Cancelar',
|
||||||
confirm: 'Confirmar'
|
confirm: 'Confirmar'
|
||||||
},
|
},
|
||||||
errorLog: {
|
|
||||||
tips: 'Please click the bug icon in the upper right corner',
|
|
||||||
description: 'Now the management system are basically the form of the spa, it enhances the user experience, but it also increases the possibility of page problems, a small negligence may lead to the entire page deadlock. Fortunately Vue provides a way to catch handling exceptions, where you can handle errors or report exceptions.',
|
|
||||||
documentation: 'Documento de introducción'
|
|
||||||
},
|
|
||||||
excel: {
|
excel: {
|
||||||
export: 'Exportar',
|
export: 'Exportar',
|
||||||
selectedExport: 'Exportar seleccionados',
|
selectedExport: 'Exportar seleccionados',
|
||||||
|
|
|
@ -128,11 +128,6 @@ export default {
|
||||||
cancel: 'Anullar',
|
cancel: 'Anullar',
|
||||||
confirm: 'Confirmar'
|
confirm: 'Confirmar'
|
||||||
},
|
},
|
||||||
errorLog: {
|
|
||||||
tips: 'Mercés de clicar l’icòna del babau amont a man drecha',
|
|
||||||
description: 'Ara que lo sistèma de gestion es coma un spa, melhora l’experiéncia dels utilizaire mas aumenta tanben lo risc de problèmas sus la pagina, una pichona negligéncia pòt menar a un blocatge complèt de la pagina. Urosament Vue fornís de manièras per gerir las excepcions, trobar las errors o senhalar las excepcions.',
|
|
||||||
documentation: 'Presentacion del document'
|
|
||||||
},
|
|
||||||
excel: {
|
excel: {
|
||||||
export: 'Exportar',
|
export: 'Exportar',
|
||||||
selectedExport: 'Exportar los elements seleccionats',
|
selectedExport: 'Exportar los elements seleccionats',
|
||||||
|
|
|
@ -127,11 +127,6 @@ export default {
|
||||||
cancel: '取 消',
|
cancel: '取 消',
|
||||||
confirm: '确 定'
|
confirm: '确 定'
|
||||||
},
|
},
|
||||||
errorLog: {
|
|
||||||
tips: '请点击右上角bug小图标',
|
|
||||||
description: '现在的管理后台基本都是spa的形式了,它增强了用户体验,但同时也会增加页面出问题的可能性,可能一个小小的疏忽就导致整个页面的死锁。好在 Vue 官网提供了一个方法来捕获处理异常,你可以在其中进行错误处理或者异常上报。',
|
|
||||||
documentation: '文档介绍'
|
|
||||||
},
|
|
||||||
excel: {
|
excel: {
|
||||||
export: '导出',
|
export: '导出',
|
||||||
selectedExport: '导出已选择项',
|
selectedExport: '导出已选择项',
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
<template>
|
|
||||||
<div>
|
|
||||||
<!--error code-->
|
|
||||||
{{ a.a }}
|
|
||||||
<!--error code-->
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
name: 'ErrorTestA'
|
|
||||||
}
|
|
||||||
</script>
|
|
|
@ -1,11 +0,0 @@
|
||||||
<template>
|
|
||||||
<div/>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
created() {
|
|
||||||
this.b = b // eslint-disable-line
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
|
@ -1,33 +0,0 @@
|
||||||
<template>
|
|
||||||
<div class="errPage-container">
|
|
||||||
<errorA/>
|
|
||||||
<errorB/>
|
|
||||||
<!-- $t is vue-i18n global function to translate lang -->
|
|
||||||
<h3>{{ $t('errorLog.tips') }}</h3>
|
|
||||||
<code>
|
|
||||||
{{ $t('errorLog.description') }}
|
|
||||||
<a target="_blank" class="link-type" href="https://panjiachen.github.io/vue-element-admin-site/guide/advanced/error.html">
|
|
||||||
{{ $t('errorLog.documentation') }}
|
|
||||||
</a>
|
|
||||||
</code>
|
|
||||||
<a href="#">
|
|
||||||
<img src="https://wpimg.wallstcn.com/360e4842-4db5-42d0-b078-f9a84a825546.gif">
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import errorA from './errorTestA'
|
|
||||||
import errorB from './errorTestB'
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: 'ErrorLog',
|
|
||||||
components: { errorA, errorB }
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
.errPage-container {
|
|
||||||
padding: 30px;
|
|
||||||
}
|
|
||||||
</style>
|
|
Loading…
Reference in a new issue