import React from 'react'; import { history } from 'umi'; import { ModalForm, ProForm, ProFormSelect, ProFormText, ProFormTextArea } from '@ant-design/pro-components'; import { querySysUser } from '@/services/op-admin/system/user'; import { message, Modal } from 'antd'; import { saveEgressApi } from '@/services/op-admin/gateway/egress'; import { ExclamationCircleOutlined } from '@ant-design/icons'; /** * @author bianlanzhou * @since 2024-09-24 * @desc 创建API modal窗口 */ class UpsertApiModalForm extends React.Component { render() { /**处理查询用户 */ const handleQuerySysUser = () => { return querySysUser().then((resp) => { if (resp.success) { return resp.data; } return [] }).catch( (err) => { console.log(err) message.error('查询用户失败!') } ) } /** 处理跳转 */ const handleJump = (content: string, okPath: string, cancelPath: string, data: any) => { Modal.confirm({ title: '创建通道', icon: , content: content, okText: '是', onOk: () => { history.push( { pathname: okPath, }, data, ) }, onCancel: () => { history.push( { pathname: cancelPath, }, ) }, cancelText: '否', }) } /** 提交方法 */ const handleSubmit = (data: any) => { return saveEgressApi(data).then((resp) => { let content = '', okPath = '', cancelPath = '/ui/gateway/egress/api'; if (resp.success) { message.success('保存成功!') if (this.props.data?.id !== null && this.props.data?.id !== undefined) { this.props.callback(); return true; } if (data.apiType === 'loan') { content = '是否直接跳转助贷对接流程?' okPath = '/ui/gateway/egress/loan-integration' } else { content = '当前只支持助贷对接流程,是否跳转到API列表页面?' okPath = '/ui/gateway/egress/api' } handleJump(content, okPath, cancelPath, { id: resp.data, from: 'api' }); } }).catch((err) => { console.log(err) return false; }) } return ( trigger={this.props.trigger} title="创建API" onFinish={ async (value) => { return handleSubmit({ ...value, ...{ id: this.props.data?.id } }); } } initialValues={ this.props.data } > ); } } export default UpsertApiModalForm;