From 5939e645da0bf72cb68d3d19bb6fbaba68f02ff9 Mon Sep 17 00:00:00 2001 From: 涂煌豪 <tuhuanghao@prec-tech.com> Date: 星期六, 07 五月 2022 13:48:15 +0800 Subject: [PATCH] 【委托】中山医院服务合同设备清单排版调整 --- force-app/main/default/aura/NewAgencyContact/NewAgencyContactHelper.js | 35 ++++------------------------------- 1 files changed, 4 insertions(+), 31 deletions(-) diff --git a/force-app/main/default/aura/NewAgencyContact/NewAgencyContactHelper.js b/force-app/main/default/aura/NewAgencyContact/NewAgencyContactHelper.js index e3d4714..9ca0c00 100644 --- a/force-app/main/default/aura/NewAgencyContact/NewAgencyContactHelper.js +++ b/force-app/main/default/aura/NewAgencyContact/NewAgencyContactHelper.js @@ -25,24 +25,10 @@ payloadForNewPI = JSON.stringify(data); } - fetch(postURL, { - method: 'POST', - body: payloadForNewPI, - headers: { - 'Content-Type': 'application/json', - 'pi-token': token - } - }).then((data) => { - console.log('data=' + JSON.stringify(data)); - return data.json(); - }).then((result) => { + AWSService.post(postURL,payloadForNewPI,function(result) { //this.insertCalloutLog(this.insertModule,postURL,JSON.stringify(payloadForNewPI),JSON.stringify(result),this.successStatus); if(callback) callback(result); - }).catch(error => { - console.log('error'); - //this.insertCalloutLog(this.insertModule,postURL,JSON.stringify(payloadForNewPI),JSON.stringify(error),this.failStatus); - console.log(error); - }); + },token); }, AwsGet : function(url, data ,callback,token){ @@ -56,22 +42,9 @@ } } - fetch(url, { - method: 'GET', - headers: { - 'Content-Type': 'application/json', - 'pi-token': token - } - }).then((data) => { - console.log('data=' + JSON.stringify(data)); - return data.json(); - }).then((result) => { + AWSService.get(url,function(result){ //this.insertCalloutLog(this.insertModule,postURL,JSON.stringify(payloadForNewPI),JSON.stringify(result),this.successStatus); if(callback) callback(result); - }).catch(error => { - console.log('error'); - //this.insertCalloutLog(this.insertModule,postURL,JSON.stringify(payloadForNewPI),JSON.stringify(error),this.failStatus); - console.log(error); - }); + },token); } }) \ No newline at end of file -- Gitblit v1.9.1