123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 |
- import { userApi } from "@/api";
- import { GetLogListParams, UserTableListType } from "@/types";
- import {
- Button,
- Form,
- FormInstance,
- Input,
- Popconfirm,
- Switch,
- Table,
- message,
- } from "antd";
- import { debounce } from "lodash";
- import { useCallback, useEffect, useMemo, useRef, useState } from "react";
- import UserAdd from "./components/UserAdd";
- import { DageTableActions } from "@dage/pc-components";
- const DEFAULT_PARAMS: GetLogListParams = {
- pageNum: 1,
- pageSize: 20,
- startTime: "",
- endTime: "",
- };
- export default function IndustrialMeta() {
- const formRef = useRef<FormInstance>(null);
- const [list, setList] = useState<UserTableListType[]>([]);
- const [total, setTotal] = useState(0);
- const [loading, setLoading] = useState(false);
- const [editPageShow, setEditPageShow] = useState(false);
- const editId = useRef(0);
- const [params, setParams] = useState<GetLogListParams>({
- ...DEFAULT_PARAMS,
- });
- const getList = useCallback(async () => {
- setLoading(true);
- try {
- const data = await userApi.getList(params);
- setList(data.records);
- setTotal(data.total);
- } finally {
- setLoading(false);
- }
- }, [params]);
- useEffect(() => {
- getList();
- }, [getList, params]);
- const debounceSearch = useMemo(
- () =>
- debounce((changedVal: unknown, vals: GetLogListParams) => {
- setParams({ ...params, ...vals });
- }, 500),
- [params]
- );
- // 切换表格中的启用停用状态
- const isEnabledClickFu = useCallback(
- async (val: boolean, id: number) => {
- const isDisable = val ? 1 : 0;
- await userApi.handleType(id, isDisable);
- getList();
- },
- [getList]
- );
- const paginationChange = useCallback(
- () => (pageNum: number, pageSize: number) => {
- setParams({ ...params, pageNum, pageSize });
- },
- [params]
- );
- const handleReset = useCallback(() => {
- setParams({ ...DEFAULT_PARAMS });
- formRef.current?.resetFields();
- }, [formRef]);
- // 点击删除
- const delTableFu = useCallback(
- async (id: number) => {
- await userApi.del(id);
- message.open({
- type: "success",
- content: "操作成功",
- });
- getList();
- },
- [getList]
- );
- // 点击重置密码
- const resetPassFu = useCallback(async (id: number) => {
- await userApi.resetPwd(id);
- message.open({
- type: "success",
- content: "操作成功",
- });
- }, []);
- const openEditPageFu = useCallback(
- (id: number) => {
- if (id === 0 && total >= 50)
- return message.open({
- type: "warning",
- content: "最多支持50个用户!",
- });
- editId.current = id;
- setEditPageShow(true);
- },
- [total]
- );
- const COLUMNS = useMemo(() => {
- return [
- {
- title: "账号名",
- dataIndex: "userName",
- },
- {
- title: "用户昵称",
- dataIndex: "nickName",
- },
- {
- title: "真实姓名",
- dataIndex: "realName",
- },
- {
- title: "注册时间",
- dataIndex: "createTime",
- },
- {
- title: "启用状态",
- render: (item: UserTableListType) => (
- <Switch
- disabled={item.isAdmin === 1}
- checkedChildren="启用"
- unCheckedChildren="停用"
- checked={item.isEnabled === 1}
- onChange={(val) => isEnabledClickFu(val, item.id)}
- />
- ),
- },
- {
- title: "操作",
- render: (item: UserTableListType) => {
- return item.isAdmin === 1 ? (
- "-"
- ) : (
- <DageTableActions
- renderBefore={
- <Popconfirm
- title="密码重制后为123456,是否重置?"
- okText="重置"
- cancelText="取消"
- onConfirm={() => resetPassFu(item.id)}
- >
- <Button size="small" type="text">
- 重置密码
- </Button>
- </Popconfirm>
- }
- onEdit={openEditPageFu.bind(undefined, item.id)}
- onDelete={delTableFu.bind(undefined, item.id)}
- />
- );
- },
- },
- ];
- }, [delTableFu, isEnabledClickFu, resetPassFu, openEditPageFu]);
- return (
- <div className="user">
- <Form ref={formRef} layout="inline" onValuesChange={debounceSearch}>
- <Form.Item label="账号" name="searchKey">
- <Input
- className="w220"
- placeholder="请输入关键字"
- maxLength={30}
- showCount
- allowClear
- />
- </Form.Item>
- <Form.Item>
- <Button type="primary" onClick={openEditPageFu.bind(undefined, 0)}>
- 新增
- </Button>
- </Form.Item>
- <Form.Item>
- <Button onClick={handleReset}>重置</Button>
- </Form.Item>
- </Form>
- <Table
- loading={loading}
- className="page-table"
- dataSource={list}
- columns={COLUMNS}
- rowKey="id"
- pagination={{
- showQuickJumper: true,
- position: ["bottomCenter"],
- showSizeChanger: true,
- current: params.pageNum,
- pageSize: params.pageSize,
- total,
- onChange: paginationChange(),
- }}
- />
- {/* 点击新增或者编辑 */}
- {editPageShow ? (
- <UserAdd
- id={editId.current}
- closePage={() => setEditPageShow(false)}
- upTableList={getList}
- addTableList={handleReset}
- />
- ) : null}
- </div>
- );
- }
|