wupengfei
2025-05-30 3c42cdfe02b7a8e890d19b6bddd1a14365e754d5
fix: bug
2个文件已修改
14 ■■■■ 已修改文件
src/views/BalanceManage/BalanceManage.vue 12 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/BalanceManage/components/ConsumeRecordView.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/BalanceManage/BalanceManage.vue
@@ -55,7 +55,15 @@
            {{ detail?.bankBranchName ?? '' }}
          </RewardInfoCardContentItem>
          <RewardInfoCardContentItem label="银行帐号:">
            {{ detail?.bankCardNumber ?? '' }}
            {{
              detail?.bankCardNumber
                ? addStarForString(
                    detail?.bankCardNumber,
                    detail?.bankCardNumber?.length - 4,
                    detail?.bankCardNumber?.length
                  )
                : ''
            }}
          </RewardInfoCardContentItem>
        </RewardInfoCard>
      </RewardInfoCardList>
@@ -74,7 +82,7 @@
import RewardInfoCardList from '@/components/Reward/RewardInfoCardList.vue';
import RewardInfoCard from '@/components/Reward/RewardInfoCard.vue';
import RewardInfoCardContentItem from '@/components/Reward/RewardInfoCardContentItem.vue';
import { setOSSLink, downloadFileByUrl, toThousand } from '@/utils';
import { setOSSLink, downloadFileByUrl, toThousand, addStarForString } from '@/utils';
import ConsumeRecordView from './components/ConsumeRecordView.vue';
import { useQuery } from '@tanstack/vue-query';
import { useUser } from '@/hooks';
src/views/BalanceManage/components/ConsumeRecordView.vue
@@ -97,7 +97,7 @@
  {
    defaultExtraParams: {
      keyWord: '',
      orderInput: [{ property: 'tradeTime', order: OrderInputType.Asc }],
      orderInput: [{ property: 'tradeTime', order: OrderInputType.Desc }],
    },
    columnsRenderProps: {
      tradeTime: { type: 'date', format: 'YYYY-MM-DD HH:mm:ss' },