Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
buildbank-replica
Project
Project
Details
Activity
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
姚珂
buildbank-replica
Commits
c1585d8c
Commit
c1585d8c
authored
Apr 30, 2026
by
黄同智
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复bug
parent
8d3eee9c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
account_detail.html
account_detail.html
+3
-2
No files found.
account_detail.html
View file @
c1585d8c
...
@@ -498,10 +498,10 @@
...
@@ -498,10 +498,10 @@
alert
(
'起止日期间隔不能超过365天'
);
alert
(
'起止日期间隔不能超过365天'
);
if
(
dateId
===
'dateFrom'
)
{
if
(
dateId
===
'dateFrom'
)
{
startDate
=
''
;
startDate
=
''
;
document
.
getElementById
(
dateId
).
value
=
'
未选择
'
;
document
.
getElementById
(
dateId
).
value
=
''
;
}
else
{
}
else
{
endDate
=
''
;
endDate
=
''
;
document
.
getElementById
(
dateId
).
value
=
'
未选择
'
;
document
.
getElementById
(
dateId
).
value
=
''
;
}
}
const
checkedQuickDate
=
document
.
querySelector
(
'input[name="quickDate"]:checked'
);
const
checkedQuickDate
=
document
.
querySelector
(
'input[name="quickDate"]:checked'
);
checkedQuickDate
&&
(
checkedQuickDate
.
checked
=
false
);
checkedQuickDate
&&
(
checkedQuickDate
.
checked
=
false
);
...
@@ -555,6 +555,7 @@
...
@@ -555,6 +555,7 @@
// 方式1:使用 FormData 自动搜集
// 方式1:使用 FormData 自动搜集
const
formData
=
new
FormData
(
form
);
const
formData
=
new
FormData
(
form
);
localStorage
.
setItem
(
'accountQueryParams'
,
JSON
.
stringify
(
Object
.
fromEntries
(
formData
.
entries
())));
setTimeout
(()
=>
{
setTimeout
(()
=>
{
window
.
localStorage
.
setItem
(
'dateFrom'
,
startDate
);
window
.
localStorage
.
setItem
(
'dateFrom'
,
startDate
);
window
.
location
.
href
=
'./account_list.html'
;
window
.
location
.
href
=
'./account_list.html'
;
...
...
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