发送验证码倒计时组件,基于ant-designButton组件
注意: 该组件已收录在ant-design-plus 该项目归档
- 安装依赖
yarn add @jiumao/rc-send-code
- 使用示例
import React from 'react';
import SendCode from '@jiumao/rc-send-code';
class App extends React.Component {
render() {
return (
<SendCode
onCaptcha={() => { return true; }}
/>
);
}
}
- second 倒计时时长(秒)默认60
- initText 初始化按钮显示文本
- runText 运行时显示文本
- resetText 运行结束后显示文本
- onEnd 倒计时结束执行函数
- onCaptcha 获取验证码执行函数