Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
etax-income-api
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
caoxiaohong
etax-income-api
Commits
de0cfb88
Commit
de0cfb88
authored
Apr 24, 2025
by
ddx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加查询时间
parent
927b3bff
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
etax-income-server/src/main/webapp/management-query-income-page.html
+1
-1
etax-income-server/src/main/webapp/scripts/management-query-income-page.js
+4
-4
No files found.
etax-income-server/src/main/webapp/management-query-income-page.html
View file @
de0cfb88
...
@@ -96,7 +96,7 @@
...
@@ -96,7 +96,7 @@
</div>
</div>
<label
class=
"col-sm-2 control-label"
>
requestTime:
</label>
<label
class=
"col-sm-2 control-label"
>
requestTime:
</label>
<div
class=
"col-sm-4"
>
<div
class=
"col-sm-4"
>
<input
class=
"form-control"
id=
"startDate"
size=
"1
0"
placeholder=
"yyyy-MM-dd"
onClick=
"WdatePicker({el:this,dateFmt:'yyyy-MM-dd'})"
>
-
<input
class=
"form-control"
id=
"endDate"
size=
"10"
placeholder=
"yyyy-MM-dd"
onClick=
"WdatePicker({el:this,dateFmt:'yyyy-MM-dd
'})"
>
<input
class=
"form-control"
id=
"startDate"
size=
"1
2"
placeholder=
"yyyy-MM-dd HH:mm:ss"
onClick=
"WdatePicker({el:this,dateFmt:'yyyy-MM-dd HH:mm:ss'})"
>
-
<input
class=
"form-control"
id=
"endDate"
size=
"12"
placeholder=
"yyyy-MM-dd HH:mm:ss"
onClick=
"WdatePicker({el:this,dateFmt:'yyyy-MM-dd HH:mm:ss
'})"
>
</div>
</div>
<label
class=
"col-sm-2 control-label"
>
elapsedMillis:
</label>
<label
class=
"col-sm-2 control-label"
>
elapsedMillis:
</label>
<div
class=
"col-sm-10"
>
<div
class=
"col-sm-10"
>
...
...
etax-income-server/src/main/webapp/scripts/management-query-income-page.js
View file @
de0cfb88
...
@@ -22,8 +22,8 @@ function queryPageList() {
...
@@ -22,8 +22,8 @@ function queryPageList() {
var
itype
=
$
(
"#itype"
).
val
();
var
itype
=
$
(
"#itype"
).
val
();
var
resCode
=
$
(
"#resCode"
).
val
();
var
resCode
=
$
(
"#resCode"
).
val
();
var
resMsg
=
$
(
"#resMsg"
).
val
();
var
resMsg
=
$
(
"#resMsg"
).
val
();
var
startDateTime
=
$
(
"#startDate"
).
val
()
+
" 00:00:00"
;
var
startDateTime
=
$
(
"#startDate"
).
val
();
var
endDateTime
=
$
(
"#endDate"
).
val
()
+
" 23:59:59"
;
var
endDateTime
=
$
(
"#endDate"
).
val
();
var
startElapsedMillis
=
$
(
"#startElapsedMillis"
).
val
();
var
startElapsedMillis
=
$
(
"#startElapsedMillis"
).
val
();
var
endElapsedMillis
=
$
(
"#endElapsedMillis"
).
val
();
var
endElapsedMillis
=
$
(
"#endElapsedMillis"
).
val
();
$
(
'#queryApplyTable'
).
bootstrapTable
({
$
(
'#queryApplyTable'
).
bootstrapTable
({
...
@@ -107,10 +107,10 @@ function initDate() {
...
@@ -107,10 +107,10 @@ function initDate() {
var
startDate
=
$
(
"#startDate"
).
val
();
var
startDate
=
$
(
"#startDate"
).
val
();
var
endDate
=
$
(
"#endDate"
).
val
();
var
endDate
=
$
(
"#endDate"
).
val
();
if
(
startDate
===
''
)
{
if
(
startDate
===
''
)
{
$
(
"#startDate"
).
val
(
get
Today
(
));
$
(
"#startDate"
).
val
(
get
PastNHours
(
1
));
}
}
if
(
endDate
===
''
)
{
if
(
endDate
===
''
)
{
$
(
"#endDate"
).
val
(
get
Today
(
));
$
(
"#endDate"
).
val
(
get
PastNHours
(
-
1
));
}
}
}
}
...
...
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