Commit b947e582 by sunchao

去掉console

parent 98a982a3
...@@ -59,7 +59,6 @@ export class AddTaskComponent implements OnInit { ...@@ -59,7 +59,6 @@ export class AddTaskComponent implements OnInit {
{label: '23:00',value:35},{label: '23:30',value:36}, {label: '23:00',value:35},{label: '23:30',value:36},
{label: '00:00',value:37} {label: '00:00',value:37}
]; ];
// console.log(this.router.getCurrentNavigation().extras.state)
// this.taskInfo = this.router.getCurrentNavigation().extras.state; // this.taskInfo = this.router.getCurrentNavigation().extras.state;
this.taskInfo =JSON.parse(localStorage.getItem('taskInfo')); this.taskInfo =JSON.parse(localStorage.getItem('taskInfo'));
} }
......
...@@ -63,10 +63,8 @@ export class EmployeeBasicInfoComponent implements OnInit { ...@@ -63,10 +63,8 @@ export class EmployeeBasicInfoComponent implements OnInit {
} }
onOk(result: Date) { onOk(result: Date) {
console.log(result)
this.editEmployBasicInfo.practitionerBirthdate = this.currentDateFormat(result, 'yyyy-mm-dd'); this.editEmployBasicInfo.practitionerBirthdate = this.currentDateFormat(result, 'yyyy-mm-dd');
this.showPractitionerBirthdate = result; this.showPractitionerBirthdate = result;
console.log(this.editEmployBasicInfo.practitionerBirthdate)
} }
idTypeChange(e){ idTypeChange(e){
......
...@@ -32,7 +32,6 @@ export class RegisterComponent implements OnInit { ...@@ -32,7 +32,6 @@ export class RegisterComponent implements OnInit {
const title = this.activatedRoute.snapshot.data[0]['title']; const title = this.activatedRoute.snapshot.data[0]['title'];
this.lifeCommonService.setTitle(title); this.lifeCommonService.setTitle(title);
this.hiringBasicInfoId = this.activatedRoute.snapshot.queryParams.hiringBasicInfoId?this.activatedRoute.snapshot.queryParams.hiringBasicInfoId:null; this.hiringBasicInfoId = this.activatedRoute.snapshot.queryParams.hiringBasicInfoId?this.activatedRoute.snapshot.queryParams.hiringBasicInfoId:null;
console.log(this.hiringBasicInfoId)
} }
inputBlur() { inputBlur() {
......
...@@ -49,9 +49,9 @@ export class ApprovalCommentsComponent implements OnInit { ...@@ -49,9 +49,9 @@ export class ApprovalCommentsComponent implements OnInit {
hiringApproveStepsSeq:sessionStorage.getItem('hiringApproveStepsSeq') hiringApproveStepsSeq:sessionStorage.getItem('hiringApproveStepsSeq')
} }
this.myService.hiringApprove(param).subscribe((res)=>{ this.myService.hiringApprove(param).subscribe((res)=>{
if(res['success']){ if(res['success']){
this.openPopInfo('保存成功!'); this.openPopInfo('保存成功!');
sessionStorage.setItem('viewApprovalInfo','1')
setTimeout(() => { setTimeout(() => {
this.router.navigate(['/approval_result_list'],{ queryParams: { hiringBasicInfoId:this.hiringBasicInfoId,approvalIdentity:this.approvalIdentity} }); this.router.navigate(['/approval_result_list'],{ queryParams: { hiringBasicInfoId:this.hiringBasicInfoId,approvalIdentity:this.approvalIdentity} });
}, 3000); }, 3000);
......
...@@ -25,7 +25,6 @@ export class MemberDetailComponent implements OnInit { ...@@ -25,7 +25,6 @@ export class MemberDetailComponent implements OnInit {
this.myService.queryTeamMemberDetail({practitionerId:practitionerId}).subscribe((res)=>{ this.myService.queryTeamMemberDetail({practitionerId:practitionerId}).subscribe((res)=>{
if(res['success']){ if(res['success']){
this.teamMemberList = res['data']['teamMemberDetail']; this.teamMemberList = res['data']['teamMemberDetail'];
console.log(this.teamMemberList)
this.practitionerDeatil = this.teamMemberList.filter((item)=>{ this.practitionerDeatil = this.teamMemberList.filter((item)=>{
return item.practitionerId == this.practitionerId ; return item.practitionerId == this.practitionerId ;
})[0]; })[0];
......
...@@ -106,7 +106,6 @@ export class RecruitingDetailComponent implements OnInit { ...@@ -106,7 +106,6 @@ export class RecruitingDetailComponent implements OnInit {
selectTab(id) { selectTab(id) {
if (this.clickFlag == true) { if (this.clickFlag == true) {
if(id === 4){ if(id === 4){
console.log(this.approveStatus)
if(this.approveStatus == -2 || this.approveStatus == 0){ if(this.approveStatus == -2 || this.approveStatus == 0){
this.openPopInfo(`${this.employQuery.name}已经提交所有报聘信息,不用重复邀请!`) this.openPopInfo(`${this.employQuery.name}已经提交所有报聘信息,不用重复邀请!`)
return; return;
...@@ -679,7 +678,6 @@ export class RecruitingDetailComponent implements OnInit { ...@@ -679,7 +678,6 @@ export class RecruitingDetailComponent implements OnInit {
organizationQuery(){ organizationQuery(){
this.myService.organizationQuery({insurerId: 888}).subscribe((res)=>{ this.myService.organizationQuery({insurerId: 888}).subscribe((res)=>{
console.log(res)
if(res['success']){ if(res['success']){
this.branchList = res['data']['insurerInfoList'][0]['insurerBranchInfoList']; this.branchList = res['data']['insurerInfoList'][0]['insurerBranchInfoList'];
} }
......
...@@ -25,7 +25,6 @@ export class TeamSalesScoreComponent implements OnInit { ...@@ -25,7 +25,6 @@ export class TeamSalesScoreComponent implements OnInit {
this.subordinateSystemName = sessionStorage.getItem('subordinateSystemName'); this.subordinateSystemName = sessionStorage.getItem('subordinateSystemName');
//判断显示销售得分还是销售预测 //判断显示销售得分还是销售预测
this.showType = this.activateRoute.snapshot.paramMap.get('type'); this.showType = this.activateRoute.snapshot.paramMap.get('type');
console.log(this.showType)
if (this.showType === 'teamSalesScore') { if (this.showType === 'teamSalesScore') {
this.queryPEPScore(); this.queryPEPScore();
} }
...@@ -71,7 +70,6 @@ export class TeamSalesScoreComponent implements OnInit { ...@@ -71,7 +70,6 @@ export class TeamSalesScoreComponent implements OnInit {
//战队成员列表 //战队成员列表
queryTeamMemberDetail(){ queryTeamMemberDetail(){
this.myService.queryTeamMemberDetail({practitionerId:this.practitionerId}).subscribe((res)=>{ this.myService.queryTeamMemberDetail({practitionerId:this.practitionerId}).subscribe((res)=>{
console.log(res)
if(res['success']){ if(res['success']){
this.teamMemberList = res['data']['teamMemberDetail']; this.teamMemberList = res['data']['teamMemberDetail'];
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment