wjx 1 hafta önce
ebeveyn
işleme
e6c69ad2dc

+ 1 - 1
src/pages/iaaData/novel/tencent/appEveryDayData/index.tsx

@@ -75,7 +75,7 @@ const AppEveryDayData: React.FC<{ configName?: string }> = ({ configName }) => {
             configName={configName || '小说腾讯应用每日数据'}
             fixed={{ left: 4, right: 0 }}
             scroll={{ x: 1000, y: 620 }}
-            title='应用每日数据'
+            title='应用每日数据(阅文提供的相关应用端数据更新时间至少为T+1的14:00后)'
             loading={getNovelAppList.loading}
             ajax={getNovelAppList}
             page={getNovelAppList?.data?.data?.current || 1}

+ 21 - 0
src/pages/iaaData/novel/tencent/appEveryDayData/tableConfig.tsx

@@ -412,6 +412,27 @@ function columns12(): { label: string, fieldSHow?: { label: string, saveField: s
                     render: (a: number) => <Statistic value={a || 0} precision={2} />
                 },
             ]
+        },
+        {
+            label: '充值数据',
+            data: [
+                {
+                    title: '今日账面充值', dataIndex: 'orderAmount', label: '充值数据', align: 'center', width: 110, sorter: true,
+                    render: (a: number) => <Statistic value={a || 0} precision={2} />
+                },
+                {
+                    title: '今日账面回收', dataIndex: 'appOrderIncome',  tips: '变现+充值', label: '充值数据', align: 'center', width: 110, sorter: true,
+                    render: (a: number) => <Statistic value={a || 0} precision={2} />
+                },
+                {
+                    title: '累计充值', dataIndex: 'totalOrderAmount', label: '充值数据', align: 'center', width: 110, sorter: true,
+                    render: (a: number) => <Statistic value={a || 0} precision={2} />
+                },
+                {
+                    title: '累计回收', dataIndex: 'totalAppOrderIncome', label: '充值数据', align: 'center', width: 110, sorter: true,
+                    render: (a: number) => <Statistic value={a || 0} precision={2} />
+                },
+            ]
         }
     ]
 }