63 lines
1.7 KiB
JavaScript
63 lines
1.7 KiB
JavaScript
|
const app = getApp()
|
||
|
var auth = require('./auth')
|
||
|
var config = require('../config')
|
||
|
|
||
|
function authGET(object){
|
||
|
var that = this;
|
||
|
var authObj = auth.authCodeGenerator;
|
||
|
authObj.updateTimestamp();
|
||
|
wx.request({
|
||
|
method: "GET",
|
||
|
url: config.hostUrl+"/"+object.url,
|
||
|
data: object.data,
|
||
|
header:{
|
||
|
'openid': app.globalData.openid,
|
||
|
'X-Requested-With': '',
|
||
|
'timestamp': authObj.timestamp,
|
||
|
'signed': authObj.signed(app.globalData.openid, app.globalData.token)
|
||
|
},
|
||
|
success: object.success,
|
||
|
fail:object.fail,
|
||
|
});
|
||
|
}
|
||
|
async function authGETALL(object){
|
||
|
var that = this;
|
||
|
var authObj = auth.authCodeGenerator;
|
||
|
authObj.updateTimestamp();
|
||
|
wx.request({
|
||
|
method: "GET",
|
||
|
url: config.hostUrl+"/"+object.url+'/ids',
|
||
|
data: object.data,
|
||
|
header:{
|
||
|
'openid': app.globalData.openid,
|
||
|
'X-Requested-With': '',
|
||
|
'timestamp': authObj.timestamp,
|
||
|
'signed': authObj.signed(app.globalData.openid, app.globalData.token)
|
||
|
},
|
||
|
success: object.success,
|
||
|
fail:object.fail,
|
||
|
});
|
||
|
}
|
||
|
async function authGETDETAIL(object){
|
||
|
var that = this;
|
||
|
var authObj = auth.authCodeGenerator;
|
||
|
authObj.updateTimestamp();
|
||
|
wx.request({
|
||
|
method: "GET",
|
||
|
url: config.hostUrl+"/"+object.url+'/details',
|
||
|
data: object.data,
|
||
|
header:{
|
||
|
'openid': app.globalData.openid,
|
||
|
'X-Requested-With': '',
|
||
|
'timestamp': authObj.timestamp,
|
||
|
'signed': authObj.signed(app.globalData.openid, app.globalData.token)
|
||
|
},
|
||
|
success: object.success,
|
||
|
fail:object.fail,
|
||
|
});
|
||
|
}
|
||
|
module.exports = {
|
||
|
authGET,
|
||
|
authGETALL,
|
||
|
authGETDETAIL,
|
||
|
}
|