80 lines
2.7 KiB
Vue
80 lines
2.7 KiB
Vue
<script lang="ts" setup>
|
|
import { ref } from "vue";
|
|
import { useRole } from "@/hooks/monitor/useRole";
|
|
import { PureTableBar } from "@/components/TableBar";
|
|
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
|
|
|
import Plane from "@iconify-icons/ri/plane-line";
|
|
import Refresh from "@iconify-icons/ep/refresh";
|
|
|
|
defineOptions({
|
|
name: "OnlineUser"
|
|
});
|
|
|
|
const formRef = ref();
|
|
const { form, loading, columns, dataList, pagination, onSearch, resetForm, handleOffline, handleSizeChange, handleCurrentChange, handleSelectionChange } = useRole();
|
|
</script>
|
|
|
|
<template>
|
|
<div class="main">
|
|
<el-form ref="formRef" :inline="true" :model="form" class="search-form bg-bg_color w-[99/100] pl-8 pt-[12px] overflow-auto">
|
|
<el-form-item label="用户名" prop="username">
|
|
<el-input v-model="form.username" class="!w-[180px]" clearable placeholder="请输入用户名" />
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button :icon="useRenderIcon('ri:search-line')" :loading="loading" type="primary" @click="onSearch"> 搜索 </el-button>
|
|
<el-button :icon="useRenderIcon(Refresh)" @click="resetForm(formRef)"> 重置</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
|
|
<PureTableBar :columns="columns" title="在线用户(仅演示,操作后不生效)" @refresh="onSearch">
|
|
<template v-slot="{ size, dynamicColumns }">
|
|
<pure-table
|
|
:adaptiveConfig="{ offsetBottom: 108 }"
|
|
:columns="dynamicColumns"
|
|
:data="dataList"
|
|
:header-cell-style="{
|
|
background: 'var(--el-fill-color-light)',
|
|
color: 'var(--el-text-color-primary)'
|
|
}"
|
|
:loading="loading"
|
|
:pagination="pagination"
|
|
:paginationSmall="size === 'small'"
|
|
:size="size"
|
|
adaptive
|
|
align-whole="center"
|
|
showOverflowTooltip
|
|
table-layout="auto"
|
|
@selection-change="handleSelectionChange"
|
|
@page-size-change="handleSizeChange"
|
|
@page-current-change="handleCurrentChange"
|
|
>
|
|
<template #operation="{ row }">
|
|
<el-popconfirm :title="`是否强制下线${row.username}`" @confirm="handleOffline(row)">
|
|
<template #reference>
|
|
<el-button :icon="useRenderIcon(Plane)" :size="size" class="reset-margin" link type="primary"> 强退 </el-button>
|
|
</template>
|
|
</el-popconfirm>
|
|
</template>
|
|
</pure-table>
|
|
</template>
|
|
</PureTableBar>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
:deep(.el-dropdown-menu__item i) {
|
|
margin: 0;
|
|
}
|
|
|
|
.main-content {
|
|
margin: 24px 24px 0 !important;
|
|
}
|
|
|
|
.search-form {
|
|
:deep(.el-form-item) {
|
|
margin-bottom: 12px;
|
|
}
|
|
}
|
|
</style>
|