| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- import { useRef, useState, useEffect } from 'react';
- import { connect, history } from '@umijs/max';
- import type { ActionType, ProFormInstance } from '@ant-design/pro-components';
- import {
- ProTable, TableDropdown
- } from '@ant-design/pro-components';
- import { Button, Image, ConfigProvider, Tag } from 'antd';
- import { GetRoleList } from '@/apis/api';
- import { Imageprefix } from '@/constants';
-
- const PagesPermissionRoleTable: React.FC = ({ dispatch, openModel, getId }: any) => {
- const actionRef = useRef<ActionType>();
- const [list, setList] = useState<object[]>([])
- const [total, setTotal] = useState<number>(0)
- const [page, setPage] = useState<number>(1)
- const [pageSize, setPageSize] = useState<number>(10)
-
- const setId = (id: number) => {
- getId(id)
- }
-
- useEffect(() => {
- if (!openModel.openModal) {
- actionRef.current.reload();
- }
- }, [openModel.openModal])
-
- return (
- <>
- <ConfigProvider
- theme={{
- token: {
- colorPrimary: '#4FBE70',
- colorLink: '#4FBE70',
- }
- }}
- >
- <ProTable
- size='small'
- bordered={true}
- scroll={{ x: 1300 }}
- actionRef={actionRef}
- dataSource={list}
- columns={[
- {
- title: 'ID',
- dataIndex: 'id',
- width: 100,
- search: false,
- },
- {
- title: '角色名',
- dataIndex: 'name'
- },
- {
- title: '别名',
- dataIndex: 'code',
- search: false,
- },
- {
- title: '描述',
- dataIndex: 'description',
- search: false,
- },
- {
- title: '操作',
- width: 300,
- key: 'option',
- valueType: 'option',
- fixed: 'right',
- render: (_, record, action) => [
- <Button key='1' type='link' onClick={() => {
- setId(record.id)
- dispatch({ type: 'openModel/getOpenModal', payload: true })
- }}>编辑</Button>,
- <Button key='2' type='link' onClick={() => {
- setId(record.id)
- dispatch({ type: 'openModel/getOpenDispenseModal', payload: true })
- }}>分配权限</Button>,
- <Button key='3' type='link' onClick={() => {
-
- }}>删除</Button>
- ],
- },
- ]}
- rowKey="id"
- pagination={{
- current: page,
- pageSize: pageSize,
- showSizeChanger: true,
- total: total,
- pageSizeOptions: [9, 18, 27, 99],
- onChange(page, pageSize) {
- setPage(page)
- setPageSize(pageSize)
- },
- onShowSizeChange(current, size) {
- setPage(current)
- setPageSize(size)
- }
- }}
- request={async (params = {} as Record<string, any>) =>
- GetRoleList({
- page: page,
- pagesize: pageSize,
- sort: 'id',
- sortby: 'desc',
- keyword: params.name,
-
- }).then(res => {
- setList(res.data.roles)
- setTotal(res.data.total)
- })
- }
- headerTitle="角色列表"
- toolBarRender={() => [
- <Button type="primary" onClick={() => {
- dispatch({ type: 'openModel/getOpenModal', payload: true })
- }}>
- 添加角色
- </Button>
- ]}
- />
- </ConfigProvider>
- </>
- );
- };
-
-
- export default connect(({ openModel }: any) => ({
- openModel
- }))(PagesPermissionRoleTable);
|