使用Promise封装showModal, 取消时报错
index/index
https://developers.weixin.qq.com/s/zComb3mN71a1
reject 你只抛出了错误
如果错误不catch在控制台就会报错
你这里调用 promise 需要写上 catch
showConfirm(
'请确认'
).then(()=>{
console.log(
'成功'
)
}).
catch
(()=>{
'取消'
})