UpsertSmsSignatureModalForm.tsx 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. import React from 'react';
  2. import { ModalForm, ProForm, ProFormText } from '@ant-design/pro-components';
  3. import { upsertSmsSign } from '@/services/op-admin/message/sms';
  4. import { message } from 'antd';
  5. /**
  6. * @author bianlanzhou
  7. * @since 2024-09-24
  8. * @desc 创建/修改modal窗口
  9. */
  10. class UpsertSmsSignatureModalForm extends React.Component<UpsertSmsSignatureModalFormProp> {
  11. render() {
  12. /** 提交方法 */
  13. const handleSubmit = (value: SMS.SignatureUpsertCmd) => {
  14. if (this.props.data) {
  15. value.id = this.props.data.id;
  16. }
  17. return upsertSmsSign(value).then(() => {
  18. message.success("操作成功!")
  19. this.props.callback();
  20. return true;
  21. }).catch((err) => {
  22. console.log(err)
  23. return false;
  24. });
  25. }
  26. return (
  27. <ModalForm<SMS.SignatureUpsertCmd>
  28. trigger={this.props.trigger}
  29. title="短信签名"
  30. onFinish={handleSubmit}
  31. initialValues={
  32. this.props.data
  33. }
  34. >
  35. <ProForm.Group >
  36. <ProFormText
  37. width="md"
  38. name="signatureName"
  39. label="签名名称"
  40. rules={[
  41. {
  42. required: true,
  43. message: '请填写签名名称',
  44. },
  45. ]}
  46. placeholder="请填写签名名称"
  47. required
  48. />
  49. <ProFormText
  50. width="md"
  51. name="signatureContent"
  52. label="签名内容"
  53. rules={[
  54. {
  55. required: true,
  56. message: '请填写签名内容',
  57. },
  58. ]}
  59. placeholder="请填写签名内容"
  60. required
  61. />
  62. </ProForm.Group>
  63. </ModalForm >
  64. );
  65. }
  66. }
  67. export default UpsertSmsSignatureModalForm;