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
055f9791
Commit
055f9791
authored
Apr 29, 2025
by
ddx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d
parent
c49958f6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
1 deletions
+26
-1
etax-income-server/src/main/webapp/management-query-taxuser-page.html
+17
-0
etax-income-server/src/main/webapp/scripts/management-query-taxuser-page.js
+9
-1
No files found.
etax-income-server/src/main/webapp/management-query-taxuser-page.html
View file @
055f9791
...
...
@@ -62,6 +62,7 @@
<div
class=
"col-sm-4"
>
<select
class=
"form-control"
id=
"userStatus"
>
<option
value=
""
>
请选择
</option>
<option
value=
"1"
>
待审核
</option>
<option
value=
"2"
>
无权限
</option>
<option
value=
"3"
>
正常
</option>
<option
value=
"5"
>
暂停
</option>
...
...
@@ -69,10 +70,26 @@
<option
value=
"9"
>
删除
</option>
</select>
</div>
<label
class=
"col-sm-2 control-label"
>
结束标志:
</label>
<div
class=
"col-sm-4"
>
<select
class=
"form-control"
id=
"overFlag"
>
<option
value=
""
>
请选择
</option>
<option
value=
"0"
>
否
</option>
<option
value=
"1"
>
是
</option>
</select>
</div>
<label
class=
"col-sm-2 control-label"
>
taxno:
</label>
<div
class=
"col-sm-4"
>
<input
class=
"form-control"
id=
"taxno"
value=
""
>
</div>
<label
class=
"col-sm-2 control-label"
>
服务种类:
</label>
<div
class=
"col-sm-4"
>
<input
class=
"form-control"
id=
"loginType"
value=
""
>
</div>
<label
class=
"col-sm-2 control-label"
>
登录名称:
</label>
<div
class=
"col-sm-4"
>
<input
class=
"form-control"
id=
"userGroupName"
value=
""
>
</div>
</div>
</div>
</form>
...
...
etax-income-server/src/main/webapp/scripts/management-query-taxuser-page.js
View file @
055f9791
...
...
@@ -65,6 +65,9 @@ function queryPageList() {
var
areaCode
=
$
(
"#areaCode"
).
val
();
var
taxno
=
$
(
"#taxno"
).
val
();
var
userStatus
=
$
(
"#userStatus"
).
val
();
var
overFlag
=
$
(
"#overFlag"
).
val
();
var
loginType
=
$
(
"#loginType"
).
val
();
var
userGroupName
=
$
(
"#userGroupName"
).
val
();
$
(
'#queryTaxUserTable'
).
bootstrapTable
({
url
:
'jxSample/management/query/taxUser/page'
,
//接口地址
method
:
'post'
,
...
...
@@ -77,6 +80,9 @@ function queryPageList() {
userCode
:
userCode
,
areaCode
:
areaCode
,
userStatus
:
userStatus
,
overFlag
:
overFlag
,
userGroupName
:
userGroupName
,
loginType
:
loginType
,
taxno
:
taxno
};
return
param
;
...
...
@@ -116,7 +122,9 @@ function queryPageList() {
{
field
:
'zone'
,
title
:
'地区'
},
{
field
:
''
,
title
:
'税号状态'
,
formatter
:
function
(
value
,
row
,
index
)
{
var
type
=
row
[
'userStatus'
];
if
(
type
===
'2'
)
{
if
(
type
===
'1'
)
{
return
'待审核'
;
}
else
if
(
type
===
'2'
)
{
return
'无权限'
;
}
else
if
(
type
===
'3'
)
{
return
'正常'
;
...
...
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