123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269 |
- /*
- * @Author: your name
- * @Date: 2021-07-26 10:13:13
- * @LastEditTime: 2021-09-18 11:36:21
- * @LastEditors: Please set LastEditors
- * @Description: In User Settings Edit
- * @FilePath: /TracerMethodology_PC/src/pages/UserMana/index.js
- */
- import { PlusOutlined } from '@ant-design/icons';
- import { Button, Popconfirm} from 'antd';
- import React, { useState, useRef} from 'react';
- import { useModel } from 'umi';
- import { PageContainer } from '@ant-design/pro-layout';
- import ProTable from '@ant-design/pro-table';
- import { ModalForm, ProFormText, ProFormSelect } from '@ant-design/pro-form';
- import UpdateForm from './updateForm';
- import CAUpload from '@/components/CAUpload';
- import { getUserList, addUser, editUser, delUser,importExcel } from './service';
- const UserMana = () => {
- const columns = [
- {
- title: 'Id',
- dataIndex: 'id',
- key: 'id',
- hideInSearch: true,
- ellipsis: true,
- },
- {
- title: '姓名',
- dataIndex: 'name',
- key: 'name',
- ellipsis: true,
- },
- {
- title: '用户名',
- dataIndex: 'account',
- key: 'account',
- hideInSearch: true,
- ellipsis: true,
- },
- {
- title: '在职状态',
- dataIndex: 'hospitalStatus',
- key: 'hospitalStatus',
- hideInSearch: true,
- ellipsis: true,
- render: (text) => <>{text == 1 ? '在职' : '离职'}</>,
- },
- {
- title:'操作',
- dataIndex: 'option',
- valueType: 'option',
- render: (_, record) => [
- <a
- key="config"
- onClick={() => {
- handleUpdateModalVisible(true);
- setCurrentRow(record);
- }}
- >
- 编辑
- </a>,
- <Popconfirm
- key="subscribeAlert"
- title="是否确定删除?"
- onConfirm={() => {
- setCurrentRow(record);
- delUserHandler(record);
- }}
- >
- <a>删除</a>
- </Popconfirm>,
- ],
- },
- ];
- const [createModalVisible, handleModalVisible] = useState(false);
- const [updateModalVisible, handleUpdateModalVisible] = useState(false);
- const actionRef = useRef();
- const [currentRow, setCurrentRow] = useState({});
- const { initialState, setInitialState } = useModel('@@initialState');
- const {currentUser:{token}} = initialState;
- // const [shareParamsSetting,setShareParamsSetting] = useState(false); //是否分摊参数设置
-
- /**
- *
- * @param {Boolean} bool 弹窗展示状态
- */
- const updateModalVisibleChange = (bool) => {
- handleUpdateModalVisible(bool);
- if (!bool) setCurrentRow(undefined);
- };
- //获取用户列表
- const getUserlist = async (params = {}, sort, filter) => {
- const res = await getUserList(params);
- return {
- data: res.data.list,
- total: res.data.totalCount,
- success: res.success,
- };
- };
- /**
- *
- * @param {Object} value 删除项数据
- */
- const delUserHandler = async (value) => {
- const resp = await delUser(value);
- if(resp.msg){
- if (actionRef.current) {
- actionRef.current.reload();
- }
- }
- };
- //自定义上传回调
- const customRequestCallback = async (formData)=>{
- const resp = await importExcel({formData},{
- 'content-type':'multipart/form-data',
- })
- const {status} = resp;
- if(status==200){
- if (actionRef.current) {
- actionRef.current.reload();
- }
- }
- }
- return (
- <PageContainer>
- <ProTable
- columns={columns}
- request={getUserlist}
- actionRef={actionRef}
- rowKey="id"
- toolBarRender={() => [
- <Button
- key="button"
- icon={<PlusOutlined />}
- type="primary"
- onClick={() => {
- handleModalVisible(true);
- }}
- >
- 新增
- </Button>,
- <CAUpload
- templateHrefs={'/costAccount/excel/getcurrentTemplate'}
- url='/costAccount/excel/importUser'
- importSuccessCallback={() =>{}}
- token={token}
- type='normal'
- customRequestCallback={customRequestCallback}
- />
- ]}
- pagination={{
- pageSize: 10,
- }}
- search={{
- defaultCollapsed: false,
- labelWidth: 'auto',
- }}
- />
- <ModalForm
- title="新增人员"
- width="800px"
- labelCol={{ span: 3, offset: 3 }}
- layout={'horizontal'}
- visible={createModalVisible}
- onVisibleChange={handleModalVisible}
- onFinish={async (value) => {
- const success = await addUser(value);
- // console.log({ success });
- if (success) {
- handleModalVisible(false);
- if (actionRef.current) {
- actionRef.current.reload();
- }
- }
- }}
- >
- <ProFormText
- label="姓名"
- rules={[
- {
- required: true,
- message:'人员名是必填项',
- },
- ]}
- width="sm"
- name="name"
- />
- <ProFormText
- label="账户"
- rules={[
- {
- required: true,
- message:'账户名是必填项',
- },
- ]}
- width="sm"
- name="account"
- />
- <ProFormText
- label="密码"
- rules={[
- {
- required: false,
- message:'',
- },
- ]}
- width="sm"
- name="password"
- placeholder='密码不修改留空'
- />
- <ProFormSelect
- options={[
- {
- value: 0,
- label: '离职',
- },
- {
- value: 1,
- label: '在职',
- },
- ]}
- width="sm"
- name="hospitalStatus"
- label="在职状态"
- />
- </ModalForm>
-
- {/* 更新 */}
- <UpdateForm
- onSubmit={async (value) => {
- // console.log({value});
- const success = await editUser(value);
- if (success) {
- handleUpdateModalVisible(false);
- setCurrentRow(undefined);
- if (actionRef.current) {
- actionRef.current.reload();
- }
- }
- }}
- onCancel={() => {
- handleUpdateModalVisible(false);
- setCurrentRow(undefined);
- }}
- updateModalVisible={updateModalVisible}
- updateModalVisibleChange={updateModalVisibleChange}
- values={currentRow || {}}
- />
- </PageContainer>
- );
- };
- export default UserMana;
|