日志增加按钮权限控制

This commit is contained in:
jacky 2024-04-21 14:25:52 +08:00
parent 7d9cf078fc
commit bd8ee9811f
1 changed files with 50 additions and 127 deletions

View File

@ -1,125 +1,59 @@
<template> <template>
<div> <div>
<div class="gva-search-box"> <div class="gva-search-box">
<el-form <el-form :inline="true" :model="searchInfo">
:inline="true"
:model="searchInfo"
>
<el-form-item label="请求方法"> <el-form-item label="请求方法">
<el-input <el-input v-model="searchInfo.method" placeholder="搜索条件" />
v-model="searchInfo.method"
placeholder="搜索条件"
/>
</el-form-item> </el-form-item>
<el-form-item label="请求路径"> <el-form-item label="请求路径">
<el-input <el-input v-model="searchInfo.path" placeholder="搜索条件" />
v-model="searchInfo.path"
placeholder="搜索条件"
/>
</el-form-item> </el-form-item>
<el-form-item label="结果状态码"> <el-form-item label="结果状态码">
<el-input <el-input v-model="searchInfo.status" placeholder="搜索条件" />
v-model="searchInfo.status"
placeholder="搜索条件"
/>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button <el-button type="primary" icon="search" @click="onSubmit">查询</el-button>
type="primary" <el-button icon="refresh" @click="onReset">重置</el-button>
icon="search"
@click="onSubmit"
>查询</el-button>
<el-button
icon="refresh"
@click="onReset"
>重置</el-button>
</el-form-item> </el-form-item>
</el-form> </el-form>
</div> </div>
<div class="gva-table-box"> <div class="gva-table-box">
<div class="gva-btn-list"> <div class="gva-btn-list">
<el-button <el-button v-auth="btnAuth.delete" icon="delete" :disabled="!multipleSelection.length"
icon="delete" @click="onDelete">删除</el-button>
:disabled="!multipleSelection.length"
@click="onDelete"
>删除</el-button>
</div> </div>
<el-table <el-table ref="multipleTable" :data="tableData" style="width: 100%" tooltip-effect="dark" row-key="ID"
ref="multipleTable" @selection-change="handleSelectionChange">
:data="tableData" <el-table-column align="left" type="selection" width="55" />
style="width: 100%" <el-table-column align="left" label="操作人" min-width="200">
tooltip-effect="dark"
row-key="ID"
@selection-change="handleSelectionChange"
>
<el-table-column
align="left"
type="selection"
width="55"
/>
<el-table-column
align="left"
label="操作人"
width="140"
>
<template #default="scope"> <template #default="scope">
<div>{{ scope.row.user.userName }}({{ scope.row.user.nickName }})</div> <div>{{ scope.row.user.userName }}({{ scope.row.user.nickName }})</div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column align="left" label="时间" min-width="180">
align="left"
label="日期"
width="180"
>
<template #default="scope">{{ formatDate(scope.row.CreatedAt) }}</template> <template #default="scope">{{ formatDate(scope.row.CreatedAt) }}</template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column align="left" label="状态码" prop="status" min-width="80">
align="left"
label="状态码"
prop="status"
width="120"
>
<template #default="scope"> <template #default="scope">
<div> <div>
<el-tag type="success">{{ scope.row.status }}</el-tag> <el-tag type="success">{{ scope.row.status }}</el-tag>
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column align="left" label="请求IP" prop="ip" min-width="160" />
align="left" <el-table-column align="left" label="请求方法" prop="method" min-width="100" />
label="请求IP" <el-table-column align="left" label="请求路径" prop="path" min-width="300" />
prop="ip" <el-table-column align="left" label="请求" prop="path" min-width="80">
width="120"
/>
<el-table-column
align="left"
label="请求方法"
prop="method"
width="120"
/>
<el-table-column
align="left"
label="请求路径"
prop="path"
width="240"
/>
<el-table-column
align="left"
label="请求"
prop="path"
width="80"
>
<template #default="scope"> <template #default="scope">
<div> <div>
<el-popover <el-popover v-if="scope.row.body" placement="left-start">
v-if="scope.row.body"
placement="left-start"
>
<div class="popover-box"> <div class="popover-box">
<pre>{{ fmtBody(scope.row.body) }}</pre> <pre>{{ fmtBody(scope.row.body) }}</pre>
</div> </div>
<template #reference> <template #reference>
<el-icon style="cursor: pointer;"><warning /></el-icon> <el-icon style="cursor: pointer;">
<warning />
</el-icon>
</template> </template>
</el-popover> </el-popover>
@ -127,53 +61,34 @@
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column align="left" label="响应" prop="path" width="80">
align="left"
label="响应"
prop="path"
width="80"
>
<template #default="scope"> <template #default="scope">
<div> <div>
<el-popover <el-popover v-if="scope.row.resp" placement="left-start">
v-if="scope.row.resp"
placement="left-start"
>
<div class="popover-box"> <div class="popover-box">
<pre>{{ fmtBody(scope.row.resp) }}</pre> <pre>{{ fmtBody(scope.row.resp) }}</pre>
</div> </div>
<template #reference> <template #reference>
<el-icon style="cursor: pointer;"><warning /></el-icon> <el-icon style="cursor: pointer;">
<warning />
</el-icon>
</template> </template>
</el-popover> </el-popover>
<span v-else></span> <span v-else></span>
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column align="left" label="操作">
align="left"
label="操作"
>
<template #default="scope"> <template #default="scope">
<el-button <el-button v-auth="btnAuth.delete" icon="delete" type="primary" link
icon="delete" @click="deleteSysOperationRecordFunc(scope.row)">删除</el-button>
type="primary"
link
@click="deleteSysOperationRecordFunc(scope.row)"
>删除</el-button>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<div class="gva-pagination"> <div class="gva-pagination">
<el-pagination <el-pagination :current-page="page" :page-size="pageSize" :page-sizes="[10, 30, 50, 100]" :total="total"
:current-page="page" layout="total, sizes, prev, pager, next, jumper" @current-change="handleCurrentChange"
:page-size="pageSize" @size-change="handleSizeChange" />
:page-sizes="[10, 30, 50, 100]"
:total="total"
layout="total, sizes, prev, pager, next, jumper"
@current-change="handleCurrentChange"
@size-change="handleSizeChange"
/>
</div> </div>
</div> </div>
</div> </div>
@ -188,6 +103,9 @@ import {
import { formatDate } from '@/utils/format' import { formatDate } from '@/utils/format'
import { ref } from 'vue' import { ref } from 'vue'
import { ElMessage, ElMessageBox } from 'element-plus' import { ElMessage, ElMessageBox } from 'element-plus'
import { useBtnAuth } from '@/utils/btnAuth'
const btnAuth = useBtnAuth()
defineOptions({ defineOptions({
name: 'SysOperationRecord' name: 'SysOperationRecord'
@ -300,9 +218,11 @@ const fmtBody = (value) => {
.table-expand { .table-expand {
padding-left: 60px; padding-left: 60px;
font-size: 0; font-size: 0;
label { label {
width: 90px; width: 90px;
color: #99a9bf; color: #99a9bf;
.el-form-item { .el-form-item {
margin-right: 0; margin-right: 0;
margin-bottom: 0; margin-bottom: 0;
@ -310,6 +230,7 @@ const fmtBody = (value) => {
} }
} }
} }
.popover-box { .popover-box {
background: #112435; background: #112435;
color: #f08047; color: #f08047;
@ -317,7 +238,9 @@ const fmtBody = (value) => {
width: 420px; width: 420px;
overflow: auto; overflow: auto;
} }
.popover-box::-webkit-scrollbar { .popover-box::-webkit-scrollbar {
display: none; /* Chrome Safari */ display: none;
/* Chrome Safari */
} }
</style> </style>