Commit 2e28f266 authored by cellee's avatar cellee

Merge branch 'final' of http://120.77.240.215:9701/Maple/tostumi.git into final

parents 03c88b80 390289bb
...@@ -5,25 +5,31 @@ import { connect, history } from 'umi'; ...@@ -5,25 +5,31 @@ import { connect, history } from 'umi';
const module = 'User'; const module = 'User';
const ResultPage = () => { const ResultPage = () => {
const [resultTime, setResultTime] = useState(3); const [resultTime, setResultTime] = useState(3);
let timer: NodeJS.Timeout;
function loop(i: number) { function loop(i: number) {
if (i < 4) { setResultTime(i);
console.log(i); timer = setInterval(() => {
if (i <= 0) {
setResultTime(4 - i); clearInterval(timer);
setTimeout(function () { history.go(-1);
loop(++i); return;
}, 1000); }
} else { setResultTime(--i);
setResultTime(0); }, 1000);
history.go(-1);
}
} }
useEffect(() => { useEffect(() => {
loop(1); loop(3);
return () => {
clearInterval(timer);
};
}, []); }, []);
const backPage = () => {};
const backPage = () => {
clearTimeout(timer);
history.go(-1);
};
return ( return (
<div style={{ width: '100%', minWidth: 1020, padding: 34, backgroundColor: '#ffffff' }}> <div style={{ width: '100%', minWidth: 1020, padding: 34, backgroundColor: '#ffffff' }}>
<Result <Result
...@@ -36,9 +42,9 @@ const ResultPage = () => { ...@@ -36,9 +42,9 @@ const ResultPage = () => {
</p> </p>
} }
extra={[ extra={[
<Button type="primary" key="ok" onClick={backPage}> // <Button type="primary" key="ok" onClick={backPage}>
Ok // Ok
</Button>, // </Button>,
<Button key="back" onClick={backPage}> <Button key="back" onClick={backPage}>
Back Back
</Button>, </Button>,
......
...@@ -254,13 +254,14 @@ const ServiceProviderManagement = (props: propsType) => { ...@@ -254,13 +254,14 @@ const ServiceProviderManagement = (props: propsType) => {
{ {
name: ['status', 'Services Available'], name: ['status', 'Services Available'],
data: [...options], data: [...options],
default: readyData.serviceScope || undefined,
}, },
]} ]}
community="serviceCommunityList" community="serviceCommunityList"
onSubmit={CallBackTitleSearch} onSubmit={CallBackTitleSearch}
defaultValue={{ defaultValue={{
providerName: readyData.providerName, providerName: readyData.providerName,
// status:, // status: readyData.serviceScope,
}} }}
checklist={ checklist={
readyData.serviceCommunityList.length !== 0 ? readyData.serviceCommunityList : null readyData.serviceCommunityList.length !== 0 ? readyData.serviceCommunityList : null
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment