Blame view

ant-design-vue-jeecg/src/views/system/SysUserOnlineList.vue 5.11 KB
肖超群 authored
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">
8
9
            <a-form-item :label="$t('system.userAccount')">
              <a-input :placeholder="$t('system.fuzzyAccountSearch')" v-model="queryParam.username"></a-input>
肖超群 authored
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">
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>
肖超群 authored
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;">
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>
肖超群 authored
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">
45
        <template slot="avatarslot" slot-scope="text, record">
肖超群 authored
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">
52
53
          <a-popconfirm :title="$t('monitor.forceLogoutOfUsers')" @confirm="() => handleForce(record)">
            <a-button type="danger">{{ $t('monitor.forceSbToQuit') }}</a-button>
肖超群 authored
54
55
56
57
58
59
60
61
62
63
64
          </a-popconfirm>
        </span>

      </a-table>
    </div>

  </a-card>
</template>

<script>
肖超群 authored
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'
70
import { translateResultMessage } from '@/api/api'
肖超群 authored
71
72
import {getFileAccessHttpUrl} from '@/api/manage';
import {ACCESS_TOKEN} from '@/store/mutation-types'
肖超群 authored
73
肖超群 authored
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: [
        {
88
          title: this.$t('system.userAccount'),
肖超群 authored
89
90
91
92
93
          align: "center",
          dataIndex: 'username',
          customRender: (text, record) => {
            if (record.token === currentToken) {
              return text + '(我)'
肖超群 authored
94
            }
肖超群 authored
95
96
97
            return text
          },
        }, {
98
          title: this.$t('system.userName'),
肖超群 authored
99
100
101
          align: "center",
          dataIndex: 'realname'
        }, {
102
          title: this.$t('system.avatar'),
肖超群 authored
103
104
105
106
107
          align: "center",
          width: 120,
          dataIndex: 'avatar',
          scopedSlots: {customRender: "avatarslot"}
        }, {
108
          title:  this.$t('monitor.birthdays'),
肖超群 authored
109
110
111
          align: "center",
          dataIndex: 'birthday'
        }, {
112
          title: this.$t('system.sex'),
肖超群 authored
113
114
115
116
117
          align: "center",
          dataIndex: 'sex',
          customRender: (text) => {
            //字典值翻译通用方法
            return filterDictTextByCache('sex', text);
肖超群 authored
118
          }
肖超群 authored
119
        }, {
120
          title:  this.$t('system.mobileNumber'),
肖超群 authored
121
122
123
          align: "center",
          dataIndex: 'phone'
        }, {
124
          title: this.$t('system.options'),
肖超群 authored
125
126
127
128
129
130
131
132
          dataIndex: 'action',
          scopedSlots: {customRender: 'action'},
          align: "center",
          width: 170
        }
      ],
      url: {
        list: "/sys/online/list"
肖超群 authored
133
      },
肖超群 authored
134
135
136
137
138
139
140
141
      dictOptions: {},
    }
  },
  created() {
  },
  computed: {
    importExcelUrl: function () {
      return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
肖超群 authored
142
    },
肖超群 authored
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
肖超群 authored
152
      }
肖超群 authored
153
154
155
      return forceLogout(forceParam).then((res) => {
        if (res.success) {
          that.loadData();
156
          this.$message.success(this.$t('monitor.forceLogoutOfUser')+' '+ record.realname +' '+ this.$t('monitor.successes')+'!');
肖超群 authored
157
        } else {
158
          that.$message.warning(translateResultMessage(res, res.message))
肖超群 authored
159
160
        }
      })
肖超群 authored
161
162
    }
  }
肖超群 authored
163
}
肖超群 authored
164
165
</script>
<style scoped>
肖超群 authored
166
@import '~@assets/less/common.less';
肖超群 authored
167
</style>