mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-04-06 03:57:53 +08:00
64 lines
1.7 KiB
Vue
64 lines
1.7 KiB
Vue
<template>
|
|
<div v-if="errorLogs.length>0">
|
|
<el-badge :is-dot="true" style="line-height: 25px;margin-top: -5px;" @click.native="dialogTableVisible=true">
|
|
<el-button style="padding: 8px 10px;" size="small" type="danger">
|
|
<svg-icon icon-class="bug" />
|
|
</el-button>
|
|
</el-badge>
|
|
|
|
<el-dialog :visible.sync="dialogTableVisible" title="Error Log" width="80%">
|
|
<el-table :data="errorLogs" border>
|
|
<el-table-column label="Message">
|
|
<template slot-scope="scope">
|
|
<div>
|
|
<span class="message-title">Msg:</span>
|
|
<el-tag type="danger">{{ scope.row.err.message }}</el-tag>
|
|
</div>
|
|
<br>
|
|
<div>
|
|
<span class="message-title" style="padding-right: 10px;">Info: </span>
|
|
<el-tag type="warning">{{ scope.row.vm.$vnode.tag }} error in {{ scope.row.info }}</el-tag>
|
|
</div>
|
|
<br>
|
|
<div>
|
|
<span class="message-title" style="padding-right: 16px;">Url: </span>
|
|
<el-tag type="success">{{ scope.row.url }}</el-tag>
|
|
</div>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="Stack">
|
|
<template slot-scope="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
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.message-title {
|
|
font-size: 16px;
|
|
color: #333;
|
|
font-weight: bold;
|
|
padding-right: 8px;
|
|
}
|
|
</style>
|