86 lines
2.2 KiB
Vue
86 lines
2.2 KiB
Vue
<!--
|
||
@description 错误日志展示组件,收集并展示前端运行时错误列表
|
||
@author D吕贺034244311
|
||
@date 20260616
|
||
-->
|
||
<template>
|
||
<div v-if="errorLogs.length>0">
|
||
<el-badge :is-dot="true" style="line-height: 25px;margin-top: -5px;" @click="dialogTableVisible=true">
|
||
<el-button style="padding: 8px 10px;" size="small" type="danger">
|
||
<svg-icon icon-class="bug" />
|
||
</el-button>
|
||
</el-badge>
|
||
|
||
<el-dialog v-model="dialogTableVisible" width="80%" append-to="body">
|
||
<template #header>
|
||
<span style="padding-right: 10px;">Error Log</span>
|
||
<el-button size="small" type="primary" @click="clearAll">
|
||
<el-icon><Delete /></el-icon> Clear All
|
||
</el-button>
|
||
</template>
|
||
<el-table :data="errorLogs" border>
|
||
<el-table-column label="Message">
|
||
<template #default="{row}">
|
||
<div>
|
||
<span class="message-title">Msg:</span>
|
||
<el-tag type="danger">
|
||
{{ row.err.message }}
|
||
</el-tag>
|
||
</div>
|
||
<br>
|
||
<div>
|
||
<span class="message-title" style="padding-right: 10px;">Info: </span>
|
||
<el-tag type="warning">
|
||
error in {{ row.info }}
|
||
</el-tag>
|
||
</div>
|
||
<br>
|
||
<div>
|
||
<span class="message-title" style="padding-right: 16px;">Url: </span>
|
||
<el-tag type="success">
|
||
{{ row.url }}
|
||
</el-tag>
|
||
</div>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column label="Stack">
|
||
<template #default="scope">
|
||
{{ scope.row.err.stack }}
|
||
</template>
|
||
</el-table-column>
|
||
</el-table>
|
||
</el-dialog>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
name: 'ErrorLog',
|
||
data() {
|
||
return {
|
||
dialogTableVisible: false
|
||
}
|
||
},
|
||
computed: {
|
||
errorLogs() {
|
||
return this.$store.getters.errorLogs
|
||
}
|
||
},
|
||
methods: {
|
||
clearAll() {
|
||
this.dialogTableVisible = false
|
||
this.$store.dispatch('errorLog/clearErrorLog')
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style scoped>
|
||
.message-title {
|
||
font-size: 16px;
|
||
color: #333;
|
||
font-weight: bold;
|
||
padding-right: 8px;
|
||
}
|
||
</style>
|