import React from 'react'; import { ModalForm, ProForm, ProFormText } from '@ant-design/pro-components'; import { upsertSmsSign } from '@/services/op-admin/message/sms'; import { message } from 'antd'; /** * @author bianlanzhou * @since 2024-09-24 * @desc 创建/修改modal窗口 */ class UpsertSmsSignatureModalForm extends React.Component { render() { /** 提交方法 */ const handleSubmit = (value: SMS.SignatureUpsertCmd) => { if (this.props.data) { value.id = this.props.data.id; } return upsertSmsSign(value).then(() => { message.success("操作成功!") this.props.callback(); return true; }).catch((err) => { console.log(err) return false; }); } return ( trigger={this.props.trigger} title="短信签名" onFinish={handleSubmit} initialValues={ this.props.data } > ); } } export default UpsertSmsSignatureModalForm;