feat: 修改接口

This commit is contained in:
danial
2025-04-27 17:03:20 +08:00
parent 484a1bd95e
commit 2c43dd9fc3
3 changed files with 23 additions and 12 deletions

View File

@@ -1,7 +0,0 @@
ignoredBuiltDependencies:
- '@nestjs/core'
- '@openapitools/openapi-generator-cli'
- vue-demi
- vue-echarts
onlyBuiltDependencies:
- esbuild

View File

@@ -52,6 +52,18 @@ export interface KamiApiCardInfoWalmartV1V1CardRedeemAccountGroupEntity {
* @memberof KamiApiCardInfoWalmartV1V1CardRedeemAccountGroupEntity * @memberof KamiApiCardInfoWalmartV1V1CardRedeemAccountGroupEntity
*/ */
sum?: number; sum?: number;
/**
*
* @type {string}
* @memberof KamiApiCardInfoWalmartV1V1CardRedeemAccountGroupEntity
*/
createdUserId?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoWalmartV1V1CardRedeemAccountGroupEntity
*/
createdUserName?: string;
/** /**
* *
* @type {KamiApiCardInfoWalmartV1V1CardRedeemAccountGroupEntityAccount} * @type {KamiApiCardInfoWalmartV1V1CardRedeemAccountGroupEntityAccount}

View File

@@ -1,6 +1,5 @@
import { apiClient } from '@/api'; import { apiClient } from '@/api';
import type { import type {
KamiApiCardInfoWalmartV1CardRedeemAccountSummary,
ApiCardInfoWalmartAccountDailySummaryGetPageSizeEnum, ApiCardInfoWalmartAccountDailySummaryGetPageSizeEnum,
ApiCardInfoWalmartGroupStatGetPageSizeEnum, ApiCardInfoWalmartGroupStatGetPageSizeEnum,
KamiApiCardInfoWalmartV1V1CardRedeemAccountGroupEntity KamiApiCardInfoWalmartV1V1CardRedeemAccountGroupEntity
@@ -57,13 +56,16 @@ export default defineComponent({
return data.rowIndex + 1; return data.rowIndex + 1;
} }
}, },
{
title: '上传人昵称',
dataIndex: 'createdUserName'
},
{ {
title: '分组名称', title: '分组名称',
dataIndex: 'name' dataIndex: 'groupName'
}, },
{ {
title: '账户情况', title: '账户情况',
dataIndex: 'account.accountInfo',
render(data) { render(data) {
return ( return (
<> <>
@@ -84,11 +86,15 @@ export default defineComponent({
}, },
{ {
title: '充值金额', title: '充值金额',
dataIndex: 'account.amount' dataIndex: 'sum'
}, },
{ {
title: '充值笔数', title: '充值笔数',
dataIndex: 'account.count' dataIndex: 'count'
},
{
title: '充值日期',
dataIndex: 'orderDate'
} }
]; ];
const tableData = ref< const tableData = ref<