wupengfei
4 天以前 84581333b74d8ac1b0867e5b8c276f6fc332e4eb
fix: bug
10个文件已修改
20 ■■■■ 已修改文件
src/views/DictionaryManage/DataDictionary.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/DictionaryManage/DictionaryCategoryManage.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/FinanceManage/BalanceManage.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/FinanceManage/FinanceManageList.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/FinanceManage/WithdrawManage.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/FinanceManage/components/BalanceDetailDialog.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/OperationManage/OperationManageList.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/ProtocolManage/ProtocolManageList.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/TaskManage/components/SelltementDetailView.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/TaskManage/components/SignDetailView.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
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: {
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: {},
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: {},
  }
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' },
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' },
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' },
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: {},
  }
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: {},
  }
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: {},
  }
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 },