wupengfei
1 天以前 d32cd83674f9b0db0154e6228807e658539f8cd0
src/views/FinanceManage/components/BalanceDetailDialog.vue
@@ -1,5 +1,5 @@
<template>
  <ProDialog title="余额明细" v-model="visible" destroy-on-close draggable>
  <ProDialog title="余额明细" v-model="visible" destroy-on-close draggable width="1200px">
    <ProDialogTableWrapper :height="500">
      <ProTableQueryFilterBar @on-reset="reset">
        <template #query>
@@ -94,24 +94,27 @@
    id: '2',
    enCode: 'income',
    name: '收入',
    width: 100,
  },
  {
    id: '3',
    enCode: 'outcome',
    name: '支出',
    width: 100,
  },
  {
    id: '4',
    enCode: 'balance',
    name: '账户余额',
    width: 100,
  },
  {
    id: '4',
    id: '5',
    enCode: 'account',
    name: '对方帐号/户名',
  },
  {
    id: '4',
    id: '6',
    enCode: 'purpose',
    name: '用途',
  },
@@ -133,6 +136,8 @@
  () => visible.value,
  (value) => {
    if (value) {
      extraParamState.type = '' as any as EnumUserWalletTransactionType;
      extraParamState.creationTime = [] as unknown as ModelValueType;
      getList();
    }
  }
@@ -166,7 +171,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' },