1
2
3
4
5
6
7
<template>
<a-card :bordered="false">
<!-- 查询区域 -->
<div class="table-page-search-wrapper">
<a-form layout="inline" @keyup.enter.native="searchQuery">
<a-row :gutter="24">
<a-col :md="6" :sm="12">
周鸿
authored
about a year ago
8
9
<a-form-item :label="$t('system.userAccount')">
<a-input :placeholder="$t('system.fuzzyAccountSearch')" v-model="queryParam.username"></a-input>
10
11
12
13
</a-form-item>
</a-col>
<a-col :md="6" :sm="8">
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
谭毅彬
authored
about a year ago
14
15
<a-button type="primary" @click="searchQuery" icon="search">{{ $t('button.search') }}</a-button>
<a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">{{ $t('button.reset') }}</a-button>
16
17
18
19
20
21
22
23
24
25
</span>
</a-col>
</a-row>
</a-form>
</div>
<!-- 查询区域-END -->
<!-- table区域-begin -->
<div>
<div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
谭毅彬
authored
about a year ago
26
27
28
<i class="anticon anticon-info-circle ant-alert-icon"></i> {{ $t('button.selected') }}
<a style="font-weight: 600">{{ selectedRowKeys.length }}</a> {{ $t('button.item') }}
<a style="margin-left: 24px" @click="onClearSelected">{{ $t('button.clearAll') }}</a>
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
</div>
<a-table
ref="table"
size="middle"
:scroll="{x:true}"
bordered
rowKey="token"
:columns="columns"
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
class="j-table-force-nowrap"
@change="handleTableChange">
谭毅彬
authored
about a year ago
45
<template slot="avatarslot" slot-scope="text, record">
46
47
48
49
50
51
<div class="anty-img-wrap">
<a-avatar shape="square" :src="getAvatarView(record.avatar)" icon="user"/>
</div>
</template>
<span slot="action" slot-scope="text, record">
周鸿
authored
about a year ago
52
53
<a-popconfirm :title="$t('monitor.forceLogoutOfUsers')" @confirm="() => handleForce(record)">
<a-button type="danger">{{ $t('monitor.forceSbToQuit') }}</a-button>
54
55
56
57
58
59
60
61
62
63
64
</a-popconfirm>
</span>
</a-table>
</div>
</a-card>
</template>
<script>
65
66
67
68
69
import '@/assets/less/TableExpand.less'
import {mixinDevice} from '@/utils/mixin'
import {JeecgListMixin} from '@/mixins/JeecgListMixin'
import {forceLogout} from '@/api/login'
import {filterDictTextByCache} from '@/components/dict/JDictSelectUtil'
谭毅彬
authored
about a year ago
70
import { translateResultMessage } from '@/api/api'
71
72
import {getFileAccessHttpUrl} from '@/api/manage';
import {ACCESS_TOKEN} from '@/store/mutation-types'
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
export default {
name: "SysUserOnlineList",
mixins: [JeecgListMixin, mixinDevice],
components: {},
data() {
let currentToken = this.$ls.get(ACCESS_TOKEN)
return {
description: '在线用户管理页面',
queryParam: {
username: ''
},
// 表头
columns: [
{
周鸿
authored
about a year ago
88
title: this.$t('system.userAccount'),
89
90
91
92
93
align: "center",
dataIndex: 'username',
customRender: (text, record) => {
if (record.token === currentToken) {
return text + '(我)'
94
}
95
96
97
return text
},
}, {
周鸿
authored
about a year ago
98
title: this.$t('system.userName'),
99
100
101
align: "center",
dataIndex: 'realname'
}, {
周鸿
authored
about a year ago
102
title: this.$t('system.avatar'),
103
104
105
106
107
align: "center",
width: 120,
dataIndex: 'avatar',
scopedSlots: {customRender: "avatarslot"}
}, {
周鸿
authored
about a year ago
108
title: this.$t('monitor.birthdays'),
109
110
111
align: "center",
dataIndex: 'birthday'
}, {
周鸿
authored
about a year ago
112
title: this.$t('system.sex'),
113
114
115
116
117
align: "center",
dataIndex: 'sex',
customRender: (text) => {
//字典值翻译通用方法
return filterDictTextByCache('sex', text);
118
}
119
}, {
周鸿
authored
about a year ago
120
title: this.$t('system.mobileNumber'),
121
122
123
align: "center",
dataIndex: 'phone'
}, {
谭毅彬
authored
about a year ago
124
title: this.$t('system.options'),
125
126
127
128
129
130
131
132
dataIndex: 'action',
scopedSlots: {customRender: 'action'},
align: "center",
width: 170
}
],
url: {
list: "/sys/online/list"
133
},
134
135
136
137
138
139
140
141
dictOptions: {},
}
},
created() {
},
computed: {
importExcelUrl: function () {
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
142
},
143
144
145
146
147
148
149
150
151
},
methods: {
getAvatarView: function (avatar) {
return getFileAccessHttpUrl(avatar)
},
handleForce(record) {
let that = this;
let forceParam = {
token: record.token
152
}
153
154
155
return forceLogout(forceParam).then((res) => {
if (res.success) {
that.loadData();
周鸿
authored
about a year ago
156
this.$message.success(this.$t('monitor.forceLogoutOfUser')+' '+ record.realname +' '+ this.$t('monitor.successes')+'!');
157
} else {
谭毅彬
authored
about a year ago
158
that.$message.warning(translateResultMessage(res, res.message))
159
160
}
})
161
162
}
}
163
}
164
165
</script>
<style scoped>
166
@import '~@assets/less/common.less';
167
</style>