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
6cf57813
Commit
6cf57813
authored
May 07, 2026
by
饶来安
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
b2597c40
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
8 deletions
+9
-8
account_detail-long.html
account_detail-long.html
+3
-2
account_detail.html
account_detail.html
+5
-5
account_list.html
account_list.html
+1
-1
pdf_b64.js
data/pdf_b64.js
+0
-0
No files found.
account_detail-long.html
View file @
6cf57813
...
...
@@ -519,10 +519,10 @@ function sendHeight() {
alert
(
"起止日期间隔不能超过365天"
);
if
(
dateId
===
"dateFrom"
)
{
startDate
=
""
;
document
.
getElementById
(
dateId
).
value
=
"
未选择
"
;
document
.
getElementById
(
dateId
).
value
=
""
;
}
else
{
endDate
=
""
;
document
.
getElementById
(
dateId
).
value
=
"
未选择
"
;
document
.
getElementById
(
dateId
).
value
=
""
;
}
const
checkedQuickDate
=
document
.
querySelector
(
'input[name="quickDate"]:checked'
,
...
...
@@ -593,6 +593,7 @@ function sendHeight() {
JSON
.
stringify
(
Object
.
fromEntries
(
formData
.
entries
())),
);
setTimeout
(()
=>
{
window
.
localStorage
.
setItem
(
"dateFrom"
,
startDate
);
window
.
location
.
href
=
"./account_list.html"
;
},
500
);
});
...
...
account_detail.html
View file @
6cf57813
...
...
@@ -522,11 +522,11 @@ function sendHeight() {
* @param {string} endStr - 结束日期,如 20260101
* @returns {boolean}
*/
function
isOver
365
DaysYYYYMMDD
(
startStr
,
endStr
)
{
function
isOver
90
DaysYYYYMMDD
(
startStr
,
endStr
)
{
const
start
=
parseYYYYMMDD
(
startStr
);
const
end
=
parseYYYYMMDD
(
endStr
);
const
diffDays
=
(
end
-
start
)
/
(
1000
*
60
*
60
*
24
);
return
Math
.
abs
(
diffDays
)
>
365
;
return
Math
.
abs
(
diffDays
)
>
90
;
}
let
startDate
=
""
;
...
...
@@ -537,10 +537,10 @@ function sendHeight() {
"handleBlur"
,
startDate
,
endDate
,
isOver
365
DaysYYYYMMDD
(
startDate
,
endDate
),
isOver
90
DaysYYYYMMDD
(
startDate
,
endDate
),
);
if
(
startDate
&&
endDate
&&
isOver
365
DaysYYYYMMDD
(
startDate
,
endDate
))
{
alert
(
"起止日期间隔不能超过
365
天"
);
if
(
startDate
&&
endDate
&&
isOver
90
DaysYYYYMMDD
(
startDate
,
endDate
))
{
alert
(
"起止日期间隔不能超过
90
天"
);
if
(
dateId
===
"dateFrom"
)
{
startDate
=
""
;
document
.
getElementById
(
dateId
).
value
=
""
;
...
...
account_list.html
View file @
6cf57813
...
...
@@ -917,7 +917,7 @@
<!-- 底部按钮组 -->
<div
class=
"btn-group"
>
<button>
电子回执打印/预览
</button>
<button
onclick=
"alert('电子回单功能升级,请稍后再试!')"
>
电子回执打印/预览
</button>
<button
onclick=
"onBack()"
>
返回
</button>
</div>
...
...
data/pdf_b64.js
View file @
6cf57813
This source diff could not be displayed because it is too large. You can
view the blob
instead.
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