Commit 441e3545 by 高淑倩

订单_确认收货_toast

parent 0a251873
......@@ -91,7 +91,18 @@ if(currentIndex == 5){
const { result, data } = res.data
if (result == 0) {
wx.hideLoading()
this.initOrderList(this.data.pageNo, this.data.pageSize, this.data.trade)
wx.showToast({
title: `您已确认收货!`,
icon: 'none'
})
setTimeout(() => {
this.initOrderList(this.data.pageNo, this.data.pageSize, this.data.trade)
}, 200)
} else {
wx.showToast({
title: `确认收货失败!`,
icon: 'none'
})
}
}
})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment