From 84581333b74d8ac1b0867e5b8c276f6fc332e4eb Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期五, 19 九月 2025 14:06:21 +0800
Subject: [PATCH] fix: bug

---
 src/views/DictionaryManage/DictionaryCategoryManage.vue    |    2 +-
 src/views/FinanceManage/FinanceManageList.vue              |    2 +-
 src/views/TaskManage/components/SignDetailView.vue         |    2 +-
 src/views/DictionaryManage/DataDictionary.vue              |    2 +-
 src/views/FinanceManage/WithdrawManage.vue                 |    2 +-
 src/views/ProtocolManage/ProtocolManageList.vue            |    2 +-
 src/views/TaskManage/components/SelltementDetailView.vue   |    2 +-
 src/views/FinanceManage/BalanceManage.vue                  |    2 +-
 src/views/FinanceManage/components/BalanceDetailDialog.vue |    2 +-
 src/views/OperationManage/OperationManageList.vue          |    2 +-
 10 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/src/views/DictionaryManage/DataDictionary.vue b/src/views/DictionaryManage/DataDictionary.vue
index da29126..f73b34c 100644
--- a/src/views/DictionaryManage/DataDictionary.vue
+++ b/src/views/DictionaryManage/DataDictionary.vue
@@ -133,7 +133,7 @@
     defaultExtraParams: {
       categoryId: '',
       keywords: '',
-      orderInput: [{ property: 'sort', order: EnumPagedListOrder.Asc }],
+      orderInput: [{ property: 'sort', order: EnumPagedListOrder.Desc }],
     },
     queryKey: ['dictionaryServices/getDictionaryDatas'],
     columnsRenderProps: {
diff --git a/src/views/DictionaryManage/DictionaryCategoryManage.vue b/src/views/DictionaryManage/DictionaryCategoryManage.vue
index 02e9f6e..ae68ab9 100644
--- a/src/views/DictionaryManage/DictionaryCategoryManage.vue
+++ b/src/views/DictionaryManage/DictionaryCategoryManage.vue
@@ -101,7 +101,7 @@
   {
     defaultExtraParams: {
       keywords: '',
-      orderInput: [{ property: 'sort', order: EnumPagedListOrder.Asc }],
+      orderInput: [{ property: 'sort', order: EnumPagedListOrder.Desc }],
     },
     queryKey: ['dictionaryServices/getDictionaryCategories'],
     columnsRenderProps: {},
diff --git a/src/views/FinanceManage/BalanceManage.vue b/src/views/FinanceManage/BalanceManage.vue
index e14f104..a11a1fc 100644
--- a/src/views/FinanceManage/BalanceManage.vue
+++ b/src/views/FinanceManage/BalanceManage.vue
@@ -109,7 +109,7 @@
       keywords: '',
       balanceMin: null as number,
       balanceMax: null as number,
-      orderInput: [{ property: 'id', order: EnumPagedListOrder.Asc }],
+      orderInput: [{ property: 'id', order: EnumPagedListOrder.Desc }],
     },
     columnsRenderProps: {},
   }
