Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
ydLife
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
Sweet Zhang
ydLife
Commits
b947e582
Commit
b947e582
authored
Jan 28, 2021
by
sunchao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
去掉console
parent
98a982a3
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
1 additions
and
10 deletions
+1
-10
src/app/my/add-task/add-task.component.ts
+0
-1
src/app/my/application-process/employee-basic-info/employee-basic-info.component.ts
+0
-2
src/app/my/application-process/register/register.component.ts
+0
-1
src/app/my/approval-comments/approval-comments.component.ts
+1
-1
src/app/my/member-detail/member-detail.component.ts
+0
-1
src/app/my/recruiting-detail/recruiting-detail.component.ts
+0
-2
src/app/my/team-sales-score/team-sales-score.component.ts
+0
-2
No files found.
src/app/my/add-task/add-task.component.ts
View file @
b947e582
...
...
@@ -59,7 +59,6 @@ export class AddTaskComponent implements OnInit {
{
label
:
'23:00'
,
value
:
35
},{
label
:
'23:30'
,
value
:
36
},
{
label
:
'00:00'
,
value
:
37
}
];
// console.log(this.router.getCurrentNavigation().extras.state)
// this.taskInfo = this.router.getCurrentNavigation().extras.state;
this
.
taskInfo
=
JSON
.
parse
(
localStorage
.
getItem
(
'taskInfo'
));
}
...
...
src/app/my/application-process/employee-basic-info/employee-basic-info.component.ts
View file @
b947e582
...
...
@@ -63,10 +63,8 @@ export class EmployeeBasicInfoComponent implements OnInit {
}
onOk
(
result
:
Date
)
{
console
.
log
(
result
)
this
.
editEmployBasicInfo
.
practitionerBirthdate
=
this
.
currentDateFormat
(
result
,
'yyyy-mm-dd'
);
this
.
showPractitionerBirthdate
=
result
;
console
.
log
(
this
.
editEmployBasicInfo
.
practitionerBirthdate
)
}
idTypeChange
(
e
){
...
...
src/app/my/application-process/register/register.component.ts
View file @
b947e582
...
...
@@ -32,7 +32,6 @@ export class RegisterComponent implements OnInit {
const
title
=
this
.
activatedRoute
.
snapshot
.
data
[
0
][
'title'
];
this
.
lifeCommonService
.
setTitle
(
title
);
this
.
hiringBasicInfoId
=
this
.
activatedRoute
.
snapshot
.
queryParams
.
hiringBasicInfoId
?
this
.
activatedRoute
.
snapshot
.
queryParams
.
hiringBasicInfoId
:
null
;
console
.
log
(
this
.
hiringBasicInfoId
)
}
inputBlur
()
{
...
...
src/app/my/approval-comments/approval-comments.component.ts
View file @
b947e582
...
...
@@ -49,9 +49,9 @@ export class ApprovalCommentsComponent implements OnInit {
hiringApproveStepsSeq
:
sessionStorage
.
getItem
(
'hiringApproveStepsSeq'
)
}
this
.
myService
.
hiringApprove
(
param
).
subscribe
((
res
)
=>
{
if
(
res
[
'success'
]){
this
.
openPopInfo
(
'保存成功!'
);
sessionStorage
.
setItem
(
'viewApprovalInfo'
,
'1'
)
setTimeout
(()
=>
{
this
.
router
.
navigate
([
'/approval_result_list'
],{
queryParams
:
{
hiringBasicInfoId
:
this
.
hiringBasicInfoId
,
approvalIdentity
:
this
.
approvalIdentity
}
});
},
3000
);
...
...
src/app/my/member-detail/member-detail.component.ts
View file @
b947e582
...
...
@@ -25,7 +25,6 @@ export class MemberDetailComponent implements OnInit {
this
.
myService
.
queryTeamMemberDetail
({
practitionerId
:
practitionerId
}).
subscribe
((
res
)
=>
{
if
(
res
[
'success'
]){
this
.
teamMemberList
=
res
[
'data'
][
'teamMemberDetail'
];
console
.
log
(
this
.
teamMemberList
)
this
.
practitionerDeatil
=
this
.
teamMemberList
.
filter
((
item
)
=>
{
return
item
.
practitionerId
==
this
.
practitionerId
;
})[
0
];
...
...
src/app/my/recruiting-detail/recruiting-detail.component.ts
View file @
b947e582
...
...
@@ -106,7 +106,6 @@ export class RecruitingDetailComponent implements OnInit {
selectTab
(
id
)
{
if
(
this
.
clickFlag
==
true
)
{
if
(
id
===
4
){
console
.
log
(
this
.
approveStatus
)
if
(
this
.
approveStatus
==
-
2
||
this
.
approveStatus
==
0
){
this
.
openPopInfo
(
`
${
this
.
employQuery
.
name
}
已经提交所有报聘信息,不用重复邀请!`
)
return
;
...
...
@@ -679,7 +678,6 @@ export class RecruitingDetailComponent implements OnInit {
organizationQuery
(){
this
.
myService
.
organizationQuery
({
insurerId
:
888
}).
subscribe
((
res
)
=>
{
console
.
log
(
res
)
if
(
res
[
'success'
]){
this
.
branchList
=
res
[
'data'
][
'insurerInfoList'
][
0
][
'insurerBranchInfoList'
];
}
...
...
src/app/my/team-sales-score/team-sales-score.component.ts
View file @
b947e582
...
...
@@ -25,7 +25,6 @@ export class TeamSalesScoreComponent implements OnInit {
this
.
subordinateSystemName
=
sessionStorage
.
getItem
(
'subordinateSystemName'
);
//判断显示销售得分还是销售预测
this
.
showType
=
this
.
activateRoute
.
snapshot
.
paramMap
.
get
(
'type'
);
console
.
log
(
this
.
showType
)
if
(
this
.
showType
===
'teamSalesScore'
)
{
this
.
queryPEPScore
();
}
...
...
@@ -71,7 +70,6 @@ export class TeamSalesScoreComponent implements OnInit {
//战队成员列表
queryTeamMemberDetail
(){
this
.
myService
.
queryTeamMemberDetail
({
practitionerId
:
this
.
practitionerId
}).
subscribe
((
res
)
=>
{
console
.
log
(
res
)
if
(
res
[
'success'
]){
this
.
teamMemberList
=
res
[
'data'
][
'teamMemberDetail'
];
}
...
...
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