- 交易风险评级在哪里看?如何达到?
调用接口返回 { "isActived": false, "reasons": [], "errcode": 0, "errmsg": "该账号未达到 A交易健康标准 或 B交易风险评级可信,数据每日更新,请持续提升小程序的服务质量和交易情况,达标后可再次开标。", "flag": 2 } 交易风险评级在哪里看?如何达到?
05-17 - 有人遇到过生产中的小程序,无论怎么点击都调用不了后台的接口嘛?
平常都是在正常使用,但是会偶尔出现,页面无论如何点击都不会掉用后台接口,感觉这个小程序变成了一个静态页面一样。点击重新进入小程序又恢复了
04-19 - 有大佬可以看下为啥会出现 一直处于请稍后 界面?
var that = this if (that.data.selectNmae.title == undefined) { wx.showToast({ title: '请选择发货地址', icon: 'none' }) } else { wx.requestSubscribeMessage({ tmplIds: [ 'BrDCzBIK84NA1-FTQoBrB9Tv-oten1g3C2iU' ], success(res) { that.createorder(); }, fail(res) { wx.showToast({ title: res, icon: 'none' }) that.createorder(); }, }) } }, createorder() { var that = this wx.showLoading({ title: '请稍后', }); api.post(createOrder, { createName: that.data.contactname }).then(res => { wx.hideLoading(); wx.requestPayment({ timeStamp: res.data.timeStamp, nonceStr: res.data.nonceStr, package: res.data.packageVal, signType: res.data.signType, paySign: res.data.paySign, appId: res.data.appId, success: function (payres) { api.get(driverEnough).then(res =>{ if(!res.data){ wx.showModal({ title: '系统提示', content: '请稍后', showCancel: false, success(res){ if(res.confirm){ wx.switchTab({ url: '../order/order', }) } } }) } }).catch(err => { console.log(err) }) wx.switchTab({ url: '../order/order', }) }, fail: function (res) { console.log(res) wx.hideLoading(); wx.showToast({ title: '取消支付', icon: 'none' }) } }) }).catch(err => { console.log(err) wx.hideLoading(); }) },
04-19