Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
TOSTUMI
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Maple
TOSTUMI
Commits
c61d5e45
Commit
c61d5e45
authored
Mar 05, 2021
by
Sixiang_Zzb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
批量上传成功后倒计时bug修复
parent
23a3e560
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
17 deletions
+23
-17
ResultPage.tsx
src/pages/UserManagement/LIFEUserManagement/ResultPage.tsx
+23
-17
No files found.
src/pages/UserManagement/LIFEUserManagement/ResultPage.tsx
View file @
c61d5e45
...
...
@@ -5,25 +5,31 @@ import { connect, history } from 'umi';
const
module
=
'User'
;
const
ResultPage
=
()
=>
{
const
[
resultTime
,
setResultTime
]
=
useState
(
3
);
let
timer
:
NodeJS
.
Timeout
;
function
loop
(
i
:
number
)
{
if
(
i
<
4
)
{
console
.
log
(
i
);
setResultTime
(
4
-
i
);
setTimeout
(
function
()
{
loop
(
++
i
);
},
1000
);
}
else
{
setResultTime
(
0
);
setResultTime
(
i
);
timer
=
setInterval
(()
=>
{
if
(
i
<=
0
)
{
clearInterval
(
timer
);
history
.
go
(
-
1
);
return
;
}
setResultTime
(
--
i
);
},
1000
);
}
useEffect
(()
=>
{
loop
(
1
);
loop
(
3
);
return
()
=>
{
clearInterval
(
timer
);
};
},
[]);
const
backPage
=
()
=>
{};
const
backPage
=
()
=>
{
clearTimeout
(
timer
);
history
.
go
(
-
1
);
};
return
(
<
div
style=
{
{
width
:
'100%'
,
minWidth
:
1020
,
padding
:
34
,
backgroundColor
:
'#ffffff'
}
}
>
<
Result
...
...
@@ -36,9 +42,9 @@ const ResultPage = () => {
</
p
>
}
extra=
{
[
<
Button
type=
"primary"
key=
"ok"
onClick=
{
backPage
}
>
Ok
</
Button
>,
//
<Button type="primary" key="ok" onClick=
{
backPage
}
>
//
Ok
//
</Button>,
<
Button
key=
"back"
onClick=
{
backPage
}
>
Back
</
Button
>,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment