| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- <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
- width="70%"
- title="vue-admin-beautiful异常捕获(温馨提示:错误必须解决)"
- >
- <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 width="380" label="操作">
- <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 type="danger" icon="el-icon-delete" @click="clearAll">
- 暂不显示
- </el-button>
- </span>
- </el-dialog>
- </div>
- </template>
- <script>
- import { abbreviation, title } from "@/config/settings";
- import { mapGetters } from "vuex";
- export default {
- name: "ErrorLog",
- 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 {
- height: 28px;
- display: flex;
- justify-items: center;
- align-items: center;
- }
- }
- }
- </style>
|