forked from gzzfw/frontEnd/gzDyh

dminyi
2024-09-13 cd111843d195c24ddc31bb66aca79b559b470842
提交
1 files modified
42 ■■■■■ changed files
gz-customerSystem/src/views/register/handleFeedback/component/handle.jsx 42 ●●●●● patch | view | raw | blame | history
gz-customerSystem/src/views/register/handleFeedback/component/handle.jsx
@@ -132,9 +132,6 @@
    setScannerVisible(false);
  };
  const openScanner = () => {
    setScannerVisible(true);
  };
  const choosePrincipal = async (id) => {
@@ -233,19 +230,6 @@
  }
  const handleSubmit = async () => {
    if (formRef.current) {
      formRef.current.validate(undefined, (errors, values) => {
        if (!errors) {
          const params = formRef.current.getFields()
        }
      });
    }
  }
  //添加办理记录
  const addMark = () => {
    setFormView(!formView);
@@ -296,10 +280,6 @@
    setSupervising(!supervising)
  }
  const handlePersonView = () => {
    getByIdRole();
  }
  const handleCaseResultApply = () => {
    SetCaseResult(!caseResult)
@@ -528,28 +508,6 @@
          onConfirm={handleConfirm}
          onCancel={handleCancel}
        />
        <Modal visible={personView} onCancel={() => setPersonView(false)} title='工作人员信息' centered footer={null}>
          <table border="1" align="center" cellpadding="5" className="table">
            <tr>
              <th bgcolor="#F7F8FA" className="table-title" width="120">姓名</th>
              <td width='380'><div style={{ display: 'flex' }}><div>{personData?.trueName}</div></div></td>
              <th bgcolor="#F7F8FA" className="table-title" width="120">登录账号</th>
              <td width='380'>{personData?.acc}</td>
            </tr>
            <tr>
              <th bgcolor="#F7F8FA" className="table-title">手机号码</th>
              <td>{personData?.mobile}</td>
              <th bgcolor="#F7F8FA" className="table-title">工作电话</th>
              <td>-</td>
            </tr>
            <tr>
              <th bgcolor="#F7F8FA" className="table-title">所属部门</th>
              <td>{personData?.unitName}</td>
              <th bgcolor="#F7F8FA" className="table-title">职务</th>
              <td>{personData?.userRoles}</td>
            </tr>
          </table>
        </Modal>
        <Modal visible={supervising} onCancel={() => setSupervising(false)} title='督办' centered footer={null}>
          <Form
            ref={formRef}