- 需求的场景描述(希望解决的问题)
- 希望提供的能力
orderRevoke: function(e) {
var a = this;
wx.showModal({
title: "提示",
content: "是否取消该订单?",
cancelText: "否",
confirmText: "是",
success: function(t) {
if (t.cancel) return !0;
t.confirm && (wx.showLoading({
title: "操作中"
}), app.request({
url: api.order.revoke,
data: {
order_id: e.currentTarget.dataset.id
},
success: function(t) {
wx.hideLoading(), wx.showModal({
title: "提示",
content: t.msg,
showCancel: !1,
success: function(t) {
t.confirm && a.loadOrderList(a.data.status);
}
});
}
}));
}
});
},
你好,请在复现问题的时候上传一下日志:我->设置->帮助与反馈右上角有个上报日志的入口
提供一下出现问题的微信号,出现问题的时间点(精确到分钟)
请问这个有什么特定的复现路径么?这边一直无法复现问题
麻烦提供一下复现视频
还有代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
遇到了同样的问题(这代码逻辑居然也一样),机型是 ip6sp,系统是ios 12.3.1, 微信版本7.0.4 必定重现。
其他机型没发现有这个问题。
有没有其他报错信息,看一下是否其他问题导致