mirror of
https://github.com/pure-admin/pure-admin-thin.git
synced 2025-04-24 23:47:17 +08:00
121 lines
2.9 KiB
Vue
121 lines
2.9 KiB
Vue
<script setup lang="ts">
|
|
import { ref } from "vue";
|
|
import { useRole, useDetail } 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 { toDetail } = useDetail();
|
|
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]"
|
|
>
|
|
<el-form-item label="表名" prop="tableName">
|
|
<el-input
|
|
v-model="form.tableName"
|
|
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-button
|
|
class="reset-margin"
|
|
link
|
|
type="primary"
|
|
:size="size"
|
|
:icon="useRenderIcon(Plane)"
|
|
@click="toDetail({ id: row.tableName }, 'query')"
|
|
>
|
|
预览
|
|
</el-button>
|
|
</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>
|