Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
smart
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
wangqinghua
smart
Commits
c661abcd
Commit
c661abcd
authored
Jan 21, 2019
by
wangqinghua
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
1b846338
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
3 deletions
+10
-3
examine.component.ts
src/main/webapp/app/system/examine/examine.component.ts
+2
-0
inspect-plan.component.html
.../webapp/app/work/inspect-plan/inspect-plan.component.html
+1
-1
inspect-plan.component.ts
...in/webapp/app/work/inspect-plan/inspect-plan.component.ts
+6
-1
work-handle.component.ts
...main/webapp/app/work/work-handle/work-handle.component.ts
+1
-1
No files found.
src/main/webapp/app/system/examine/examine.component.ts
View file @
c661abcd
...
...
@@ -223,9 +223,11 @@ export class ExamineComponent implements OnInit {
search
(){
if
(
this
.
tabNum
==
0
){
this
.
getListNo
();
this
.
pageNoNo
=
1
;
}
if
(
this
.
tabNum
==
1
){
this
.
getListAlready
();
this
.
pageNoAlready
=
1
;
}
}
...
...
src/main/webapp/app/work/inspect-plan/inspect-plan.component.html
View file @
c661abcd
...
...
@@ -40,7 +40,7 @@
<input
type=
"text"
nz-input
[(
ngModel
)]="
obj
.
searchStr
"
placeholder=
"计划名称/负责人"
>
</div>
<div
nz-col
nzSpan=
"2"
>
<button
(
click
)="
getList
()"
nz-button
nzType=
"default"
><i
class=
"anticon anticon-search"
style=
"color: #6097b7"
></i>
搜索
<button
(
click
)="
search
()"
nz-button
nzType=
"default"
><i
class=
"anticon anticon-search"
style=
"color: #6097b7"
></i>
搜索
</button>
</div>
</div>
...
...
src/main/webapp/app/work/inspect-plan/inspect-plan.component.ts
View file @
c661abcd
...
...
@@ -83,6 +83,11 @@ export class InspectPlanComponent implements OnInit {
this
.
getList
();
}
search
(){
this
.
pageNum
=
1
;
this
.
getList
();
}
//新增计划
addPlan
()
{
this
.
smartPlanMoadl
.
showAddModal
();
...
...
@@ -114,7 +119,7 @@ export class InspectPlanComponent implements OnInit {
(
res
)
=>
{
if
(
res
.
errCode
==
10000
)
{
this
.
message
.
success
(
'删除成功'
);
this
.
getList
();
this
.
search
();
}
else
{
this
.
message
.
error
(
res
.
errMsg
);
}
...
...
src/main/webapp/app/work/work-handle/work-handle.component.ts
View file @
c661abcd
...
...
@@ -148,9 +148,9 @@ export class WorkHandleComponent implements OnInit {
//搜索
search
()
{
this
.
pageNum
=
1
;
this
.
obj
.
startTime
=
this
.
datePipe
.
transform
(
this
.
startTime
,
'yyyy-MM-dd HH:mm:ss'
);
this
.
obj
.
endTime
=
this
.
datePipe
.
transform
(
this
.
endTime
,
'yyyy-MM-dd HH:mm:ss'
);
this
.
getList
();
}
}
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