120 lines
3.7 KiB
Vue
120 lines
3.7 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<div class="head-container">
|
|
<Search />
|
|
<crudOperation>
|
|
<el-button
|
|
slot="left"
|
|
class="filter-item"
|
|
type="danger"
|
|
icon="el-icon-delete"
|
|
size="mini"
|
|
:loading="crud.delAllLoading"
|
|
@click="confirmDelAll()"
|
|
>
|
|
{{ $t('ErrorLog.table.clear') }}
|
|
</el-button>
|
|
</crudOperation>
|
|
</div>
|
|
<!--表格渲染-->
|
|
<el-table ref="table" v-loading="crud.loading" :data="crud.data" style="width: 100%;" @selection-change="crud.selectionChangeHandler">
|
|
<el-table-column type="expand">
|
|
<template slot-scope="props">
|
|
<el-form label-position="left" inline class="demo-table-expand">
|
|
<el-form-item :label="$t('ErrorLog.table.method')">
|
|
<span>{{ props.row.method }}</span>
|
|
</el-form-item>
|
|
<el-form-item :label="$t('ErrorLog.table.params')">
|
|
<span>{{ props.row.params }}</span>
|
|
</el-form-item>
|
|
</el-form>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column prop="username" :label="$t('ErrorLog.table.username')" />
|
|
<el-table-column prop="request_ip" label="IP" />
|
|
<el-table-column show-overflow-tooltip prop="address" :label="$t('ErrorLog.table.address')" />
|
|
<el-table-column prop="description" :label="$t('ErrorLog.table.description')" show-overflow-tooltip />
|
|
<el-table-column prop="browser" :label="$t('ErrorLog.table.browser')" min-width="120" show-overflow-tooltip />
|
|
<el-table-column prop="time" :label="$t('ErrorLog.table.time')" align="center">
|
|
<template slot-scope="scope">
|
|
<el-tag v-if="scope.row.time <= 300">{{ scope.row.time }}ms</el-tag>
|
|
<el-tag v-else-if="scope.row.time <= 1000" type="warning">{{ scope.row.time }}ms</el-tag>
|
|
<el-tag v-else type="danger">{{ scope.row.time }}ms</el-tag>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column prop="create_time" :label="$t('ErrorLog.table.create_time')" width="180px">
|
|
<template slot-scope="scope">
|
|
<span>{{ parseTime(scope.row.create_time) }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
<!--分页组件-->
|
|
<pagination />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Search from './search'
|
|
import { delAllInfo } from '@/views/monitor/log/log'
|
|
import CRUD, { presenter } from '@crud/crud'
|
|
import crudOperation from '@crud/CRUD.operation'
|
|
import pagination from '@crud/Pagination'
|
|
import i18n from '@/i18n'
|
|
|
|
export default {
|
|
name: 'Log',
|
|
components: { Search, crudOperation, pagination },
|
|
cruds() {
|
|
return CRUD({ title: '日志', url: 'api/logs' })
|
|
},
|
|
mixins: [presenter()],
|
|
created() {
|
|
this.crud.optShow = {
|
|
add: false,
|
|
edit: false,
|
|
del: false,
|
|
download: false
|
|
}
|
|
},
|
|
methods: {
|
|
confirmDelAll() {
|
|
this.$confirm(i18n.t('ErrorLog.msg.m1'), i18n.t('common.Operate'), {
|
|
confirmButtonText: i18n.t('common.Confirm'),
|
|
cancelButtonText: i18n.t('common.Cancel'),
|
|
type: 'warning'
|
|
}).then(() => {
|
|
this.crud.delAllLoading = true
|
|
delAllInfo().then(res => {
|
|
this.crud.delAllLoading = false
|
|
this.crud.dleChangePage(1)
|
|
this.crud.delSuccessNotify()
|
|
this.crud.toQuery()
|
|
}).catch(err => {
|
|
this.crud.delAllLoading = false
|
|
console.log(err.response.data.message)
|
|
})
|
|
}).catch(() => {
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.demo-table-expand {
|
|
font-size: 0;
|
|
}
|
|
.demo-table-expand label {
|
|
width: 70px;
|
|
color: #99a9bf;
|
|
}
|
|
.demo-table-expand .el-form-item {
|
|
margin-right: 0;
|
|
margin-bottom: 0;
|
|
width: 100%;
|
|
}
|
|
.demo-table-expand .el-form-item__content {
|
|
font-size: 12px;
|
|
}
|
|
</style>
|