debug: 增加订单列表调试日志
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Agent
2026-03-27 16:00:49 +00:00
parent 494b0f195d
commit f9192a1486

View File

@@ -123,6 +123,7 @@ export default {
onLoad(options) { onLoad(options) {
// 默认加载全部订单,不筛选状态 // 默认加载全部订单,不筛选状态
this.status = null this.status = null
console.log('onLoad - 加载订单列表')
this.loadOrders() this.loadOrders()
}, },
onShow() { onShow() {
@@ -153,6 +154,7 @@ export default {
page: this.page, page: this.page,
pageSize: this.pageSize pageSize: this.pageSize
}) })
console.log('订单列表响应:', res)
const list = res.records || [] const list = res.records || []