下单退款相关更新

This commit is contained in:
GaoHao
2025-03-15 18:30:27 +08:00
parent c2135c6119
commit 994cf8bf2b
54 changed files with 682 additions and 2408 deletions

View File

@@ -192,3 +192,31 @@ export function stockReportDamage(data, urlType = 'product') {
}
})
}
/**
* 耗材库存变动记录
* @returns
*/
export function stockFlow(data, urlType = 'product') {
return request({
url: `${urlType}/admin/product/stock/flow`,
method: "GET",
data: {
...data
}
})
}
/**
* 耗材统计
* @returns
*/
export function consStatistics(data, urlType = 'product') {
return request({
url: `${urlType}/admin/product/cons/statistics`,
method: "GET",
data: {
...data
}
})
}

View File

@@ -84,3 +84,17 @@ export function vipPay(data, urlType = 'order') {
}
})
}
/**
* 查询订单状态
* @returns
*/
export function queryOrderStatus(data, urlType = 'order') {
return request({
url: `${urlType}/pay/queryOrderStatus`,
method: "GET",
data: {
...data
}
})
}