|
@@ -1,49 +1,65 @@
|
|
|
<script setup lang="ts">
|
|
|
-import tree from "./tree.vue";
|
|
|
import { useColumns } from "./columns";
|
|
|
-import { getUserList } from "/@/api/system";
|
|
|
+import { httpList, httpStatus } from "/@/api/system/updates";
|
|
|
import { reactive, ref, onMounted } from "vue";
|
|
|
import { type FormInstance } from "element-plus";
|
|
|
+import { ElMessage } from "element-plus";
|
|
|
import { TableProBar } from "/@/components/ReTable";
|
|
|
import { type PaginationProps } from "@pureadmin/table";
|
|
|
import { useRenderIcon } from "/@/components/ReIcon/src/hooks";
|
|
|
-
|
|
|
+import { useNav } from "/@/layout/hooks/nav";
|
|
|
+import { statusList } from "/@/utils/status";
|
|
|
+const { logout } = useNav();
|
|
|
defineOptions({
|
|
|
- name: "User"
|
|
|
+ name: "role"
|
|
|
});
|
|
|
|
|
|
const form = reactive({
|
|
|
- username: "",
|
|
|
- mobile: "",
|
|
|
- status: ""
|
|
|
+ name: "",
|
|
|
+ page: 1,
|
|
|
+ size: 15
|
|
|
});
|
|
|
-let dataList = ref([]);
|
|
|
-let loading = ref(true);
|
|
|
-const { columns } = useColumns();
|
|
|
|
|
|
+const dataList = ref([]);
|
|
|
+const loading = ref(true);
|
|
|
+const { columns } = useColumns();
|
|
|
+const showModel = ref(false);
|
|
|
+const itemId = ref("");
|
|
|
+const isDetails = ref("add");
|
|
|
const formRef = ref<FormInstance>();
|
|
|
|
|
|
const pagination = reactive<PaginationProps>({
|
|
|
total: 0,
|
|
|
- pageSize: 10,
|
|
|
+ pageSize: 15,
|
|
|
currentPage: 1,
|
|
|
background: true
|
|
|
});
|
|
|
|
|
|
-function handleUpdate(row) {
|
|
|
- console.log(row);
|
|
|
-}
|
|
|
-
|
|
|
-function handleDelete(row) {
|
|
|
- console.log(row);
|
|
|
-}
|
|
|
+//修改状态
|
|
|
+const handleStatus = async row => {
|
|
|
+ const { id, status } = row;
|
|
|
+ const { code, message } = await httpStatus({
|
|
|
+ id,
|
|
|
+ status: status + "" === "1" ? "0" : "1"
|
|
|
+ });
|
|
|
+ if (code === 0) {
|
|
|
+ onSearch();
|
|
|
+ } else if (code > 100 && code < 140) {
|
|
|
+ logout();
|
|
|
+ } else {
|
|
|
+ ElMessage.error(message);
|
|
|
+ }
|
|
|
+};
|
|
|
|
|
|
-function handleCurrentChange(val: number) {
|
|
|
- console.log(`current page: ${val}`);
|
|
|
+async function handleCurrentChange(val: number) {
|
|
|
+ form.page = val;
|
|
|
+ await onSearch();
|
|
|
}
|
|
|
|
|
|
-function handleSizeChange(val: number) {
|
|
|
- console.log(`${val} items per page`);
|
|
|
+async function handleSizeChange(val: number) {
|
|
|
+ form.size = val;
|
|
|
+ form.page = 1;
|
|
|
+ await onSearch();
|
|
|
}
|
|
|
|
|
|
function handleSelectionChange(val) {
|
|
@@ -52,17 +68,35 @@ function handleSelectionChange(val) {
|
|
|
|
|
|
async function onSearch() {
|
|
|
loading.value = true;
|
|
|
- let { data } = await getUserList();
|
|
|
- dataList.value = data.list;
|
|
|
- pagination.total = data.total;
|
|
|
- setTimeout(() => {
|
|
|
- loading.value = false;
|
|
|
- }, 500);
|
|
|
+ const { code, data, message } = await httpList(form);
|
|
|
+ if (code === 0) {
|
|
|
+ const { list, count } = data;
|
|
|
+ dataList.value = list ?? [];
|
|
|
+ pagination.total = count ?? 0;
|
|
|
+ pagination.pageSize = form.size;
|
|
|
+ pagination.currentPage = form.page;
|
|
|
+ } else if (code > 100 && code < 140) {
|
|
|
+ logout();
|
|
|
+ } else {
|
|
|
+ ElMessage.error(message);
|
|
|
+ }
|
|
|
+ loading.value = false;
|
|
|
+}
|
|
|
+async function resetSearch() {
|
|
|
+ form.page = 1;
|
|
|
+ await onSearch();
|
|
|
+}
|
|
|
+//新建/编辑/详情弹窗
|
|
|
+function editItem(id, type) {
|
|
|
+ itemId.value = id;
|
|
|
+ isDetails.value = type;
|
|
|
+ showModel.value = true;
|
|
|
}
|
|
|
|
|
|
const resetForm = (formEl: FormInstance | undefined) => {
|
|
|
if (!formEl) return;
|
|
|
formEl.resetFields();
|
|
|
+ form.page = 1;
|
|
|
onSearch();
|
|
|
};
|
|
|
|
|
@@ -72,146 +106,118 @@ onMounted(() => {
|
|
|
</script>
|
|
|
|
|
|
<template>
|
|
|
- <div class="main flex">
|
|
|
- <tree />
|
|
|
- <div class="flex-1 ml-4">
|
|
|
- <el-form
|
|
|
- ref="formRef"
|
|
|
- :inline="true"
|
|
|
- :model="form"
|
|
|
- class="bg-white w-99/100 pl-8 pt-4"
|
|
|
- >
|
|
|
- <el-form-item label="用户名称:" prop="username">
|
|
|
- <el-input
|
|
|
- v-model="form.username"
|
|
|
- placeholder="请输入用户名称"
|
|
|
- clearable
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="手机号码:" prop="mobile">
|
|
|
- <el-input
|
|
|
- v-model="form.mobile"
|
|
|
- placeholder="请输入手机号码"
|
|
|
- clearable
|
|
|
+ <div class="main role">
|
|
|
+ <el-form
|
|
|
+ ref="formRef"
|
|
|
+ :inline="true"
|
|
|
+ :model="form"
|
|
|
+ :label-width="0"
|
|
|
+ class="bg-white w-99/100 pl-8 pt-4"
|
|
|
+ >
|
|
|
+ <el-form-item prop="status">
|
|
|
+ <el-select
|
|
|
+ v-model="form.status"
|
|
|
+ style="width: 100%"
|
|
|
+ placeholder="角色状态"
|
|
|
+ clearable
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="(si, sii) in statusList"
|
|
|
+ :key="'status' + si.value + sii"
|
|
|
+ :label="si.label"
|
|
|
+ :value="si.value"
|
|
|
/>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="状态:" prop="status">
|
|
|
- <el-select v-model="form.status" placeholder="请选择" clearable>
|
|
|
- <el-option label="已开启" value="1" />
|
|
|
- <el-option label="已关闭" value="0" />
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item>
|
|
|
- <el-button
|
|
|
- type="primary"
|
|
|
- :icon="useRenderIcon('search')"
|
|
|
- :loading="loading"
|
|
|
- @click="onSearch"
|
|
|
- >
|
|
|
- 搜索
|
|
|
- </el-button>
|
|
|
- <el-button
|
|
|
- :icon="useRenderIcon('refresh')"
|
|
|
- @click="resetForm(formRef)"
|
|
|
- >
|
|
|
- 重置
|
|
|
- </el-button>
|
|
|
- </el-form-item>
|
|
|
- </el-form>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item prop="role_name">
|
|
|
+ <el-input v-model="form.role_name" placeholder="角色名称" clearable />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item>
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ :icon="useRenderIcon('search')"
|
|
|
+ :loading="loading"
|
|
|
+ @click="resetSearch"
|
|
|
+ >
|
|
|
+ 搜索
|
|
|
+ </el-button>
|
|
|
+ <el-button :icon="useRenderIcon('refresh')" @click="resetForm(formRef)">
|
|
|
+ 重置
|
|
|
+ </el-button>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
|
|
|
- <TableProBar
|
|
|
- title="用户管理"
|
|
|
- :loading="loading"
|
|
|
- :dataList="dataList"
|
|
|
- @refresh="onSearch"
|
|
|
- >
|
|
|
- <template #buttons>
|
|
|
- <el-button type="primary" :icon="useRenderIcon('add')">
|
|
|
- 新增用户
|
|
|
- </el-button>
|
|
|
- </template>
|
|
|
- <template v-slot="{ size, checkList }">
|
|
|
- <PureTable
|
|
|
- border
|
|
|
- align="center"
|
|
|
- table-layout="auto"
|
|
|
- :size="size"
|
|
|
- :data="dataList"
|
|
|
- :columns="columns"
|
|
|
- :checkList="checkList"
|
|
|
- :pagination="pagination"
|
|
|
- :paginationSmall="size === 'small' ? true : false"
|
|
|
- :header-cell-style="{ background: '#fafafa', color: '#606266' }"
|
|
|
- @selection-change="handleSelectionChange"
|
|
|
- @size-change="handleSizeChange"
|
|
|
- @current-change="handleCurrentChange"
|
|
|
- >
|
|
|
- <template #operation="{ row }">
|
|
|
- <el-button
|
|
|
- class="reset-margin"
|
|
|
- link
|
|
|
- type="primary"
|
|
|
- :size="size"
|
|
|
- @click="handleUpdate(row)"
|
|
|
- :icon="useRenderIcon('edits')"
|
|
|
- >
|
|
|
- 修改
|
|
|
- </el-button>
|
|
|
- <el-popconfirm title="是否确认删除?">
|
|
|
- <template #reference>
|
|
|
- <el-button
|
|
|
- class="reset-margin"
|
|
|
- link
|
|
|
- type="primary"
|
|
|
- :size="size"
|
|
|
- :icon="useRenderIcon('delete')"
|
|
|
- @click="handleDelete(row)"
|
|
|
- >
|
|
|
- 删除
|
|
|
- </el-button>
|
|
|
- </template>
|
|
|
- </el-popconfirm>
|
|
|
- <el-dropdown>
|
|
|
+ <TableProBar
|
|
|
+ title="角色管理"
|
|
|
+ :loading="loading"
|
|
|
+ :dataList="dataList"
|
|
|
+ @refresh="onSearch"
|
|
|
+ >
|
|
|
+ <template #buttons>
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ :icon="useRenderIcon('add')"
|
|
|
+ @click="editItem('', 'add')"
|
|
|
+ >
|
|
|
+ 新增角色
|
|
|
+ </el-button>
|
|
|
+ </template>
|
|
|
+ <template v-slot="{ size, checkList }">
|
|
|
+ <PureTable
|
|
|
+ border
|
|
|
+ align="left"
|
|
|
+ showOverflowTooltip
|
|
|
+ table-layout="auto"
|
|
|
+ :size="size"
|
|
|
+ :data="dataList"
|
|
|
+ :columns="columns"
|
|
|
+ :checkList="checkList"
|
|
|
+ :pagination="pagination"
|
|
|
+ :paginationSmall="size === 'small' ? true : false"
|
|
|
+ :header-cell-style="{ background: '#fafafa', color: '#606266' }"
|
|
|
+ @selection-change="handleSelectionChange"
|
|
|
+ @size-change="handleSizeChange"
|
|
|
+ @current-change="handleCurrentChange"
|
|
|
+ >
|
|
|
+ <template #operation="{ row }">
|
|
|
+ <el-button
|
|
|
+ class="reset-margin"
|
|
|
+ link
|
|
|
+ type="primary"
|
|
|
+ :size="size"
|
|
|
+ @click="editItem(row.id, 'view')"
|
|
|
+ :icon="useRenderIcon('eye-view')"
|
|
|
+ />
|
|
|
+ <el-button
|
|
|
+ class="reset-margin"
|
|
|
+ link
|
|
|
+ type="primary"
|
|
|
+ :size="size"
|
|
|
+ @click="editItem(row.id, 'edit')"
|
|
|
+ :icon="useRenderIcon('edits')"
|
|
|
+ />
|
|
|
+ <el-popconfirm
|
|
|
+ :title="row.status === '1' ? '改为禁用?' : '改为启用?'"
|
|
|
+ @confirm="handleStatus(row)"
|
|
|
+ >
|
|
|
+ <template #reference>
|
|
|
<el-button
|
|
|
- class="ml-3"
|
|
|
+ class="reset-margin"
|
|
|
link
|
|
|
type="primary"
|
|
|
:size="size"
|
|
|
- @click="handleUpdate(row)"
|
|
|
- :icon="useRenderIcon('more')"
|
|
|
- />
|
|
|
- <template #dropdown>
|
|
|
- <el-dropdown-menu>
|
|
|
- <el-dropdown-item>
|
|
|
- <el-button
|
|
|
- class="reset-margin !h-20px !text-gray-500"
|
|
|
- link
|
|
|
- type="primary"
|
|
|
- :size="size"
|
|
|
- :icon="useRenderIcon('password')"
|
|
|
- >
|
|
|
- 重置密码
|
|
|
- </el-button>
|
|
|
- </el-dropdown-item>
|
|
|
- <el-dropdown-item>
|
|
|
- <el-button
|
|
|
- class="reset-margin !h-20px !text-gray-500"
|
|
|
- link
|
|
|
- type="primary"
|
|
|
- :size="size"
|
|
|
- :icon="useRenderIcon('role')"
|
|
|
- >
|
|
|
- 分配角色
|
|
|
- </el-button>
|
|
|
- </el-dropdown-item>
|
|
|
- </el-dropdown-menu>
|
|
|
- </template>
|
|
|
- </el-dropdown>
|
|
|
- </template>
|
|
|
- </PureTable>
|
|
|
- </template>
|
|
|
- </TableProBar>
|
|
|
- </div>
|
|
|
+ :icon="
|
|
|
+ useRenderIcon(
|
|
|
+ row.status === '1'
|
|
|
+ ? 'close-circle-line'
|
|
|
+ : 'checkbox-circle-line'
|
|
|
+ )
|
|
|
+ " /></template
|
|
|
+ ></el-popconfirm>
|
|
|
+ </template>
|
|
|
+ </PureTable>
|
|
|
+ </template>
|
|
|
+ </TableProBar>
|
|
|
</div>
|
|
|
</template>
|
|
|
|