123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239 |
- import { useModel, useRequest } from 'umi'
- import { Association, Delete, EveryUser } from '@icon-park/react'
- import ProForm, { ProFormCheckbox, ProFormDependency, ProFormSwitch } from '@ant-design/pro-form'
- import type { FormInstance } from 'antd'
- import { message, Table, Tabs, Popconfirm } from 'antd'
- import React, { useRef, useMemo, useState, useEffect } from 'react'
- import {
- fetchRoleStaffListByRoleId,
- updateRolePermission,
- getRolePermissions,
- deleteStaff
- } from '@/services/user/api'
- import type { ColumnsType } from 'antd/lib/table'
- import RoleMenu from '../System/components/RoleMenu'
- import ConnectModal from '../System/components/ConnectModal'
- import { formatPermission } from '@/utils/utils'
- const System = () => {
- const { TabPane } = Tabs
- const formRef = useRef<FormInstance>(null)
- const { initialState } = useModel('@@initialState')
- const menuId = useMemo(() => {
- return initialState?.menuList?.find(item => item.name === '系统管理')?.id
- }, initialState.menuList)
- const [state, setState] = useState({
- id: '',
- roleStaff: [],
- rolePermission: {},
- activeKey: ''
- })
- const onSelect = (id: string) => {
- setState({ ...state, id })
- }
- const { run: tryGetRoleStaffList } = useRequest(
- (id: string) => fetchRoleStaffListByRoleId({ id }),
- {
- manual: true,
- onSuccess: result => {
- setState({ ...state, roleStaff: result })
- }
- }
- )
- const { run: tryGetRolePermissions } = useRequest((id: string) => getRolePermissions({ id }), {
- manual: true,
- onSuccess: (result: API.GetRolePermissionResultModel) => {
- const values = { system: [], business: [], ...formatPermission('init', result.permission) }
- setState({ ...state, rolePermission: values })
- formRef.current?.setFieldsValue({ ...values })
- }
- })
- const { run: tryDeleteStaff } = useRequest(
- (params: API.DeleteStaff) => {
- return deleteStaff(params)
- },
- {
- manual: true,
- onSuccess: () => {
- message.success('移除员工成功')
- tryGetRoleStaffList(state.id)
- }
- }
- )
- useEffect(() => {
- if (state.id) {
- tryGetRoleStaffList(state.id)
- tryGetRolePermissions(state.id)
- }
- if (state.activeKey === '2') {
- formRef.current?.setFieldsValue({ ...state.rolePermission })
- }
- return () => {
- formRef.current?.resetFields()
- }
- }, [state.id, state.activeKey])
- const columns: ColumnsType<API.RoleStaffListItem> = [
- {
- title: '用户',
- dataIndex: 'username',
- width: '15%'
- },
- {
- title: '手机',
- dataIndex: 'phone',
- width: '20%'
- },
- {
- title: '部门',
- dataIndex: 'departmentName',
- width: '20%'
- },
- {
- title: '岗位',
- dataIndex: 'position',
- width: '15%'
- },
- {
- title: '角色',
- dataIndex: 'age',
- width: '20%'
- },
- {
- title: '操作',
- dataIndex: 'opreate',
- width: '20%',
- render: (_, record) => (
- // console.log(record.staffId)
- <>
- {state.id && (
- <Popconfirm
- title="确认删除吗?"
- okText="确认"
- cancelText="取消"
- onConfirm={() => tryDeleteStaff({ id: state.id, staffId: record.staffId })}>
- <span className="hover:text-hex-e7026e cursor-pointer">
- <Delete fill="#fd3995" />
- </span>
- </Popconfirm>
- )}
- </>
- )
- }
- ]
- return (
- <div className="h-full w-full flex flex-row">
- <RoleMenu menuId={menuId} onSelect={onSelect} itemCount={state.roleStaff?.length || 0} />
- <div className="w-max-3/4">
- <div className="ml-8 bg-white p-4 shadow-md shadow-hex-3e2c5a relative">
- <div className="absolute right-4 top-4 z-100">
- {state.id && (
- <ConnectModal
- title="关联员工"
- dataId={state.id}
- closeAfterSelect={false}
- onReload={() => tryGetRoleStaffList(state.id)}
- postUrl="/role/staff/add"
- />
- )}
- </div>
- <Tabs
- defaultActiveKey="1"
- type="card"
- onChange={key => setState({ ...state, activeKey: key })}>
- <TabPane tab="员工列表" key="1">
- <Table<API.RoleStaffListItem>
- dataSource={state.roleStaff}
- columns={columns}
- rowKey={row => row.staffId}
- />
- </TabPane>
- <TabPane tab="角色权限" key="2">
- <div className="ml-4">
- {state.id && (
- <ProForm
- layout="horizontal"
- formRef={formRef}
- onFinish={async values => {
- const newValues = formatPermission('submit', values)
- await updateRolePermission({
- permission: JSON.stringify(newValues),
- id: state.id
- })
- message.success('设置成功')
- }}>
- <ProFormSwitch
- name="showSystem"
- fieldProps={{
- onChange(checked) {
- if (!checked) {
- formRef.current?.setFieldsValue({ system: [] })
- }
- }
- }}
- label={
- <span className="flex items-center">
- <EveryUser className="mr-1" className="flex items-baseline mr-1" />
- 角色权限管理
- </span>
- }
- />
- <ProFormDependency name={['showSystem']}>
- {({ showSystem }) => (
- <ProFormCheckbox.Group
- wrapperCol={{ offset: 1 }}
- // initialValue={}
- name="system"
- options={[
- { value: 'system', label: '系统管理', disabled: !showSystem },
- { value: 'workbench', label: '工作台', disabled: !showSystem },
- { value: 'customer', label: '客户', disabled: !showSystem },
- { value: 'hr', label: '人资', disabled: !showSystem },
- { value: 'product', label: '产品', disabled: !showSystem }
- // { value: '4', label: '开票合同', disabled: !showAuth },
- // { value: '5', label: '考勤', disabled: !showAuth },
- // { value: '7', label: '财务费用', disabled: !showAuth }
- ]}
- />
- )}
- </ProFormDependency>
- <ProFormSwitch
- name="showBusiness"
- label={
- <span className="flex items-center">
- <Association className="mr-1" className="flex items-baseline mr-1" />
- 业务参数
- </span>
- }
- />
- <ProFormDependency name={['showBusiness']}>
- {({ showBusiness }) => (
- <ProFormCheckbox.Group
- wrapperCol={{ offset: 1 }}
- name="business"
- options={[
- { value: 'attendance', label: '考勤', disabled: !showBusiness },
- { value: 'contact', label: '客户', disabled: !showBusiness }
- ]}
- />
- )}
- </ProFormDependency>
- </ProForm>
- )}
- </div>
- </TabPane>
- </Tabs>
- </div>
- </div>
- </div>
- )
- }
- export default System
|