This commit is contained in:
Double-_-Z 2024-11-18 16:00:02 +08:00
commit ad4346372f
6 changed files with 231 additions and 0 deletions

24
src/api/log/index.ts Normal file
View File

@ -0,0 +1,24 @@
import request from '/@/utils/request';
import { baseUrlHost } from '../baseUrlHost';
/**
* request.post(xxx) post params data
* get请求时paramsdata
*
* api接口集合
* @method getlogList
*/
export function logApi() {
return {
getlogList: (params: object) => {
// console.log(1111111111111111);
return request({
url: baseUrlHost + '/acLog',
method: 'get',
params,
});
},
};
}

View File

@ -13,6 +13,7 @@ export default {
articleDetail: 'articleDetail', articleDetail: 'articleDetail',
addArticle: 'addArticle', addArticle: 'addArticle',
editArticle: 'editArticle', editArticle: 'editArticle',
log:'log',
limits: 'limits', limits: 'limits',
limitsFrontEnd: 'FrontEnd', limitsFrontEnd: 'FrontEnd',
limitsFrontEndPage: 'FrontEndPage', limitsFrontEndPage: 'FrontEndPage',

View File

@ -13,6 +13,7 @@ export default {
articleDetail: '文章详情', articleDetail: '文章详情',
addArticle: '新增文章', addArticle: '新增文章',
editArticle: '编辑文章', editArticle: '编辑文章',
log:'系统日志',
limits: '权限管理', limits: '权限管理',
limitsFrontEnd: '前端控制', limitsFrontEnd: '前端控制',
limitsFrontEndPage: '页面权限', limitsFrontEndPage: '页面权限',

View File

@ -13,6 +13,7 @@ export default {
articleDetail: '文章詳情', articleDetail: '文章詳情',
addArticle: '文章新增', addArticle: '文章新增',
editArticle: '文章編輯', editArticle: '文章編輯',
log:'系統日誌',
limits: '許可權管理', limits: '許可權管理',
limitsFrontEnd: '前端控制', limitsFrontEnd: '前端控制',
limitsFrontEndPage: '頁面許可權', limitsFrontEndPage: '頁面許可權',

View File

@ -232,6 +232,21 @@ export const dynamicRoutes: Array<RouteRecordRaw> = [
icon: 'iconfont icon-fuwenbenkuang', icon: 'iconfont icon-fuwenbenkuang',
}, },
}, },
{
path: '/log',
name: 'log',
component: () => import('/@/views/log/index.vue'),
meta: {
title: 'message.router.log',
isLink: '',
isHide: false,
isKeepAlive: true,
isAffix: false,
isIframe: false,
roles: ['admin', 'common'],
icon: 'fa fa-wpforms',
},
},
{ {
path: '/limits', path: '/limits',
name: 'limits', name: 'limits',

189
src/views/log/index.vue Normal file
View File

@ -0,0 +1,189 @@
<template>
<div class="system-dept-container layout-padding">
<el-card shadow="hover" class="layout-padding-auto">
<el-table :data="state.tableData.data" v-loading="state.tableData.loading" style="width: 100%" :header-cell-style="{ backgroundColor: '#fafafa', height: '40px' }">
<el-table-column prop="username" label="账号" width="100"/>
<el-table-column prop="usergroupName" label="操作人角色" show-overflow-tooltip></el-table-column>
<el-table-column prop="action" label="操作对应方法" show-overflow-tooltip></el-table-column>
<el-table-column prop="description" label="操作描述" show-overflow-tooltip></el-table-column>
<el-table-column prop="acresult" label="操作结果" :formatter="typeFormatter" show-overflow-tooltip></el-table-column>
<el-table-column prop="createtime" label="创建时间" :formatter="dateFormatter" show-overflow-tooltip></el-table-column>
</el-table>
<el-pagination
@size-change="onHandleSizeChange"
@current-change="onHandleCurrentChange"
class="mt15"
:pager-count="5"
:page-sizes="[10, 20, 30]"
v-model:current-page="state.tableData.param.current"
background
v-model:page-size="state.tableData.param.size"
layout="total, sizes, prev, pager, next, jumper"
:total="state.tableData.total"
>
</el-pagination>
</el-card>
<!-- <DeptDialog ref="deptDialogRef" @refresh="getTableData()" /> -->
</div>
</template>
<script setup lang="ts" name="logIndex">
import { onMounted, reactive, ref } from 'vue';
import { logApi } from '/@/api/log';
import { ElMessage, ElMessageBox, TableColumnCtx } from 'element-plus';
import { useRouter } from 'vue-router';
const router = useRouter();
//
const state = reactive({
tableData: {
data: [],
total: 0,
loading: false,
param: {
current: 1,
size: 10,
},
},
});
// //
// const moduleList = ref([]);
// //
// const labelList = ref([]);
// api
const syslogApi = logApi();
//
const getTableData = async() => {
try {
state.tableData.loading = true;
console.log(111111111111111);
let res = await syslogApi.getlogList(state.tableData.param);
if(res?.success){
state.tableData.data = res.data.records;
state.tableData.total = res.data.total;
}else{
ElMessage.error('文章列表获取失败!');
}
} catch (error) {
} finally {
state.tableData.loading = false;
}
};
// //
// const handleChangeModule = async(val: any) => {
// try {
// state.tableData.param.labelName = '';
// if(!val){labelList.value=[]; return;}
// const op:any = event?.currentTarget;
// let res = await artApi.getLabelList(op.dataset.op);
// if(res?.success){
// labelList.value = res.data;
// }else{
// ElMessage.error('');
// }
// } catch (error) {
// ElMessage.error('');
// } finally {
// }
// }
// //
// const reset = () =>{
// state.tableData.param = {
// labelName: '',
// moduleName: '',
// title: '',
// current: 1,
// size: 10,
// }
// getTableData();
// }
// //
// const toAddArticle = () => {
// router.push({ path: '/article/add' });
// }
// //
// const toEditArticle = (row: any) => {
// router.push({ path: '/article/edit', query: { id:row.id, moduleName: row.moduleName, labelName: row.labelName } });
// }
// //
// const toShowDetail = (row: any) => {
// router.push({ path: '/article/detail' , query: { id:row.id, moduleName: row.moduleName, labelName: row.labelName } });
// }
// //
// const deleteArticle = (id: number) => {
// ElMessageBox.confirm('?', '', {
// confirmButtonText: '',
// cancelButtonText: '',
// type: 'warning',
// })
// .then(async() => {
// try {
// state.tableData.loading = true;
// let res = await artApi.deleteArticle(id);
// if(res?.success){
// await getTableData();
// ElMessage.success('');
// } else ElMessage.error('');
// } catch(e) {
// ElMessage.error('');
// } finally {
// state.tableData.loading = false;
// }
// })
// }
//
const dateFormatter = (row: any, column: TableColumnCtx<String>) => {
let date = new Date(row.createtime);
return `${date.getFullYear()}-${date.getMonth() + 1}-${date.getDate()}`;
}
// //
// const typeFormatter = (row: any, column: TableColumnCtx<String>) => {
// return row.articletype === 1 ? '' : '';
// }
//
const onHandleSizeChange = (val: number) => {
state.tableData.param.size = val;
getTableData();
};
//
const onHandleCurrentChange = (val: number) => {
state.tableData.param.current = val;
getTableData();
};
onMounted(() => {
getTableData();
})
</script>
<style scoped lang="scss">
.system-dept-container {
:deep(.el-card__body) {
display: flex;
flex-direction: column;
flex: 1;
overflow: auto;
.el-table {
flex: 1;
}
}
}
</style>