23 lines
637 B
JavaScript
23 lines
637 B
JavaScript
const app = getApp()
|
|
var auth = require('./auth')
|
|
var config = require('../config')
|
|
|
|
async function authDELETE(object){
|
|
var that = this;
|
|
var authObj = auth.authCodeGenerator;
|
|
authObj.updateTimestamp();
|
|
wx.request({
|
|
method: "POST",
|
|
url: config.hostUrl+"/"+object.url+"/delete",
|
|
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 = {authDELETE} |