127 lines
4.3 KiB
Vue
127 lines
4.3 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<div class="head-container">
|
|
<div v-if="crud.props.searchToggle">
|
|
<el-input v-model="query.filter" clearable size="mini" placeholder="全表模糊搜索" style="width: 200px;" class="filter-item" @keyup.enter.native="crud.toQuery" />
|
|
<rrOperation />
|
|
</div>
|
|
<crudOperation>
|
|
<el-button
|
|
slot="left"
|
|
class="filter-item"
|
|
type="danger"
|
|
icon="el-icon-delete"
|
|
size="mini"
|
|
:loading="delLoading"
|
|
:disabled="crud.selections.length === 0"
|
|
@click="doDelete(crud.selections)"
|
|
>
|
|
{{ $t('Online.table.forced') }}
|
|
</el-button>
|
|
</crudOperation>
|
|
</div>
|
|
<!--表格渲染-->
|
|
<el-table ref="table" v-loading="crud.loading" :data="crud.data" style="width: 100%;" @selection-change="crud.selectionChangeHandler">
|
|
<el-table-column type="selection" width="55" />
|
|
<el-table-column prop="userName" :label="$t('Online.table.userName')" />
|
|
<el-table-column prop="nickName" :label="$t('Online.table.nickName')" />
|
|
<el-table-column prop="dept" :label="$t('Online.table.dept')" />
|
|
<el-table-column prop="ip" :label="$t('Online.table.ip')" />
|
|
<el-table-column show-overflow-tooltip prop="address" :label="$t('Online.table.address')" />
|
|
<el-table-column prop="browser" :label="$t('Online.table.browser')" width="145px" />
|
|
<el-table-column prop="loginTime" :label="$t('Online.table.loginTime')" min-width="110" show-overflow-tooltip>
|
|
<template slot-scope="scope">
|
|
<span>{{ parseTime(scope.row.loginTime) }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column :label="$t('common.Operate')" width="100px" fixed="right">
|
|
<template slot-scope="scope">
|
|
<el-popover
|
|
:ref="scope.$index"
|
|
v-permission="['admin']"
|
|
placement="top"
|
|
width="180px"
|
|
>
|
|
<p>{{ $t('Online.msg.m1') }}</p>
|
|
<div style="text-align: right; margin: 0">
|
|
<el-button size="mini" type="text" @click="$refs[scope.$index].doClose()">{{ $t('common.Cancel') }}</el-button>
|
|
<el-button :loading="delLoading" type="primary" size="mini" @click="delMethod(scope.row, scope.$index)">{{ $t('common.Confirm') }}</el-button>
|
|
</div>
|
|
<el-button slot="reference" size="mini" type="text">{{ $t('Online.table.forced') }}</el-button>
|
|
</el-popover>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
<!--分页组件-->
|
|
<pagination />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { del } from '@/api/monitor/online'
|
|
import CRUD, { presenter, header, crud } from '@crud/crud'
|
|
import rrOperation from '@crud/RR.operation'
|
|
import crudOperation from '@crud/CRUD.operation'
|
|
import pagination from '@crud/Pagination'
|
|
import i18n from "@/i18n";
|
|
|
|
export default {
|
|
name: 'OnlineUser',
|
|
components: { pagination, crudOperation, rrOperation },
|
|
cruds() {
|
|
return CRUD({ url: 'auth/online', title: i18n.t('Online.title') })
|
|
},
|
|
mixins: [presenter(), header(), crud()],
|
|
data() {
|
|
return {
|
|
delLoading: false,
|
|
permission: {}
|
|
}
|
|
},
|
|
created() {
|
|
this.crud.msg.del = i18n.t('Online.msg.m2')
|
|
this.crud.optShow = {
|
|
add: false,
|
|
edit: false,
|
|
del: false,
|
|
download: false
|
|
}
|
|
},
|
|
methods: {
|
|
doDelete(datas) {
|
|
this.$confirm(i18n.t('Online.m3_1') + `${datas.length}` + i18n.t('Online.m3_1'), i18n.t('common.Tips'), {
|
|
confirmButtonText: i18n.t('common.Confirm'),
|
|
cancelButtonText: i18n.t('common.Cancel'),
|
|
type: 'warning'
|
|
}).then(() => {
|
|
this.delMethod(datas)
|
|
}).catch(() => {})
|
|
},
|
|
// 踢出用户
|
|
delMethod(key, index) {
|
|
const ids = []
|
|
if (key instanceof Array) {
|
|
key.forEach(val => {
|
|
ids.push(val)
|
|
})
|
|
} else ids.push(key)
|
|
this.delLoading = true
|
|
del(ids).then(() => {
|
|
this.delLoading = false
|
|
if (this.$refs[index]) {
|
|
this.$refs[index].doClose()
|
|
}
|
|
this.crud.dleChangePage(1)
|
|
this.crud.delSuccessNotify()
|
|
this.crud.toQuery()
|
|
}).catch(() => {
|
|
this.delLoading = false
|
|
if (this.$refs[index]) {
|
|
this.$refs[index].doClose()
|
|
}
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|