fix: 控制器故障告警开关显示。

This commit is contained in:
tianyongbao
2026-06-15 13:03:30 +08:00
parent da098f5d5c
commit f5d2c3fa59
6 changed files with 105 additions and 2 deletions

View File

@@ -61,3 +61,15 @@ export const delPayOrder = (id: string | number | Array<string | number>) => {
method: 'delete'
});
};
/**
* 主动向微信确认并修复支付订单
* @param orderId 订单ID
*/
export const confirmPayOrder = (orderId: string | number) => {
return request({
url: '/weixin/pay/confirm_order',
method: 'post',
data: { orderId }
});
};