import React, { useState } from 'react'; import { Form, Input, Button, Space } from 'antd'; import Style from './web.pc.module.less'; import OnUser from '../onUser/index'; export default function Render(props) { const { mobileValue, mobileValueReady, relations, entity, entityId, userId, oakFullpath, oakExecutable, legal, isNew, passwordRequired, } = props.data; const { onConfirm, onMobileChange, onReset, t } = props.methods; const [passwordConfirm, setPasswordConfirm] = useState(true); return (
{ const strValue = e.target.value; onMobileChange(strValue); }} placeholder="请输入手机号码" type="tel"/>
{mobileValueReady && ()}
); }