完善购买和套餐功能

This commit is contained in:
2026-09-16 17:26:02 +08:00
parent 898dedd75a
commit b48688cbab
19 changed files with 554 additions and 58 deletions
+8
View File
@@ -63,3 +63,11 @@ export function activateProductOrder(id) {
method: "post",
});
}
/** 关闭已开通的单品功能(回收模块权益,可在购买订单中重新开通) */
export function closeProductOrder(id) {
return request({
url: `/platform/product/order/close/${id}`,
method: "post",
});
}