|
@@ -320,6 +320,46 @@ const Gzh: React.FC = () => {
|
|
|
{
|
|
|
key: "3",
|
|
|
label: "服务号分账号",
|
|
|
+ children: (
|
|
|
+ <Table
|
|
|
+ dataSource={separateDataSource}
|
|
|
+ columns={separateColumns}
|
|
|
+ rowKey={(record, idx) => record.dateStr + record.ghId + idx}
|
|
|
+ loading={loading}
|
|
|
+ pagination={{
|
|
|
+ current: pagination.current,
|
|
|
+ pageSize: pagination.pageSize,
|
|
|
+ total: pagination.total,
|
|
|
+ showSizeChanger: true,
|
|
|
+ showTotal: (total) => `共 ${total} 条`,
|
|
|
+ }}
|
|
|
+ onChange={handleTableChange}
|
|
|
+ />
|
|
|
+ ),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: "5",
|
|
|
+ label: "公众号总计",
|
|
|
+ children: (
|
|
|
+ <Table
|
|
|
+ dataSource={allDataSource}
|
|
|
+ columns={columns}
|
|
|
+ rowKey={(record, idx) => record.dateStr + record.ghId + idx}
|
|
|
+ loading={loading}
|
|
|
+ pagination={{
|
|
|
+ current: pagination.current,
|
|
|
+ pageSize: pagination.pageSize,
|
|
|
+ total: pagination.total,
|
|
|
+ showSizeChanger: true,
|
|
|
+ showTotal: (total) => `共 ${total} 条`,
|
|
|
+ }}
|
|
|
+ onChange={handleTableChange}
|
|
|
+ />
|
|
|
+ ),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: "6",
|
|
|
+ label: "公众号分账号",
|
|
|
children: (
|
|
|
<Table
|
|
|
dataSource={separateDataSource}
|