Commit b947e582 by sunchao

去掉console

parent 98a982a3
......@@ -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'));
}
......
......@@ -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){
......
......@@ -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() {
......
......@@ -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);
......
......@@ -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];
......
......@@ -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'];
}
......
......@@ -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'];
}
......
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