Result 结果页

在整张页面中组织插画、图标、文字等内容,向用户反馈操作结果。

规则

  • 用作非常重要的操作反馈,如支付成功,无网络状态。

  • 个性化且优美的插画,可以提升品牌形象。

  • 对于错误类型的结果页,页面中需要提供明确的行动点,eg:重新加载。

代码演示

基本

  1. /* eslint global-require: 0 */
  2. import { Result, Icon, WhiteSpace } from 'antd-mobile';
  3. const ResultExample = () => (<div className="result-example">
  4. <div className="sub-title">支付成功</div>
  5. <Result
  6. img={<Icon type={require('./alipay.svg')} className="icon" />}
  7. title="支付成功"
  8. message={<div>998.00 <del>1098元</del></div>}
  9. />
  10. <WhiteSpace />
  11. <div className="sub-title">验证成功</div>
  12. <Result
  13. img={<Icon type="check-circle" className="icon" style={{ fill: '#1F90E6' }} />}
  14. title="验证成功"
  15. message="所提交内容已成功完成验证"
  16. />
  17. <WhiteSpace />
  18. <div className="sub-title">支付失败</div>
  19. <Result
  20. img={<Icon type="cross-circle-o" className="icon" style={{ fill: '#F13642' }} />}
  21. title="支付失败"
  22. message="所选银行卡余额不足"
  23. />
  24. <WhiteSpace />
  25. <div className="sub-title">等待处理</div>
  26. <Result
  27. img={<Icon type={require('./waiting.svg')} className="icon" />}
  28. title="等待处理"
  29. message="已提交申请,等待银行处理"
  30. />
  31. <WhiteSpace />
  32. <div className="sub-title">操作失败</div>
  33. <Result
  34. img={<Icon type={require('./notice.svg')} className="icon" />}
  35. title="无法完成操作"
  36. message="由于你的支付宝账户还未绑定淘宝账户请登请登录www.taobao.com"
  37. />
  38. </div>);
  39. ReactDOM.render(<ResultExample />, mountNode);
  1. .sub-title {
  2. margin-left: 0.3rem;
  3. }
  4. .result-example .icon {
  5. width: 1.2rem;
  6. height: 1.2rem;
  7. }
  8. .sub-title {
  9. color: #888;
  10. font-size: .28rem;
  11. padding: 30px 0 18px 0;
  12. }

Result结果页 - 图1

API

适用平台:WEB、React-Native
属性说明类型默认值
imgUrl插图 urlstring / Image Source(rn)-
img插图元素 (可以为<img src="" />/<Icon type="" />等), 会覆盖 imgUrl 设置React.Element-
titletitle 文案String/React.Element-
messagemessage 文案String/React.Element-
buttonText按钮文案string-
buttonType请参考 button 的配置string-
buttonClick按钮回调函数(e: Object): void-