import React from 'react'; import { Form, Switch, InputNumber, Select } from 'antd'; export default function render(props) { const { wpProduct, applications, oakFullpath, systemId } = props.data; const { t, update } = props.methods; if (wpProduct) { return (
({ label: ele.name, value: ele.id, }))} onSelect={(value) => update({ applicationId: value })}/> )} { update({ enabled }); }}/> { const taxLossRatio = value; update({ taxLossRatio }); }}/> { const refundCompensateRatio = value; update({ refundCompensateRatio }); }}/> { const refundGapDays = value; update({ refundGapDays }); }}/> {wpProduct.type === 'mp' && { update({ needReceiving }); }}/> }
); } return null; }