| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222 |
- <script setup lang="ts">
- import { reactive, onMounted, ref, nextTick } from "vue";
- import { getAdminUserList, removeAdminUser } from "@/api/admin";
- import { useRenderIcon } from "@/components/ReIcon/src/hooks";
- import { ExtDLabel, ExtDSelect } from "@/components/ExtForm";
- import { ElMessage, ElMessageBox } from "element-plus";
- import AccountDialog from "./dialog.vue";
- defineOptions({ name: "AdminAccount" });
- const queryRef = ref();
- const dialogRef = ref();
- interface ColumnItem {
- label: string;
- prop: string;
- width?: number;
- }
- const state = reactive({
- formQuery: {
- username: "",
- nickname: "",
- mobilePhone: "",
- status: ""
- },
- pageQuery: {
- pageNum: 1,
- pageSize: 10,
- total: 0
- },
- tableData: {
- height: 500,
- data: [] as Array<any>,
- loading: false,
- columns: [
- { label: "用户名", prop: "username", width: 120 },
- { label: "昵称", prop: "nickname", width: 180 },
- { label: "手机号", prop: "mobilePhone", width: 130 },
- { label: "状态", prop: "status", width: 100 },
- { label: "最后登录时间", prop: "lastLoginTime", width: 180 },
- { label: "创建时间", prop: "createTime", width: 180 }
- ] as ColumnItem[]
- }
- });
- onMounted(() => {
- loadData();
- nextTick(() => {
- const bodyHeight = document.body.clientHeight;
- const queryHeight = queryRef.value?.$el?.clientHeight || 0;
- state.tableData.height = bodyHeight - queryHeight - 280;
- });
- });
- const loadData = (refresh: boolean = false) => {
- if (refresh) {
- state.pageQuery.pageNum = 1;
- }
- state.tableData.loading = true;
- getAdminUserList({ ...state.formQuery, ...state.pageQuery })
- .then((res: any) => {
- const { list, total } = res || {};
- state.tableData.data = list || [];
- state.pageQuery.total = total || 0;
- })
- .catch(() => {
- state.tableData.data = [];
- })
- .finally(() => {
- state.tableData.loading = false;
- });
- };
- const handleSizeChange = (size: number) => {
- state.pageQuery.pageSize = size;
- loadData(true);
- };
- const handleCurrentChange = (page: number) => {
- state.pageQuery.pageNum = page;
- loadData();
- };
- const handleSearch = () => {
- loadData(true);
- };
- const handleReset = () => {
- state.formQuery = {
- username: "",
- nickname: "",
- mobilePhone: "",
- status: ""
- };
- loadData(true);
- };
- const handleAdd = () => dialogRef.value?.open("add");
- const handleEdit = (row: any) => dialogRef.value?.open("edit", row);
- const handleDelete = (row: any) => {
- ElMessageBox.confirm(`确定要删除用户『${row.username}』吗?`, "提示", {
- confirmButtonText: "确定", cancelButtonText: "取消", type: "warning"
- }).then(() => {
- removeAdminUser(row.id).then(() => {
- ElMessage.success("删除成功");
- loadData(true);
- });
- }).catch(() => {});
- };
- </script>
- <template>
- <div class="page-container">
- <el-card shadow="hover">
- <el-form ref="queryRef" :model="state.formQuery" inline class="search-form">
- <el-form-item label="用户名">
- <el-input v-model="state.formQuery.username" placeholder="请输入用户名" clearable @keyup.enter="handleSearch" />
- </el-form-item>
- <el-form-item label="昵称">
- <el-input v-model="state.formQuery.nickname" placeholder="请输入昵称" clearable @keyup.enter="handleSearch" />
- </el-form-item>
- <el-form-item label="手机号">
- <el-input v-model="state.formQuery.mobilePhone" placeholder="请输入手机号" clearable @keyup.enter="handleSearch" />
- </el-form-item>
- <el-form-item label="状态">
- <ExtDSelect
- v-model="state.formQuery.status"
- type="AdminUser.status"
- placeholder="请选择状态"
- @on-change="handleSearch"
- />
- </el-form-item>
- <el-form-item>
- <el-button
- type="primary"
- :icon="useRenderIcon('ri/search-line')"
- @click="handleSearch"
- >
- 查询
- </el-button>
- <el-button
- :icon="useRenderIcon('ri/refresh-line')"
- @click="handleReset"
- >
- 重置
- </el-button>
- <el-button
- type="success"
- :icon="useRenderIcon('ri/add-line')"
- @click="handleAdd"
- >
- 新增
- </el-button>
- </el-form-item>
- </el-form>
- <el-table
- v-loading="state.tableData.loading"
- :data="state.tableData.data"
- :height="state.tableData.height"
- border
- stripe
- >
- <template #empty>
- <el-empty description="暂无数据" />
- </template>
- <el-table-column
- v-for="col in state.tableData.columns"
- :key="col.prop"
- :prop="col.prop"
- :label="col.label"
- :width="col.width"
- show-overflow-tooltip
- >
- <template #default="{ row }">
- <template v-if="col.prop === 'status'">
- <ExtDLabel type="AdminUser.status" :model-value="row.status" />
- </template>
- <template v-else>
- {{ row[col.prop] }}
- </template>
- </template>
- </el-table-column>
- <el-table-column label="操作" width="150" fixed="right">
- <template #default="{ row }">
- <el-button type="primary" link size="small" @click="handleEdit(row)">编辑</el-button>
- <el-button type="danger" link size="small" @click="handleDelete(row)">删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- <div class="pagination-container">
- <el-pagination
- v-model:current-page="state.pageQuery.pageNum"
- v-model:page-size="state.pageQuery.pageSize"
- :total="state.pageQuery.total"
- :page-sizes="[10, 20, 50, 100]"
- layout="total, sizes, prev, pager, next, jumper"
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- />
- </div>
- </el-card>
- <AccountDialog ref="dialogRef" @refresh="loadData" />
- </div>
- </template>
- <style scoped lang="scss">
- .page-container {
- padding: 15px;
- }
- .search-form {
- margin-bottom: 15px;
- }
- .pagination-container {
- display: flex;
- justify-content: flex-end;
- margin-top: 15px;
- }
- </style>
|