Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
mlaj
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2025-06-13 09:52:08 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
8186a86047416b950144333969a28960ff1c1de8
8186a860
1 parent
a0baf5fc
fix(OrdersPage): 添加 mounted 钩子以初始化加载订单列表
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
src/views/profile/OrdersPage.vue
src/views/profile/OrdersPage.vue
View file @
8186a86
...
...
@@ -257,6 +257,11 @@ const currentStatusIndex = computed(() => {
return statusColumns.findIndex(item => item.value === selectedStatus.value)
})
onMounted(() => {
// 初始化加载订单列表
onLoad()
})
// 状态选择确认
const onStatusConfirm = ({ selectedValues, selectedOptions }) => {
selectedStatus.value = selectedValues[0]
...
...
Please
register
or
login
to post a comment