mirror of
https://gitee.com/chu1204505056/vue-admin-beautiful.git
synced 2025-04-05 05:42:45 +08:00
129 lines
3.4 KiB
Vue
129 lines
3.4 KiB
Vue
<template>
|
|
<div v-if="errorLogs.length > 0">
|
|
<el-badge
|
|
:value="errorLogs.length"
|
|
@click.native="dialogTableVisible = true"
|
|
>
|
|
<el-button type="danger">
|
|
<vab-icon :icon="['fas', 'bug']" />
|
|
</el-button>
|
|
</el-badge>
|
|
|
|
<el-dialog
|
|
:visible.sync="dialogTableVisible"
|
|
append-to-body
|
|
title="vue-admin-better异常捕获(温馨提示:错误必须解决)"
|
|
width="70%"
|
|
>
|
|
<el-table :data="errorLogs">
|
|
<el-table-column label="报错路由">
|
|
<template slot-scope="{ row }">
|
|
<a :href="row.url" target="_blank">
|
|
<el-tag type="success">{{ row.url }}</el-tag>
|
|
</a>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="错误信息">
|
|
<template slot-scope="{ row }">
|
|
<el-tag type="danger">{{ decodeUnicode(row.err.message) }}</el-tag>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="错误详情" width="120">
|
|
<template slot-scope="scope">
|
|
<el-popover placement="top-start" trigger="hover">
|
|
<div style="color: red">
|
|
{{ scope.row.err.stack }}
|
|
</div>
|
|
<el-button slot="reference">查看</el-button>
|
|
</el-popover>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="操作" width="380">
|
|
<template slot-scope="{ row }">
|
|
<a
|
|
v-for="(item, index) in searchList"
|
|
:key="index"
|
|
:href="item.url + decodeUnicode(row.err.message)"
|
|
target="_blank"
|
|
>
|
|
<el-button style="margin-left: 5px" type="primary">
|
|
<vab-icon :icon="['fas', 'search']" />
|
|
{{ item.title }}
|
|
</el-button>
|
|
</a>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
<span slot="footer" class="dialog-footer">
|
|
<el-button @click="dialogTableVisible = false">取 消</el-button>
|
|
<el-button icon="el-icon-delete" type="danger" @click="clearAll">
|
|
暂不显示
|
|
</el-button>
|
|
</span>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { abbreviation, title } from '@/config'
|
|
import { mapGetters } from 'vuex'
|
|
|
|
export default {
|
|
name: 'VabErrorLog',
|
|
|
|
data() {
|
|
return {
|
|
dialogTableVisible: false,
|
|
title: title,
|
|
abbreviation: abbreviation,
|
|
searchList: [
|
|
{
|
|
title: '百度搜索',
|
|
url: 'https://www.baidu.com/baidu?wd=',
|
|
},
|
|
{
|
|
title: '谷歌搜索',
|
|
url: 'https://www.google.com/search?q=',
|
|
},
|
|
{
|
|
title: 'Magi搜索',
|
|
url: 'https://magi.com/search?q=',
|
|
},
|
|
],
|
|
}
|
|
},
|
|
|
|
computed: {
|
|
...mapGetters({
|
|
errorLogs: 'errorLog/errorLogs',
|
|
}),
|
|
},
|
|
methods: {
|
|
clearAll() {
|
|
this.dialogTableVisible = false
|
|
this.$store.dispatch('errorLog/clearErrorLog')
|
|
},
|
|
decodeUnicode(str) {
|
|
str = str.replace(/\\/g, '%')
|
|
str = unescape(str)
|
|
str = str.replace(/%/g, '\\')
|
|
str = str.replace(/\\/g, '')
|
|
return str
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
::v-deep {
|
|
.el-badge {
|
|
.el-button {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-items: center;
|
|
height: 28px;
|
|
}
|
|
}
|
|
}
|
|
</style>
|