登录日志

This commit is contained in:
yanran200730
2023-07-13 09:05:09 +08:00
parent 6b1c753d63
commit 046f0bf729

View File

@@ -27,25 +27,6 @@
:current.sync="search.current"
:size.sync="search.size"
@getList="getList">
<el-table-column slot="user" width="140px" label="创建人" align="center">
<template slot-scope="{ row }">
<div class="userinfo">
<span>{{ row.createUserName }}</span>
<span style="color: #999">{{ row.createUserDeptName }}</span>
</div>
</template>
</el-table-column>
<el-table-column slot="options" width="140px" fixed="right" label="操作" align="center">
<template slot-scope="{ row }">
<div class="table-options">
<el-button type="text" @click="remindExamine(row.id)" v-if="['0'].includes(row.status)">催办</el-button>
<el-button type="text" @click="close(row.id)" v-if="['4'].includes(row.status)">关闭</el-button>
<el-button type="text" @click="cancel(row.id)" v-if="['0'].includes(row.status)">撤回</el-button>
<el-button type="text" @click="toDetail(row.id)">详情</el-button>
<el-button type="text" @click="toAdd(row.id)" v-if="['1', '3'].includes(row.status)">编辑</el-button>
</div>
</template>
</el-table-column>
</ai-table>
</template>
</ai-list>
@@ -73,7 +54,7 @@
colConfigs: [
{ prop: 'userName', label: '姓名' },
{ prop: 'departFullName', label: '部门', align: 'center' },
{ slot: 'ip', label: 'IP', align: 'center' },
{ prop: 'ip', label: 'IP', align: 'center' },
{ prop: 'clientId', label: '客户端', align: 'center' },
{ prop: 'createTime', label: '登录时间', align: 'center' }
]