2.0版本上线
This commit is contained in:
parent
02fcea0225
commit
30dc890c54
|
@ -123,7 +123,7 @@ const showDetail = (row: any) => {
|
|||
const changeOrderStatus = async (row: any) => { //改变订单状态
|
||||
const res = await myAxios.post('/advanceOrder/update/orderStatus',{
|
||||
id: row.id,
|
||||
orderStatus: '交易完成'
|
||||
orderStatus: '交易成功'
|
||||
})
|
||||
if(res.data.code === 1) {
|
||||
await getOrderList()
|
||||
|
|
|
@ -141,7 +141,7 @@ const cancelOrder = async () => { //取消订单方法
|
|||
}
|
||||
}
|
||||
const refund = async () => { //退款方法
|
||||
const res = await myAxios.post('/wechat/refund/photo/create', { id: route.params.id })
|
||||
const res = await myAxios.post('/wechat/refund/clothesRent/create', { id: route.params.id })
|
||||
if (res.data.code === 1) {
|
||||
SuccessInfo('退款成功')
|
||||
getOrderItem()
|
||||
|
|
|
@ -160,7 +160,7 @@ const changeOrderStatus = async (row: any, msg : string) => { //改变订单
|
|||
const deleteOrder = async (row: any) => { //微信退款
|
||||
loading.value = true
|
||||
console.log('row-->', row)
|
||||
const res = await myAxios.post('/wechat/refund/create', { id: row.id }) //传入订单号取消订单并退款
|
||||
const res = await myAxios.post('/wechat/refund/clothesRent/create', { id: row.id }) //传入订单号取消订单并退款
|
||||
console.log(res)
|
||||
setTimeout(() => {
|
||||
if (res.data.code === 1) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user