hookehuyr

fix: 在获取订单列表时添加已审核状态过滤

<!--
* @Date: 2025-03-21 12:17:03
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-05-12 09:30:50
* @LastEditTime: 2025-06-10 09:56:32
* @FilePath: /mlaj/src/views/courses/MyCoursesPage.vue
* @Description: 文件描述
-->
......@@ -56,7 +56,8 @@ const onLoad = async () => {
const res = await getOrderListAPI({
limit: limit.value,
page: nextPage,
status: 'PAY' // 只获取已支付的订单
status: 'PAY', // 只获取已支付的订单
approval_status: 'ENABLE' // 只获取已审核的订单
})
if (res.code) {
// 从订单中提取所有课程信息
......