diff --git a/src/views/FinanceManage/FinanceManageList.vue b/src/views/FinanceManage/FinanceManageList.vue
index e51be1f..8163c16 100644
--- a/src/views/FinanceManage/FinanceManageList.vue
+++ b/src/views/FinanceManage/FinanceManageList.vue
@@ -71,7 +71,7 @@
   },
   {
     defaultExtraParams: {
-      orderInput: [{ property: 'id', order: EnumPagedListOrder.Asc }],
+      orderInput: [{ property: 'id', order: EnumPagedListOrder.Desc }],
     },
     columnsRenderProps: {
       transDate: { type: 'date', format: 'YYYY-MM-DD HH:mm:ss' },
diff --git a/src/views/FinanceManage/WithdrawManage.vue b/src/views/FinanceManage/WithdrawManage.vue
index e4c6dae..89ba7be 100644
--- a/src/views/FinanceManage/WithdrawManage.vue
+++ b/src/views/FinanceManage/WithdrawManage.vue
@@ -114,7 +114,7 @@
       keywords: '',
       status: '',
       time: [] as unknown as ModelValueType,
-      orderInput: [{ property: 'id', order: EnumPagedListOrder.Asc }],
+      orderInput: [{ property: 'id', order: EnumPagedListOrder.Desc }],
     },
     columnsRenderProps: {
       balance: { type: 'money' },
diff --git a/src/views/FinanceManage/components/BalanceDetailDialog.vue b/src/views/FinanceManage/components/BalanceDetailDialog.vue
index 72e5b12..330e4b8 100644
--- a/src/views/FinanceManage/components/BalanceDetailDialog.vue
+++ b/src/views/FinanceManage/components/BalanceDetailDialog.vue
@@ -169,7 +169,7 @@
     defaultExtraParams: {
       type: '' as any as EnumUserWalletTransactionType,
       creationTime: [] as unknown as ModelValueType,
-      orderInput: [{ property: 'id', order: EnumPagedListOrder.Asc }],
+      orderInput: [{ property: 'id', order: EnumPagedListOrder.Desc }],
     },
     columnsRenderProps: {
       transDate: { type: 'date', format: 'YYYY-MM-DD HH:mm:ss' },
diff --git a/src/views/OperationManage/OperationManageList.vue b/src/views/OperationManage/OperationManageList.vue
index 026deb5..9ff904a 100644
--- a/src/views/OperationManage/OperationManageList.vue
+++ b/src/views/OperationManage/OperationManageList.vue
@@ -161,7 +161,7 @@
       status: '' as any as boolean,
       beginDate: [] as unknown as ModelValueType,
       endDate: [] as unknown as ModelValueType,
-      orderInput: [{ property: 'sort', order: EnumPagedListOrder.Asc }],
+      orderInput: [{ property: 'sort', order: EnumPagedListOrder.Desc }],
     },
     columnsRenderProps: {},
   }
diff --git a/src/views/ProtocolManage/ProtocolManageList.vue b/src/views/ProtocolManage/ProtocolManageList.vue
index 0f9715a..f2c9554 100644
--- a/src/views/ProtocolManage/ProtocolManageList.vue
+++ b/src/views/ProtocolManage/ProtocolManageList.vue
@@ -97,7 +97,7 @@
     defaultExtraParams: {
       keyword: '',
       status: '' as any as EnumContractTemplateStatus,
-      orderInput: [{ property: 'id', order: EnumPagedListOrder.Asc }],
+      orderInput: [{ property: 'id', order: EnumPagedListOrder.Desc }],
     },
     columnsRenderProps: {},
   }
diff --git a/src/views/TaskManage/components/SelltementDetailView.vue b/src/views/TaskManage/components/SelltementDetailView.vue
index 58e1843..81ff5d9 100644
--- a/src/views/TaskManage/components/SelltementDetailView.vue
+++ b/src/views/TaskManage/components/SelltementDetailView.vue
@@ -73,7 +73,7 @@
       status: '' as any as boolean,
       beginDate: [] as unknown as ModelValueType,
       endDate: [] as unknown as ModelValueType,
-      orderInput: [{ property: 'id', order: EnumPagedListOrder.Asc }],
+      orderInput: [{ property: 'id', order: EnumPagedListOrder.Desc }],
     },
     columnsRenderProps: {},
   }
diff --git a/src/views/TaskManage/components/SignDetailView.vue b/src/views/TaskManage/components/SignDetailView.vue
index 02b5ea1..7bebfa7 100644
--- a/src/views/TaskManage/components/SignDetailView.vue
+++ b/src/views/TaskManage/components/SignDetailView.vue
@@ -64,7 +64,7 @@
   },
   {
     defaultExtraParams: {
-      orderInput: [{ property: 'id', order: EnumPagedListOrder.Asc }],
+      orderInput: [{ property: 'id', order: EnumPagedListOrder.Desc }],
     },
     columnsRenderProps: {
       hireStatus: { type: 'enum', valueEnum: EnumTaskUserHireStatusText },

--
Gitblit v1.9.1