Commit 436a2451 authored by Asjoker's avatar Asjoker

日志修改 和 彻底干掉zt

parent 059591b3
......@@ -12,7 +12,7 @@ export function list(query) {
// 删除登录日志
export function delLogininfo(infoId) {
return request({
url: '/authority/monitor/logininfo/' + infoId,
url: '/monitor/loginInfo/' + infoId,
method: 'delete'
})
}
......@@ -20,7 +20,7 @@ export function delLogininfo(infoId) {
// 清空登录日志
export function cleanLogininfo() {
return request({
url: '/authority/monitor/logininfo/clean',
url: '/monitor/loginInfo/clean',
method: 'delete'
})
}
......@@ -28,7 +28,7 @@ export function cleanLogininfo() {
// 导出登录日志
export function exportLogininfo(query) {
return request({
url: '/authority/monitor/logininfo/export',
url: '/monitor/loginInfo/export',
method: 'get',
params: query
})
......
......@@ -96,9 +96,9 @@
<div class="mb12 font-small-bold">操作日志列表</div>
<el-table v-loading="loading" border :data="list" @selection-change="handleSelectionChange">
<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">
{{ scope.row.businessId || '-' }}
{{ scope.row.operId || '-' }}
</template>
</el-table-column>
<el-table-column :show-overflow-tooltip="true" label="系统模块" align="center" prop="systemMode">
......@@ -111,9 +111,9 @@
{{ scope.row.optionName || '-' }}
</template>
</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">
{{ scope.row.operUrl || '-' }}
{{ scope.row.operLocation || '-' }}
</template>
</el-table-column>
<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