hookehuyr

refactor(OrdersPage): 移除模拟订单数据注释代码

......@@ -233,33 +233,6 @@ const approvalStatusMap = {
DISABLE: { text: '审批不通过', color: '#ff976a' },
null: { text: '未审批', color: '#909399' },
}
// 模拟订单数据
// const orders = ref([
// {
// id: 1,
// orderNo: 'ORDER202503210001',
// status: 'pending',
// statusText: '待支付',
// statusColor: 'text-orange-500',
// title: '亲子阅读课程',
// description: '3-6岁儿童亲子阅读指导',
// image: 'https://cdn.ipadbiz.cn/mlaj/images/jbwr0qZvpD4.jpg',
// amount: 299,
// createTime: '2025-03-21 10:30:00'
// },
// {
// id: 2,
// orderNo: 'ORDER202503210002',
// status: 'paid',
// statusText: '已支付',
// statusColor: 'text-green-500',
// title: '儿童绘画课程',
// description: '儿童创意绘画启蒙课程',
// image: 'https://cdn.ipadbiz.cn/mlaj/images/27kCu7bXGEI.jpg',
// amount: 199,
// createTime: '2025-03-21 09:15:00'
// }
// ])
// 初始化加载订单列表
// 加载更多
......