Commit d6076472 by Sweet Zhang

解决积分兑换没有传时间段的问题

parent 95f0ce8e
...@@ -20,7 +20,7 @@ export class IntegrationDetailComponent implements OnInit { ...@@ -20,7 +20,7 @@ export class IntegrationDetailComponent implements OnInit {
} }
queryLists(status){ queryLists(status){
this.status = status; this.status = status;
this.queryPractitionerIntegralList(null,null,this.status); this.queryPractitionerIntegralList(this.lifeCommonService.dateFormat(this.searchDateFormat,'yyyy-MM-01'),this.lifeCommonService.dateFormat(this.searchDateEndFormat,'yyyy-MM-dd'),this.status);
} }
queryPractitionerIntegralList(queryDateStart=null,queryDateEnd=null,queryStatus=1){ queryPractitionerIntegralList(queryDateStart=null,queryDateEnd=null,queryStatus=1){
this.myService.queryPractitionerIntegralList({queryStatus:queryStatus,practitionerId:localStorage.getItem('lifeCustomerInfo')?JSON.parse(localStorage.getItem('lifeCustomerInfo'))['practitionerId']:null,queryDateStart:queryDateStart,queryDateEnd:queryDateEnd}).subscribe(res=>{ this.myService.queryPractitionerIntegralList({queryStatus:queryStatus,practitionerId:localStorage.getItem('lifeCustomerInfo')?JSON.parse(localStorage.getItem('lifeCustomerInfo'))['practitionerId']:null,queryDateStart:queryDateStart,queryDateEnd:queryDateEnd}).subscribe(res=>{
......
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