01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
|
wx.request({
url: 'http://route.showapi.com/', // 调用接口
data: {
showapi_appid: '//用户名',
showapi_sign: '//密匙',
code: res.result
},
header: { 'content-type': 'application/x-www-form-urlencoded' },
method: 'get',
success: function (res) {
wx.hideLoading()
console.log(res.data)
that.setData({
barcodeData: res.data.data
}),
wx.showToast({
title: '扫描成功请稍等',
icon: 'success',
duration: 500
});
}
})
|