PayType

选择支付方式 (支付宝+微信)

语法

/**
 * ----------------------------------------
 * @param {String} value
 * @param {String} onChange
 * ----------------------------------------
 */
import PayType from "ynw/antd/PayType/index";

使用

function Modal() {
  return (
    <Form>
      <Item label="选择支付方式" name="payType">
        <PayType />
      </Item>
    </Form>
  );
}