Commit 310566fe by sunchao

电子签名查询接口

parent a2646e57
...@@ -40,6 +40,7 @@ export class SignatureComponent implements OnInit { ...@@ -40,6 +40,7 @@ export class SignatureComponent implements OnInit {
var eleSign = new EleSign();//实例化对象 var eleSign = new EleSign();//实例化对象
eleSign.init({setBgColor:'#333333'}); //初始化 eleSign.init({setBgColor:'#333333'}); //初始化
eleSign.moutedEle(ele) //将签名节点放入到传入的element节点中 eleSign.moutedEle(ele) //将签名节点放入到传入的element节点中
this.queryWholeInfo(this.hiringBasicInfoId)
} }
next(){ next(){
...@@ -66,7 +67,16 @@ export class SignatureComponent implements OnInit { ...@@ -66,7 +67,16 @@ export class SignatureComponent implements OnInit {
this.myService.saveDigitalSignatures(param).subscribe((res)=>{ this.myService.saveDigitalSignatures(param).subscribe((res)=>{
console.log(res) console.log(res)
if(res['success']){ if(res['success']){
}
})
}
queryWholeInfo(hiringBasicInfoId){
this.myService.queryWholeInfo({hiringBasicInfoId:hiringBasicInfoId}).subscribe((res)=>{
console.log(res)
if(res['success']){
this.imgStr = res['data']['hiringBasicInfo']['personalSignOssPath'];
} }
}) })
} }
......
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