Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-convertor-view
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
station
amos-convertor-view
Commits
26ff28d4
Commit
26ff28d4
authored
Sep 21, 2020
by
zhengjiangtao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CSFAS-941【消防指挥】安全执行>隐患排查,巡检点巡检记录页面,按状态/人员/内容查询功能失效(附图)
parent
b597bb79
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
.stylelintignore
.stylelintignore
+1
-0
XJCheckSearch.js
src/view/bizview/xjcheck/XJCheckSearch.js
+13
-1
No files found.
.stylelintignore
View file @
26ff28d4
...
...
@@ -3,3 +3,4 @@ lib
libs
*.js
*.md
*.scss
src/view/bizview/xjcheck/XJCheckSearch.js
View file @
26ff28d4
...
...
@@ -51,7 +51,19 @@ class XJCheckSearch extends Component {
onSelectedChange
=
(
value
,
type
)
=>
{
let
{
searchParam
}
=
this
.
state
;
searchParam
[
type
]
=
value
;
if
(
type
===
'status'
)
{
if
(
'合格'
===
value
)
{
searchParam
[
type
]
=
'1'
;
}
else
if
(
'不合格'
===
value
)
{
searchParam
[
type
]
=
'2'
;
}
else
{
searchParam
[
type
]
=
''
;
}
}
else
if
(
type
===
'userID'
)
{
searchParam
[
type
]
=
value
;
}
this
.
setState
({
searchParam
});
Object
.
assign
(
searchParam
,{
pageNumber
:
0
,
pageSize
:
10
});
searchParam
&&
this
.
props
.
setSearchParam
(
searchParam
);
...
...
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