126 lines
3.1 KiB
Vue
126 lines
3.1 KiB
Vue
|
<script setup lang="ts">
|
||
|
import { ref } from "vue";
|
||
|
import { useRole } from "./hook";
|
||
|
import { PureTableBar } from "@/components/RePureTableBar";
|
||
|
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"
|
||
|
placeholder="请输入用户名"
|
||
|
clearable
|
||
|
class="!w-[180px]"
|
||
|
/>
|
||
|
</el-form-item>
|
||
|
<el-form-item>
|
||
|
<el-button
|
||
|
type="primary"
|
||
|
:icon="useRenderIcon('ri:search-line')"
|
||
|
:loading="loading"
|
||
|
@click="onSearch"
|
||
|
>
|
||
|
搜索
|
||
|
</el-button>
|
||
|
<el-button :icon="useRenderIcon(Refresh)" @click="resetForm(formRef)">
|
||
|
重置
|
||
|
</el-button>
|
||
|
</el-form-item>
|
||
|
</el-form>
|
||
|
|
||
|
<PureTableBar
|
||
|
title="在线用户(仅演示,操作后不生效)"
|
||
|
:columns="columns"
|
||
|
@refresh="onSearch"
|
||
|
>
|
||
|
<template v-slot="{ size, dynamicColumns }">
|
||
|
<pure-table
|
||
|
align-whole="center"
|
||
|
showOverflowTooltip
|
||
|
table-layout="auto"
|
||
|
:loading="loading"
|
||
|
:size="size"
|
||
|
adaptive
|
||
|
:adaptiveConfig="{ offsetBottom: 108 }"
|
||
|
:data="dataList"
|
||
|
:columns="dynamicColumns"
|
||
|
:pagination="pagination"
|
||
|
:paginationSmall="size === 'small' ? true : false"
|
||
|
:header-cell-style="{
|
||
|
background: 'var(--el-fill-color-light)',
|
||
|
color: 'var(--el-text-color-primary)'
|
||
|
}"
|
||
|
@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
|
||
|
class="reset-margin"
|
||
|
link
|
||
|
type="primary"
|
||
|
:size="size"
|
||
|
:icon="useRenderIcon(Plane)"
|
||
|
>
|
||
|
强退
|
||
|
</el-button>
|
||
|
</template>
|
||
|
</el-popconfirm>
|
||
|
</template>
|
||
|
</pure-table>
|
||
|
</template>
|
||
|
</PureTableBar>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
: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>
|