分享朋友圈调整

This commit is contained in:
唐明明
2023-09-14 09:25:37 +08:00
parent 510cbeb181
commit 0dcf23bfde
43 changed files with 458 additions and 219 deletions

View File

@@ -20,8 +20,6 @@ Page({
})
wx.$api.refund.refundPreposition(options.id).then(res => {
let { title, order } = res.data;
console.log(order)
console.log(title)
this.setData({
title,
order,
@@ -34,7 +32,9 @@ Page({
* 选择退货理由
*/
onRadio(e){
console.log(e.detail.value)
this.setData({
titleVal: e.detail.value
})
},
/**
* 选择图片上传
@@ -65,6 +65,7 @@ Page({
mask : true
})
wx.$api.refund.submitRefund(this.data.order.order_no, data).then(res => {
wx.hideLoading()
wx.showModal({
title : '提示',
content : res.data,
@@ -77,6 +78,6 @@ Page({
wx.hideLoading()
}
})
})
}).catch(err => {})
}
})