|
|
@@ -100,7 +100,7 @@
|
|
|
|
|
|
<el-table ref="tables" v-loading="loading" :data="list" @selection-change="handleSelectionChange" :default-sort="defaultSort" @sort-change="handleSortChange">
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="访问编号" align="center" prop="infoId" />
|
|
|
+ <el-table-column label="访问编号" width="80" align="center" prop="infoId" />
|
|
|
<el-table-column label="用户名称" align="center" prop="userName" :show-overflow-tooltip="true" sortable="custom" :sort-orders="['descending', 'ascending']" />
|
|
|
<el-table-column label="地址" align="center" prop="ipaddr" width="130" :show-overflow-tooltip="true" />
|
|
|
<el-table-column label="登录状态" align="center" prop="status">
|
|
|
@@ -108,12 +108,13 @@
|
|
|
<dict-tag :options="dict.type.sys_common_status" :value="scope.row.status"/>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="描述" align="center" prop="msg" :show-overflow-tooltip="true" />
|
|
|
- <el-table-column label="访问时间" align="center" prop="accessTime" sortable="custom" :sort-orders="['descending', 'ascending']" width="180">
|
|
|
+ <el-table-column prop="platformType" label="平台类型" :show-overflow-tooltip="true" width="160">
|
|
|
<template slot-scope="scope">
|
|
|
- <span>{{ parseTime(scope.row.accessTime) }}</span>
|
|
|
+ <dict-tag :options="dict.type.sys_platform_type" :value="scope.row.platformType"/>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="访问时间" align="center" prop="accessTime" width="180"/>
|
|
|
+ <el-table-column label="描述" align="center" prop="msg" :show-overflow-tooltip="true" />
|
|
|
</el-table>
|
|
|
|
|
|
<pagination
|
|
|
@@ -131,7 +132,7 @@ import { list, delLogininfor, cleanLogininfor, unlockLogininfor } from "@/api/sy
|
|
|
|
|
|
export default {
|
|
|
name: "Logininfor",
|
|
|
- dicts: ['sys_common_status'],
|
|
|
+ dicts: ['sys_common_status','sys_platform_type'],
|
|
|
data() {
|
|
|
return {
|
|
|
// 遮罩层
|