董国庆
2025-03-19 a6eaddfe1615ea502becc1bdd27af5ff33f8818d
修改提示
1个文件已修改
41 ■■■■ 已修改文件
management/src/pages/party/audit/index.jsx 41 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
management/src/pages/party/audit/index.jsx
@@ -81,26 +81,26 @@
            {record.auditStatus == 0 && (
              <>
                <Access accessible={access['/party_member_audit/audit']}>
                <Button
                  type="link"
                  onClick={() => {
                    addViewRef.current.refreshData({ type: 'sure', id: record.id });
                    handleModalVisible(true);
                  }}
                >
                  通过
                </Button>
                  <Button
                    type="link"
                    onClick={() => {
                      addViewRef.current.refreshData({ type: 'sure', id: record.id });
                      handleModalVisible(true);
                    }}
                  >
                    通过
                  </Button>
                </Access>
                <Access accessible={access['/party_member_audit/audit']}>
                <Button
                  type="link"
                  onClick={() => {
                    addViewRef.current.refreshData({ type: 'refuse', id: record.id });
                    handleModalVisible(true);
                  }}
                >
                  拒绝
                </Button>
                  <Button
                    type="link"
                    onClick={() => {
                      addViewRef.current.refreshData({ type: 'refuse', id: record.id });
                      handleModalVisible(true);
                    }}
                  >
                    拒绝
                  </Button>
                </Access>
              </>
            )}
@@ -145,7 +145,10 @@
          const success = await sendRequest(audit, fileds);
          if (success) {
            handleModalVisible(false);
            message.success('当前党员信息审核已通过');
            if (fileds.type == 'sure') {
              message.success('当前党员信息审核已通过');
            }
            addViewRef.current.clean()
            actionRef.current.reload();
          }