UpsertApiModalForm.tsx 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. import React from 'react';
  2. import { history } from 'umi';
  3. import { ModalForm, ProForm, ProFormSelect, ProFormText, ProFormTextArea } from '@ant-design/pro-components';
  4. import { querySysUser } from '@/services/op-admin/system/user';
  5. import { message, Modal } from 'antd';
  6. import { saveEgressApi } from '@/services/op-admin/gateway/egress';
  7. import { ExclamationCircleOutlined } from '@ant-design/icons';
  8. /**
  9. * @author bianlanzhou
  10. * @since 2024-09-24
  11. * @desc 创建API modal窗口
  12. */
  13. class UpsertApiModalForm extends React.Component<UpsertApiModalFormProp> {
  14. render() {
  15. /**处理查询用户 */
  16. const handleQuerySysUser = () => {
  17. return querySysUser().then((resp) => {
  18. if (resp.success) {
  19. return resp.data;
  20. }
  21. return []
  22. }).catch(
  23. (err) => {
  24. console.log(err)
  25. message.error('查询用户失败!')
  26. }
  27. )
  28. }
  29. /** 处理跳转 */
  30. const handleJump = (content: string, okPath: string, cancelPath: string, data: any) => {
  31. Modal.confirm({
  32. title: '创建通道',
  33. icon: <ExclamationCircleOutlined
  34. />,
  35. content: content,
  36. okText: '是',
  37. onOk: () => {
  38. history.push(
  39. {
  40. pathname: okPath,
  41. },
  42. data,
  43. )
  44. },
  45. onCancel: () => {
  46. history.push(
  47. {
  48. pathname: cancelPath,
  49. },
  50. )
  51. },
  52. cancelText: '否',
  53. })
  54. }
  55. /** 提交方法 */
  56. const handleSubmit = (data: any) => {
  57. return saveEgressApi(data).then((resp) => {
  58. let content = '', okPath = '', cancelPath = '/ui/gateway/egress/api';
  59. if (resp.success) {
  60. message.success('保存成功!')
  61. if (this.props.data?.id !== null && this.props.data?.id !== undefined) {
  62. this.props.callback();
  63. return true;
  64. }
  65. if (data.apiType === 'loan') {
  66. content = '是否直接跳转助贷对接流程?'
  67. okPath = '/ui/gateway/egress/loan-integration'
  68. } else {
  69. content = '当前只支持助贷对接流程,是否跳转到API列表页面?'
  70. okPath = '/ui/gateway/egress/api'
  71. }
  72. handleJump(content, okPath, cancelPath, { id: resp.data, from: 'api' });
  73. }
  74. }).catch((err) => {
  75. console.log(err)
  76. return false;
  77. })
  78. }
  79. return (
  80. <ModalForm<UpsertApiModalFormItem>
  81. trigger={this.props.trigger}
  82. title="创建API"
  83. onFinish={
  84. async (value) => {
  85. return handleSubmit({
  86. ...value,
  87. ...{ id: this.props.data?.id }
  88. });
  89. }
  90. }
  91. initialValues={
  92. this.props.data
  93. }
  94. >
  95. <ProForm.Group >
  96. <ProFormText
  97. width="md"
  98. name="apiName"
  99. label="api名称"
  100. placeholder="请输入api名称"
  101. required
  102. />
  103. <ProFormText
  104. width="md"
  105. name="apiCode"
  106. label="api编码"
  107. placeholder="请输入api编码"
  108. required
  109. />
  110. </ProForm.Group>
  111. <ProForm.Group >
  112. <ProFormSelect
  113. name="apiType"
  114. label="API类型"
  115. width="md"
  116. options={
  117. [
  118. {
  119. label: '助贷API',
  120. value: 'loan',
  121. disabled: false,
  122. },
  123. {
  124. label: '产品API',
  125. value: 'product',
  126. disabled: true,
  127. },
  128. {
  129. label: '三方数据API',
  130. value: 'data',
  131. disabled: true,
  132. }
  133. ]
  134. }
  135. placeholder="请选择API类型"
  136. rules={[
  137. {
  138. required: true,
  139. message: '请选择API类型',
  140. },
  141. ]}
  142. />
  143. <ProFormSelect
  144. width="md"
  145. name="techOwnerUserid"
  146. label="技术负责人"
  147. placeholder="请选择技术负责人"
  148. request={handleQuerySysUser}
  149. fieldProps={
  150. {
  151. fieldNames: {
  152. label: 'username',
  153. value: 'id'
  154. }
  155. }
  156. }
  157. required
  158. />
  159. </ProForm.Group>
  160. <ProFormTextArea
  161. name="memo"
  162. label="备注"
  163. placeholder="请输入备注"
  164. />
  165. </ModalForm >
  166. );
  167. }
  168. }
  169. export default UpsertApiModalForm;