Commit 436a2451 authored by Asjoker's avatar Asjoker

日志修改 和 彻底干掉zt

parent 059591b3
...@@ -12,7 +12,7 @@ export function list(query) { ...@@ -12,7 +12,7 @@ export function list(query) {
// 删除登录日志 // 删除登录日志
export function delLogininfo(infoId) { export function delLogininfo(infoId) {
return request({ return request({
url: '/authority/monitor/logininfo/' + infoId, url: '/monitor/loginInfo/' + infoId,
method: 'delete' method: 'delete'
}) })
} }
...@@ -20,7 +20,7 @@ export function delLogininfo(infoId) { ...@@ -20,7 +20,7 @@ export function delLogininfo(infoId) {
// 清空登录日志 // 清空登录日志
export function cleanLogininfo() { export function cleanLogininfo() {
return request({ return request({
url: '/authority/monitor/logininfo/clean', url: '/monitor/loginInfo/clean',
method: 'delete' method: 'delete'
}) })
} }
...@@ -28,7 +28,7 @@ export function cleanLogininfo() { ...@@ -28,7 +28,7 @@ export function cleanLogininfo() {
// 导出登录日志 // 导出登录日志
export function exportLogininfo(query) { export function exportLogininfo(query) {
return request({ return request({
url: '/authority/monitor/logininfo/export', url: '/monitor/loginInfo/export',
method: 'get', method: 'get',
params: query params: query
}) })
......
...@@ -96,9 +96,9 @@ ...@@ -96,9 +96,9 @@
<div class="mb12 font-small-bold">操作日志列表</div> <div class="mb12 font-small-bold">操作日志列表</div>
<el-table v-loading="loading" border :data="list" @selection-change="handleSelectionChange"> <el-table v-loading="loading" border :data="list" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" /> <el-table-column type="selection" width="55" align="center" />
<el-table-column :show-overflow-tooltip="true" label="日志编号" width="100" align="center" prop="businessId"> <el-table-column :show-overflow-tooltip="true" label="日志编号" width="100" align="center" prop="operId">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.businessId || '-' }} {{ scope.row.operId || '-' }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column :show-overflow-tooltip="true" label="系统模块" align="center" prop="systemMode"> <el-table-column :show-overflow-tooltip="true" label="系统模块" align="center" prop="systemMode">
...@@ -111,9 +111,9 @@ ...@@ -111,9 +111,9 @@
{{ scope.row.optionName || '-' }} {{ scope.row.optionName || '-' }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="请求地址" align="center" :show-overflow-tooltip="true" prop="operUrl"> <el-table-column label="请求地址" align="center" :show-overflow-tooltip="true" prop="operLocation">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.operUrl || '-' }} {{ scope.row.operLocation || '-' }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column :show-overflow-tooltip="true" label="请求方式" align="center" prop="requestMethod"> <el-table-column :show-overflow-tooltip="true" label="请求方式" align="center" prop="requestMethod">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment