2.0版本上线

This commit is contained in:
yuanteng 2025-03-23 23:52:46 +08:00
parent 02fcea0225
commit 30dc890c54
3 changed files with 3 additions and 3 deletions

View File

@ -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()

View File

@ -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()

View File

@ -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) {