123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248 |
- /*
- * @Author: your name
- * @Date: 2021-07-26 10:13:13
- * @LastEditTime: 2021-08-02 19:00:33
- * @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, Cascader } from 'antd';
- import React, { useState, useRef, useEffect } from 'react';
- import { useIntl, FormattedMessage,useModel } from 'umi';
- import { PageContainer, FooterToolbar } from '@ant-design/pro-layout';
- import ProTable from '@ant-design/pro-table';
- import ProForm, { ModalForm, ProFormText, ProFormSelect, ProFormTextArea } from '@ant-design/pro-form';
- import UpdateForm from './updateForm';
- import CAUpload from '@/components/CAUpload';
- import {
- getCostProjecttList, editCostProject, delCostProject,
- addCostProject,importExcel
- } from './service';
- const DepartmentMana = () => {
- const columns = [
- {
- title: 'Id',
- dataIndex: 'id',
- key: 'id',
- hideInSearch: true,
- },
- {
- title: '成本编号',
- dataIndex: 'productCode',
- key: 'productCode',
- hideInSearch: true,
- },
- {
- title: '成本项目名',
- dataIndex: 'productName',
- key: 'productName',
- hideInSearch: false,
- },
- {
- title: <FormattedMessage id="pages.searchTable.titleOption" defaultMessage="Operating" />,
- dataIndex: 'option',
- valueType: 'option',
- render: (_, record) => [
- <a
- key="config"
- onClick={() => {
- handleUpdateModalVisible(true);
- setCurrentRow(record);
- }}
- >
- 编辑
- </a>,
- <Popconfirm
- key="subscribeAlert"
- title="是否确定删除?"
- onConfirm={() => {
- setCurrentRow(record);
- delListHandler(record);
- }}
- >
- <a>删除</a>
- </Popconfirm>,
- ],
- },
- ];
- const [createModalVisible, handleModalVisible] = useState(false);
- const [updateModalVisible, handleUpdateModalVisible] = useState(false);
- const actionRef = useRef(); //表格
- const ref = useRef(); //新增表单
- const [currentRow, setCurrentRow] = useState({});
- const { initialState, setInitialState } = useModel('@@initialState');
- const {currentUser:{token}} = initialState;
- /**
- *
- * @param {Boolean} bool 弹窗展示状态
- */
- const updateModalVisibleChange = (bool) => {
- handleUpdateModalVisible(bool);
- if (!bool) setCurrentRow(undefined);
- };
- //获取科室列表
- const getList = async (params = {}, sort, filter) => {
- const res = await getCostProjecttList(params);
- return {
- data: res.data.list,
- total: res.data.totalCount,
- success: res.success,
- };
- };
- /**
- *
- * @param {Object} value 删除项数据
- */
- const delListHandler = async (value) => {
- const resp = await delCostProject(value);
- if (resp.status == 200) {
- if (actionRef.current) {
- actionRef.current.reload();
- }
- }
- };
- //自定义上传回调
- const customRequestCallback = async (formData)=>{
- const resp = await importExcel({formData},{
- // 'content-type': 'application/json'
- 'content-type':'multipart/form-data',
- })
- const {status} = resp;
- if(status==200){
- if (actionRef.current) {
- actionRef.current.reload();
- }
- }
- }
- return (
- <PageContainer>
- <ProTable
- columns={columns}
- request={getList}
- actionRef={actionRef}
- rowKey="id"
- toolBarRender={() => [
- <Button
- key="button"
- icon={<PlusOutlined />}
- type="primary"
- onClick={() => {
- handleModalVisible(true);
- }}
- >
- 新增
- </Button>,
- <CAUpload
- templateHref={'/costAccount/excel/getImportProductTemplate'}
- url='/costAccount/excel/importProduct'
- importSuccessCallback={() => { }}
- token={token}
- customRequestCallback={customRequestCallback}
- />
- ]}
- pagination={{
- pageSize: 10,
- }}
- search={{
- defaultCollapsed: false,
- labelWidth: 'auto',
- }}
- />
- <ModalForm
- title="新增成本项目"
- width="800px"
- labelCol={{ span: 5, offset: 3 }}
- layout={'horizontal'}
- visible={createModalVisible}
- formRef={ref}
- onVisibleChange={(bool) => {
- if (ref.current) {
- ref.current.resetFields();
- }
- handleModalVisible(bool);
- }}
- onFinish={async (value) => {
- const success = await addCostProject(value);
- // console.log({ success });
- if (success) {
- handleModalVisible(false);
- if (actionRef.current) {
- actionRef.current.reload();
- }
- }
- }}
- >
- <ProFormText
- label="成本项目编码"
- rules={[
- {
- required: true,
- message: (
- <FormattedMessage id="pages.searchTable.productCode" defaultMessage="成本项目编码是必填项" />
- ),
- },
- ]}
- width="sm"
- name="productCode"
- />
- <ProFormText
- label="成本项目名"
- rules={[
- {
- required: true,
- message: (
- <FormattedMessage id="pages.searchTable.productName" defaultMessage="成本项目名是必填项" />
- ),
- },
- ]}
- width="sm"
- name="productName"
- />
- </ModalForm>
- {/* 更新 */}
- <UpdateForm
- onSubmit={async (value) => {
- // console.log({ '编辑': value });
- const success = await editCostProject(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 DepartmentMana;
|