Skip to content

Commit d4b3255

Browse files
committed
fixed srarus options
1 parent 858b452 commit d4b3255

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/stores/order-store.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ export const useOrderStore = defineStore('order', () => {
3535
const statusOptions: FilterOption<number | null>[] = [
3636
{ label: '全部状态', value: null },
3737
{ label: '待处理', value: 0 },
38-
{ label: '已核销', value: 1 },
39-
{ label: '已取消', value: 2 },
38+
{ label: '已取消', value: 1 },
39+
{ label: '已核销', value: 2 },
4040
]
4141

4242
const sortOptions: FilterOption<ManageOrderDirection>[] = [

0 commit comments

Comments
 (0)