Changes
This commit is contained in:
parent
536c0ff19f
commit
8159296f3c
|
@ -214,8 +214,11 @@ const getOrderList = async () => {
|
||||||
console.log(tableData.value)
|
console.log(tableData.value)
|
||||||
tableData.value.forEach((item: any) => {
|
tableData.value.forEach((item: any) => {
|
||||||
let total = 0;
|
let total = 0;
|
||||||
for (var i = 0; i < item.pendingServiceOrderVOList.length; i++) {
|
for (var i = 0; i < item.pendingServiceOrderVOList.length; i ++ ) {
|
||||||
total += item.pendingServiceOrderVOList[i].quantity;
|
let tempItem = item.pendingServiceOrderVOList[i].orderItemStatus
|
||||||
|
if (tempItem !== '交易关闭' && tempItem !== '已退款') {
|
||||||
|
total += item.pendingServiceOrderVOList[i].quantity;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
item.currentNumber = total
|
item.currentNumber = total
|
||||||
})
|
})
|
||||||
|
@ -265,18 +268,18 @@ const deliverGoods = async () => { //发货方法
|
||||||
}
|
}
|
||||||
shipments.value = false;
|
shipments.value = false;
|
||||||
}
|
}
|
||||||
const refundOrder = async (row: any) => { //微信退款
|
const refundOrder = async (row : any) => { //微信退款
|
||||||
loading.value = true
|
loading.value = true
|
||||||
console.log('row-->', row)
|
console.log('row-------------------------------------------------------------------------------------------------------------------------------->',row)
|
||||||
const res = await myAxios.post('/wechat/refund/create', { id: row.orderItemId }) //传入订单号取消订单并退款
|
const res = await myAxios.post('/wechat/refund/part/create', { id: row.orderItemId }) //传入订单号取消订单并退款
|
||||||
console.log(res)
|
console.log(res)
|
||||||
setTimeout(() => {
|
if(res.data.code === 1) {
|
||||||
if (res.data.code === 1) {
|
setTimeout(() => {
|
||||||
SuccessInfo('退款成功')
|
SuccessInfo('退款成功')
|
||||||
getOrderList()
|
getOrderList()
|
||||||
loading.value = false
|
loading.value = false
|
||||||
}
|
}, 5000)
|
||||||
}, 2000)
|
}
|
||||||
}
|
}
|
||||||
const reset = () => { //重置搜索框
|
const reset = () => { //重置搜索框
|
||||||
goodId.value = ''
|
goodId.value = ''
|
||||||
|
@ -318,4 +321,5 @@ const cancelOrder = async (row: any) => { //取消订单的方法(未支付能
|
||||||
font-family: 'Arial', sans-serif;
|
font-family: 'Arial', sans-serif;
|
||||||
/* 设置字体 */
|
/* 设置字体 */
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
Loading…
Reference in New Issue
Block a user