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 (
{wpProduct.type && applications && (
)}
{
update({ enabled });
}}/>
{
const taxLossRatio = value;
update({ taxLossRatio });
}}/>
{
const refundCompensateRatio = value;
update({ refundCompensateRatio });
}}/>
{
const refundGapDays = value;
update({ refundGapDays });
}}/>
{wpProduct.type === 'mp' &&
{
update({ needReceiving });
}}/>
}
);
}
return null;
}