incidentFlow.jsx 5.19 KB
Newer Older
皮倩雯's avatar
皮倩雯 committed
1 2
/* eslint-disable react-hooks/rules-of-hooks */
/* eslint-disable camelcase */
皮倩雯's avatar
皮倩雯 committed
3
import React, { useEffect, useState } from 'react';
邓超's avatar
邓超 committed
4
import { Modal, Table, Tooltip, notification, Space, Popconfirm, Spin, Button } from 'antd';
皮倩雯's avatar
皮倩雯 committed
5 6 7 8 9 10
import {
  PlusSquareFilled,
  EditTwoTone,
  DeleteOutlined,
  PlusSquareOutlined,
  RollbackOutlined,
皮倩雯's avatar
皮倩雯 committed
11 12 13
} from '@ant-design/icons';
import { useHistory } from 'react-router-dom';
import styles from './incident.less';
邓超's avatar
邓超 committed
14
import { GetCM_Event_LoadEvenFlows, CM_Event_RemoveEvenFlow } from '@/services/standingBook/api';
皮倩雯's avatar
皮倩雯 committed
15 16 17 18 19 20 21 22 23 24
import AddFlowsModal from './AddFlowsModal';
const incidentFlow = props => {
  const [tableData, setTableData] = useState([]);
  const history = useHistory();
  const [addVisible, setAddVisible] = useState(false);
  const [treeLoading, setTreeLoading] = useState(false);
  const [isType, setIsType] = useState(''); // 弹窗类型
  const [record1, setRecord1] = useState('');
  const [obj, setObj] = useState('');
  const [flag, setFlag] = useState(0);
皮倩雯's avatar
皮倩雯 committed
25

皮倩雯's avatar
皮倩雯 committed
26 27 28 29 30
  const columns = [
    {
      title: () => <span style={{ fontWeight: 'bold' }}>流程名称</span>,
      dataIndex: 'FlowName',
      key: 'FlowName',
31
      // width: 600,
皮倩雯's avatar
皮倩雯 committed
32
      ellipsis: true,
33
      align: 'center',
皮倩雯's avatar
皮倩雯 committed
34 35 36 37 38
    },
    {
      title: () => <span style={{ fontWeight: 'bold' }}>操作</span>,
      key: 'action',
      width: 150,
39
      align: 'center',
皮倩雯's avatar
皮倩雯 committed
40 41
      render: record => (
        <Space size="middle">
42
          {/* <Tooltip title="编辑用户">
邓超's avatar
邓超 committed
43
            <EditTwoTone onClick={() => editEventType(record)} style={{ fontSize: '16px' }} />
44
          </Tooltip> */}
皮倩雯's avatar
皮倩雯 committed
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
          <Tooltip title="删除">
            <Popconfirm
              placement="bottomRight"
              title={<p>即将删除事件流程,是否确认删除?</p>}
              okText="确认"
              cancelText="取消"
              onConfirm={() => deleteEventType(record)}
            >
              <DeleteOutlined style={{ fontSize: '16px', color: '#e86060' }} />
            </Popconfirm>
          </Tooltip>
        </Space>
      ),
    },
  ];
皮倩雯's avatar
皮倩雯 committed
60

皮倩雯's avatar
皮倩雯 committed
61 62
  useEffect(() => {
    console.log(props);
邓超's avatar
邓超 committed
63
    console.log(props.location.state.formObj);
皮倩雯's avatar
皮倩雯 committed
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
    setTreeLoading(true);
    GetCM_Event_LoadEvenFlows({
      eventTypeId: props.location.state.formObj.ID,
    }).then(res => {
      setTreeLoading(false);
      if (res.msg === 'Ok') {
        console.log(res.data);
        setTableData(res.data);
      }
    });
  }, [flag]);
  const addIncident = () => {
    console.log(props.location.state.formObj.ID);
    setObj(props.location.state.formObj.ID);
    setAddVisible(true);
    setIsType('add');
  };
  const editEventType = record => {
    setObj(props.location.state.formObj.ID);
    setRecord1(record);
    setIsType('edit');
    setAddVisible(true);
  };
  const back = () => {
    let { rember } = props.location.state;
    history.push({
90
      pathname: '/biz/workflow/event',
皮倩雯's avatar
皮倩雯 committed
91 92 93 94 95 96 97 98 99 100 101
      state: { rember },
    });
  };
  const deleteEventType = record => {
    console.log(record);
    CM_Event_RemoveEvenFlow({ eventFlowIds: record.ID }).then(res => {
      if (res.msg === '') {
        notification.success({
          message: '提示',
          duration: 3,
          description: '删除成功',
皮倩雯's avatar
皮倩雯 committed
102
        });
皮倩雯's avatar
皮倩雯 committed
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
        setFlag(flag + 1);
      } else {
        notification.error({
          message: '提示',
          duration: 3,
          description: res.msg,
        });
      }
    });
  };
  const onOK = () => {
    setAddVisible(false);
    GetCM_Event_LoadEvenFlows({
      eventTypeId: props.location.state.formObj.ID,
    }).then(res => {
      if (res.msg === 'Ok') {
        console.log(res.data);
        setTableData(res.data);
      }
    });
  };
皮倩雯's avatar
皮倩雯 committed
124

皮倩雯's avatar
皮倩雯 committed
125 126 127 128 129
  return (
    <>
      <Spin tip="loading..." spinning={treeLoading}>
        <div className={styles.containerBox}>
          <div className={styles.config}>
130
            <div className={styles.title}>{`${props.location.state.title1}受理流程`}</div>
皮倩雯's avatar
皮倩雯 committed
131 132
            <div className={styles.btn}>
              <Button
邓超's avatar
邓超 committed
133 134 135
                disabled={
                  props.location.state.formObj.createMode === '工单分派' && tableData.length >= 1
                }
皮倩雯's avatar
皮倩雯 committed
136 137 138 139 140 141
                type="primary"
                icon={<PlusSquareOutlined />}
                onClick={() => addIncident()}
              >
                新增
              </Button>
皮倩雯's avatar
皮倩雯 committed
142

邓超's avatar
邓超 committed
143
              <Button type="primary" icon={<RollbackOutlined />} onClick={() => back()}>
皮倩雯's avatar
皮倩雯 committed
144 145 146 147
                返回
              </Button>
            </div>
          </div>
皮倩雯's avatar
皮倩雯 committed
148

皮倩雯's avatar
皮倩雯 committed
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
          <Table
            size="small"
            rowKey="ID"
            bordered
            style={{ overflowY: 'scroll' }}
            onRow={record => ({
              onDoubleClick: event => {
                event.stopPropagation();
                editEventType(record);
              }, // 双击
            })}
            columns={columns}
            dataSource={tableData}
            pagination={false}
          />
        </div>
      </Spin>
      <AddFlowsModal
        visible={addVisible}
        obj={obj}
        formObj={props.location.state.formObj}
        type={isType}
        record={record1}
        // maxLength={maxLength}
        onClose={() => setAddVisible(false)}
        callBackSubmit={onOK}
        placement="right"
      />
    </>
  );
};
export default incidentFlow;