Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a286f859ee | |||
| 549c9bdfad | |||
| 26b1adb769 | |||
| 0040c5795d | |||
| 5acfb05c57 | |||
| bea35fb707 | |||
| 93c3daa784 |
@@ -32,9 +32,24 @@ interface Props {
|
|||||||
onClose: () => void;
|
onClose: () => void;
|
||||||
userId: number | null;
|
userId: number | null;
|
||||||
phone: string | null; // 报表行已有的手机号:概览拉取失败时兜底展示
|
phone: string | null; // 报表行已有的手机号:概览拉取失败时兜底展示
|
||||||
|
dateFrom: string | null;
|
||||||
|
dateTo: string | null;
|
||||||
|
appEnv?: 'prod' | 'test';
|
||||||
|
revenueScope: 'business' | 'all';
|
||||||
|
feedScene?: 'comparison' | 'coupon' | 'welfare';
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function UserAdRevenueDrawer({ open, onClose, userId, phone }: Props) {
|
export default function UserAdRevenueDrawer({
|
||||||
|
open,
|
||||||
|
onClose,
|
||||||
|
userId,
|
||||||
|
phone,
|
||||||
|
dateFrom,
|
||||||
|
dateTo,
|
||||||
|
appEnv,
|
||||||
|
revenueScope,
|
||||||
|
feedScene,
|
||||||
|
}: Props) {
|
||||||
// UserRewardPanel 的 user 快照:它只读 phone/nickname/wechat_nickname/created_at,其余按 snapshot 形状补齐。
|
// UserRewardPanel 的 user 快照:它只读 phone/nickname/wechat_nickname/created_at,其余按 snapshot 形状补齐。
|
||||||
const [user, setUser] = useState<WithdrawUserSnapshot | null>(null);
|
const [user, setUser] = useState<WithdrawUserSnapshot | null>(null);
|
||||||
|
|
||||||
@@ -82,7 +97,19 @@ export default function UserAdRevenueDrawer({ open, onClose, userId, phone }: Pr
|
|||||||
>
|
>
|
||||||
{/* userId 就绪即渲染;UserRewardPanel 内部按 userId 自行拉统计与金币记录,user 基本信息随后补上。
|
{/* userId 就绪即渲染;UserRewardPanel 内部按 userId 自行拉统计与金币记录,user 基本信息随后补上。
|
||||||
statsVariant="ad":统计区只显示 6 项看广告统计(累计提现/现金余额/激励视频观看数+eCPM/draw观看数+eCPM) */}
|
statsVariant="ad":统计区只显示 6 项看广告统计(累计提现/现金余额/激励视频观看数+eCPM/draw观看数+eCPM) */}
|
||||||
{userId != null && <UserRewardPanel userId={userId} user={user} statsVariant="ad" />}
|
{userId != null && (
|
||||||
|
<UserRewardPanel
|
||||||
|
key={`${userId}-${dateFrom}-${dateTo}-${appEnv}-${revenueScope}-${feedScene}`}
|
||||||
|
userId={userId}
|
||||||
|
user={user}
|
||||||
|
statsVariant="ad"
|
||||||
|
initialDateFrom={dateFrom ?? undefined}
|
||||||
|
initialDateTo={dateTo ?? undefined}
|
||||||
|
appEnv={appEnv}
|
||||||
|
revenueScope={revenueScope}
|
||||||
|
feedScene={feedScene}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
</Drawer>
|
</Drawer>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ import {
|
|||||||
} from '@ant-design/icons';
|
} from '@ant-design/icons';
|
||||||
import dayjs, { type Dayjs } from 'dayjs';
|
import dayjs, { type Dayjs } from 'dayjs';
|
||||||
import { api, errMsg } from '@/lib/api';
|
import { api, errMsg } from '@/lib/api';
|
||||||
import { formatUtcTime, percentile } from '@/lib/format';
|
import { formatUtcTime, nearestRankPercentile } from '@/lib/format';
|
||||||
import type {
|
import type {
|
||||||
AdRevenueDaily,
|
AdRevenueDaily,
|
||||||
AdRevenueHourly,
|
AdRevenueHourly,
|
||||||
@@ -470,7 +470,27 @@ export default function AdRevenueReportPage() {
|
|||||||
const [loading, setLoading] = useState(false);
|
const [loading, setLoading] = useState(false);
|
||||||
const [formulaOpen, setFormulaOpen] = useState(false);
|
const [formulaOpen, setFormulaOpen] = useState(false);
|
||||||
// 点用户手机号弹出的「用户广告收益详情」半屏抽屉(userId + 手机号;null=关闭)
|
// 点用户手机号弹出的「用户广告收益详情」半屏抽屉(userId + 手机号;null=关闭)
|
||||||
const [userDrawer, setUserDrawer] = useState<{ userId: number; phone: string | null } | null>(null);
|
const [userDrawer, setUserDrawer] = useState<{
|
||||||
|
userId: number;
|
||||||
|
phone: string | null;
|
||||||
|
dateFrom: string;
|
||||||
|
dateTo: string;
|
||||||
|
appEnv?: 'prod' | 'test';
|
||||||
|
revenueScope: 'business' | 'all';
|
||||||
|
feedScene?: 'comparison' | 'coupon' | 'welfare';
|
||||||
|
} | null>(null);
|
||||||
|
const [queriedDetailFilters, setQueriedDetailFilters] = useState<{
|
||||||
|
dateFrom: string;
|
||||||
|
dateTo: string;
|
||||||
|
appEnv?: 'prod' | 'test';
|
||||||
|
revenueScope: 'business' | 'all';
|
||||||
|
feedScene?: 'comparison' | 'coupon' | 'welfare';
|
||||||
|
}>({
|
||||||
|
dateFrom: range[0].format('YYYY-MM-DD'),
|
||||||
|
dateTo: range[1].format('YYYY-MM-DD'),
|
||||||
|
appEnv: 'prod',
|
||||||
|
revenueScope: 'business',
|
||||||
|
});
|
||||||
|
|
||||||
// 当前选择是否跨多天:跨多天时「按小时」无意义,粒度强制按天
|
// 当前选择是否跨多天:跨多天时「按小时」无意义,粒度强制按天
|
||||||
const rangeMultiDay = range[0].format('YYYY-MM-DD') !== range[1].format('YYYY-MM-DD');
|
const rangeMultiDay = range[0].format('YYYY-MM-DD') !== range[1].format('YYYY-MM-DD');
|
||||||
@@ -503,6 +523,13 @@ export default function AdRevenueReportPage() {
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
setData(res.data);
|
setData(res.data);
|
||||||
|
setQueriedDetailFilters({
|
||||||
|
dateFrom: from,
|
||||||
|
dateTo: to,
|
||||||
|
appEnv: appEnv === 'all' ? undefined : appEnv,
|
||||||
|
revenueScope,
|
||||||
|
feedScene: scene as 'comparison' | 'coupon' | 'welfare' | undefined,
|
||||||
|
});
|
||||||
setPage(targetPage);
|
setPage(targetPage);
|
||||||
setQueriedLimit(targetLimit);
|
setQueriedLimit(targetLimit);
|
||||||
setQueriedGranularity(gran);
|
setQueriedGranularity(gran);
|
||||||
@@ -551,7 +578,7 @@ export default function AdRevenueReportPage() {
|
|||||||
width: 150,
|
width: 150,
|
||||||
render: (phone: string | null, r: AdRevenueRow) => (
|
render: (phone: string | null, r: AdRevenueRow) => (
|
||||||
// 点手机号/用户 → 打开该用户「广告收益详情」半屏抽屉(统计卡 + 金币记录)
|
// 点手机号/用户 → 打开该用户「广告收益详情」半屏抽屉(统计卡 + 金币记录)
|
||||||
<a onClick={() => setUserDrawer({ userId: r.user_id, phone })}>
|
<a onClick={() => setUserDrawer({ userId: r.user_id, phone, ...queriedDetailFilters })}>
|
||||||
{phone ? (
|
{phone ? (
|
||||||
<span>
|
<span>
|
||||||
{phone}
|
{phone}
|
||||||
@@ -758,9 +785,9 @@ export default function AdRevenueReportPage() {
|
|||||||
.filter((item) => item.feed_scene === sceneName)
|
.filter((item) => item.feed_scene === sceneName)
|
||||||
.map((item) => item.sub_count ?? 1);
|
.map((item) => item.sub_count ?? 1);
|
||||||
return {
|
return {
|
||||||
p5: percentile(counts, 0.05, false),
|
p5: nearestRankPercentile(counts, 0.05),
|
||||||
p50: percentile(counts, 0.5, false),
|
p50: nearestRankPercentile(counts, 0.5),
|
||||||
p95: percentile(counts, 0.95, false),
|
p95: nearestRankPercentile(counts, 0.95),
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
return { coupon: summarize('coupon'), comparison: summarize('comparison') };
|
return { coupon: summarize('coupon'), comparison: summarize('comparison') };
|
||||||
@@ -1083,12 +1110,12 @@ export default function AdRevenueReportPage() {
|
|||||||
</Typography.Text>
|
</Typography.Text>
|
||||||
</Divider>
|
</Divider>
|
||||||
<Row gutter={[16, 12]}>
|
<Row gutter={[16, 12]}>
|
||||||
<Col span={4}><Statistic title="单次领券广告数 P5" value={sessionAdCounts.coupon.p5 ?? '-'} precision={1} /></Col>
|
<Col span={4}><Statistic title="单次领券广告数 P5" value={sessionAdCounts.coupon.p5 ?? '-'} precision={0} /></Col>
|
||||||
<Col span={4}><Statistic title="单次领券广告数 P50" value={sessionAdCounts.coupon.p50 ?? '-'} precision={1} /></Col>
|
<Col span={4}><Statistic title="单次领券广告数 P50" value={sessionAdCounts.coupon.p50 ?? '-'} precision={0} /></Col>
|
||||||
<Col span={4}><Statistic title="单次领券广告数 P95" value={sessionAdCounts.coupon.p95 ?? '-'} precision={1} /></Col>
|
<Col span={4}><Statistic title="单次领券广告数 P95" value={sessionAdCounts.coupon.p95 ?? '-'} precision={0} /></Col>
|
||||||
<Col span={4}><Statistic title="单次比价广告数 P5" value={sessionAdCounts.comparison.p5 ?? '-'} precision={1} /></Col>
|
<Col span={4}><Statistic title="单次比价广告数 P5" value={sessionAdCounts.comparison.p5 ?? '-'} precision={0} /></Col>
|
||||||
<Col span={4}><Statistic title="单次比价广告数 P50" value={sessionAdCounts.comparison.p50 ?? '-'} precision={1} /></Col>
|
<Col span={4}><Statistic title="单次比价广告数 P50" value={sessionAdCounts.comparison.p50 ?? '-'} precision={0} /></Col>
|
||||||
<Col span={4}><Statistic title="单次比价广告数 P95" value={sessionAdCounts.comparison.p95 ?? '-'} precision={1} /></Col>
|
<Col span={4}><Statistic title="单次比价广告数 P95" value={sessionAdCounts.comparison.p95 ?? '-'} precision={0} /></Col>
|
||||||
</Row>
|
</Row>
|
||||||
</Card>
|
</Card>
|
||||||
)}
|
)}
|
||||||
@@ -1284,6 +1311,11 @@ export default function AdRevenueReportPage() {
|
|||||||
open={!!userDrawer}
|
open={!!userDrawer}
|
||||||
userId={userDrawer?.userId ?? null}
|
userId={userDrawer?.userId ?? null}
|
||||||
phone={userDrawer?.phone ?? null}
|
phone={userDrawer?.phone ?? null}
|
||||||
|
dateFrom={userDrawer?.dateFrom ?? null}
|
||||||
|
dateTo={userDrawer?.dateTo ?? null}
|
||||||
|
appEnv={userDrawer?.appEnv}
|
||||||
|
revenueScope={userDrawer?.revenueScope ?? 'all'}
|
||||||
|
feedScene={userDrawer?.feedScene}
|
||||||
onClose={() => setUserDrawer(null)}
|
onClose={() => setUserDrawer(null)}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -46,6 +46,41 @@ const fmtTok = (inTok: number | null, outTok: number | null) =>
|
|||||||
inTok == null && outTok == null ? '-' : `${inTok ?? 0}/${outTok ?? 0}`;
|
inTok == null && outTok == null ? '-' : `${inTok ?? 0}/${outTok ?? 0}`;
|
||||||
const fmtRate = (value: number | null) => (value == null ? '-' : `${(value * 100).toFixed(1)}%`);
|
const fmtRate = (value: number | null) => (value == null ? '-' : `${(value * 100).toFixed(1)}%`);
|
||||||
|
|
||||||
|
function deviceName(record: ComparisonRecordListItem): string {
|
||||||
|
return record.device_model_name || record.device_model || '-';
|
||||||
|
}
|
||||||
|
|
||||||
|
function romName(record: ComparisonRecordListItem): string {
|
||||||
|
return [
|
||||||
|
record.rom_vendor,
|
||||||
|
record.rom_name,
|
||||||
|
record.rom_version != null ? String(record.rom_version) : null,
|
||||||
|
]
|
||||||
|
.filter(Boolean)
|
||||||
|
.join(' ') || '-';
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderDevice(record: ComparisonRecordListItem): ReactNode {
|
||||||
|
const readableName = deviceName(record);
|
||||||
|
const showRawModel =
|
||||||
|
record.device_model_name
|
||||||
|
&& record.device_model
|
||||||
|
&& record.device_model_name !== record.device_model;
|
||||||
|
return (
|
||||||
|
<Space direction="vertical" size={0}>
|
||||||
|
<span>{readableName}</span>
|
||||||
|
{showRawModel ? (
|
||||||
|
<Typography.Text type="secondary" style={{ fontSize: 12 }}>
|
||||||
|
{record.device_model}
|
||||||
|
</Typography.Text>
|
||||||
|
) : null}
|
||||||
|
<Typography.Text type="secondary" style={{ fontSize: 12 }}>
|
||||||
|
{romName(record)}
|
||||||
|
</Typography.Text>
|
||||||
|
</Space>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
// LLM 价格快照只展示 prices 里各模型的单价(元/每百万 token),忽略 mode/_source 等元字段。
|
// LLM 价格快照只展示 prices 里各模型的单价(元/每百万 token),忽略 mode/_source 等元字段。
|
||||||
function llmPriceRows(snapshot: Record<string, unknown> | null): string[] {
|
function llmPriceRows(snapshot: Record<string, unknown> | null): string[] {
|
||||||
const prices = snapshot?.prices;
|
const prices = snapshot?.prices;
|
||||||
@@ -298,6 +333,14 @@ export default function ComparisonRecordsPage() {
|
|||||||
<b style={{ color: r.saved_amount_cents > 0 ? '#3f8600' : '#999' }}>{yuan(r.saved_amount_cents)}</b>
|
<b style={{ color: r.saved_amount_cents > 0 ? '#3f8600' : '#999' }}>{yuan(r.saved_amount_cents)}</b>
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: '是否下单',
|
||||||
|
dataIndex: 'ordered',
|
||||||
|
width: 84,
|
||||||
|
render: (ordered: boolean) => (
|
||||||
|
<Tag color={ordered ? 'green' : 'default'}>{ordered ? '已下单' : '未下单'}</Tag>
|
||||||
|
),
|
||||||
|
},
|
||||||
{ title: 'LLM', dataIndex: 'llm_call_count', width: 56, render: (v) => v ?? '-' },
|
{ title: 'LLM', dataIndex: 'llm_call_count', width: 56, render: (v) => v ?? '-' },
|
||||||
{
|
{
|
||||||
title: 'TOKEN',
|
title: 'TOKEN',
|
||||||
@@ -308,9 +351,9 @@ export default function ComparisonRecordsPage() {
|
|||||||
{
|
{
|
||||||
title: '机型/ROM',
|
title: '机型/ROM',
|
||||||
key: 'device',
|
key: 'device',
|
||||||
width: 150,
|
width: 180,
|
||||||
ellipsis: true,
|
ellipsis: true,
|
||||||
render: (_, r) => [r.device_model, r.rom_name].filter(Boolean).join(' / ') || '-',
|
render: (_, r) => renderDevice(r),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'traceid',
|
title: 'traceid',
|
||||||
@@ -499,8 +542,15 @@ export default function ComparisonRecordsPage() {
|
|||||||
|
|
||||||
<Card size="small" title="设备环境">
|
<Card size="small" title="设备环境">
|
||||||
<Descriptions size="small" column={2}>
|
<Descriptions size="small" column={2}>
|
||||||
<Descriptions.Item label="机型">{detail.device_model || '-'}({detail.device_manufacturer || '-'})</Descriptions.Item>
|
<Descriptions.Item label="机型">
|
||||||
<Descriptions.Item label="ROM">{[detail.rom_vendor, detail.rom_name, detail.rom_version].filter(Boolean).join(' ') || '-'}</Descriptions.Item>
|
{deviceName(detail)}
|
||||||
|
{detail.device_model_name && detail.device_model_name !== detail.device_model
|
||||||
|
? `(${[detail.device_manufacturer, detail.device_model].filter(Boolean).join(' · ')})`
|
||||||
|
: detail.device_manufacturer
|
||||||
|
? `(${detail.device_manufacturer})`
|
||||||
|
: ''}
|
||||||
|
</Descriptions.Item>
|
||||||
|
<Descriptions.Item label="ROM">{romName(detail)}</Descriptions.Item>
|
||||||
<Descriptions.Item label="Android">{detail.android_version || '-'}(SDK {detail.android_sdk ?? '-'})</Descriptions.Item>
|
<Descriptions.Item label="Android">{detail.android_version || '-'}(SDK {detail.android_sdk ?? '-'})</Descriptions.Item>
|
||||||
<Descriptions.Item label="App 版本">{detail.app_version || '-'}({detail.app_version_code ?? '-'})</Descriptions.Item>
|
<Descriptions.Item label="App 版本">{detail.app_version || '-'}({detail.app_version_code ?? '-'})</Descriptions.Item>
|
||||||
<Descriptions.Item label="源 App 版本" span={2}>{detail.source_app_version || '-'}</Descriptions.Item>
|
<Descriptions.Item label="源 App 版本" span={2}>{detail.source_app_version || '-'}</Descriptions.Item>
|
||||||
|
|||||||
@@ -710,7 +710,7 @@ export default function DashboardPage() {
|
|||||||
<div>
|
<div>
|
||||||
<h1>数据大盘</h1>
|
<h1>数据大盘</h1>
|
||||||
<p>
|
<p>
|
||||||
数据更新于 {updatedAt ?? '--'} · 北京时间 · 日期窗口按 00:00 自然日切分,不包含今日
|
数据更新于 {updatedAt ?? '--'} · 北京时间 · 日期窗口按 00:00 自然日切分,自定义日期可选择今日
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div className="controls">
|
<div className="controls">
|
||||||
@@ -734,7 +734,7 @@ export default function DashboardPage() {
|
|||||||
format="YYYY-MM-DD"
|
format="YYYY-MM-DD"
|
||||||
allowClear={false}
|
allowClear={false}
|
||||||
open={datePickerOpen}
|
open={datePickerOpen}
|
||||||
disabledDate={(date) => date.isAfter(dayjs().subtract(1, 'day'), 'day')}
|
disabledDate={(date) => date.isAfter(dayjs(), 'day')}
|
||||||
suffixIcon={<CalendarOutlined />}
|
suffixIcon={<CalendarOutlined />}
|
||||||
onClick={() => setDatePickerOpen(true)}
|
onClick={() => setDatePickerOpen(true)}
|
||||||
onOpenChange={setDatePickerOpen}
|
onOpenChange={setDatePickerOpen}
|
||||||
|
|||||||
@@ -44,6 +44,11 @@ interface Props {
|
|||||||
withdrawSource?: 'coin_cash' | 'invite_cash';
|
withdrawSource?: 'coin_cash' | 'invite_cash';
|
||||||
// 统计区字段集:withdraw(默认,提现详情:含提现细分) / ad(广告收益详情:只看看广告观看统计,对齐参考图 6 项)
|
// 统计区字段集:withdraw(默认,提现详情:含提现细分) / ad(广告收益详情:只看看广告观看统计,对齐参考图 6 项)
|
||||||
statsVariant?: 'withdraw' | 'ad';
|
statsVariant?: 'withdraw' | 'ad';
|
||||||
|
initialDateFrom?: string;
|
||||||
|
initialDateTo?: string;
|
||||||
|
appEnv?: 'prod' | 'test';
|
||||||
|
revenueScope?: 'business' | 'all';
|
||||||
|
feedScene?: 'comparison' | 'coupon' | 'welfare';
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 用户看广告/提现详情:基本信息 + 互斥时间筛选 + 统计区(按 statsVariant 取字段集)+ 金币发放记录表。 */
|
/** 用户看广告/提现详情:基本信息 + 互斥时间筛选 + 统计区(按 statsVariant 取字段集)+ 金币发放记录表。 */
|
||||||
@@ -52,9 +57,17 @@ export default function UserRewardPanel({
|
|||||||
user,
|
user,
|
||||||
withdrawSource,
|
withdrawSource,
|
||||||
statsVariant = 'withdraw',
|
statsVariant = 'withdraw',
|
||||||
|
initialDateFrom,
|
||||||
|
initialDateTo,
|
||||||
|
appEnv,
|
||||||
|
revenueScope = 'all',
|
||||||
|
feedScene,
|
||||||
}: Props) {
|
}: Props) {
|
||||||
const [mode, setMode] = useState<'all' | 'range'>('all'); // all=注册至今 / range=自定义区间
|
const hasInitialRange = Boolean(initialDateFrom && initialDateTo);
|
||||||
const [range, setRange] = useState<[Dayjs, Dayjs] | null>(null);
|
const [mode, setMode] = useState<'all' | 'range'>(hasInitialRange ? 'range' : 'all');
|
||||||
|
const [range, setRange] = useState<[Dayjs, Dayjs] | null>(() =>
|
||||||
|
hasInitialRange ? [dayjs(initialDateFrom), dayjs(initialDateTo)] : null,
|
||||||
|
);
|
||||||
const [stats, setStats] = useState<UserRewardStats | null>(null);
|
const [stats, setStats] = useState<UserRewardStats | null>(null);
|
||||||
const [statsLoading, setStatsLoading] = useState(false);
|
const [statsLoading, setStatsLoading] = useState(false);
|
||||||
|
|
||||||
@@ -80,6 +93,9 @@ export default function UserRewardPanel({
|
|||||||
params: {
|
params: {
|
||||||
...JSON.parse(paramsKey),
|
...JSON.parse(paramsKey),
|
||||||
...(withdrawSource ? { withdraw_source: withdrawSource } : {}),
|
...(withdrawSource ? { withdraw_source: withdrawSource } : {}),
|
||||||
|
...(appEnv ? { app_env: appEnv } : {}),
|
||||||
|
revenue_scope: revenueScope,
|
||||||
|
...(feedScene ? { feed_scene: feedScene } : {}),
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
setStats(data);
|
setStats(data);
|
||||||
@@ -88,7 +104,7 @@ export default function UserRewardPanel({
|
|||||||
} finally {
|
} finally {
|
||||||
setStatsLoading(false);
|
setStatsLoading(false);
|
||||||
}
|
}
|
||||||
}, [userId, paramsKey, withdrawSource]);
|
}, [userId, paramsKey, withdrawSource, appEnv, revenueScope, feedScene]);
|
||||||
|
|
||||||
const loadRecords = useCallback(
|
const loadRecords = useCallback(
|
||||||
async (p: number) => {
|
async (p: number) => {
|
||||||
@@ -236,7 +252,7 @@ export default function UserRewardPanel({
|
|||||||
</Descriptions>
|
</Descriptions>
|
||||||
<Text type="secondary" style={{ fontSize: 12 }}>
|
<Text type="secondary" style={{ fontSize: 12 }}>
|
||||||
{statsVariant === 'ad'
|
{statsVariant === 'ad'
|
||||||
? '统计随上方时间筛选(现金余额除外,为当前快照);次数仅统计成功发奖记录,信息流按奖励份数统计;eCPM 为预估值。'
|
? '统计继承广告收益页已查询的日期、环境、业务代码位和场景;次数仅统计成功发奖记录,信息流按奖励份数统计;Draw eCPM 按全部实际展示统计(含未发奖)。'
|
||||||
: '统计随上方时间筛选(现金余额除外,为当前快照);提现按申请提交时间统计;累计收益为已发金币按当前汇率折算,不代表实际已提现金额;eCPM 为预估值。'}
|
: '统计随上方时间筛选(现金余额除外,为当前快照);提现按申请提交时间统计;累计收益为已发金币按当前汇率折算,不代表实际已提现金额;eCPM 为预估值。'}
|
||||||
</Text>
|
</Text>
|
||||||
|
|
||||||
|
|||||||
@@ -570,6 +570,7 @@ export function WithdrawReviewPage({ mode = 'other' }: { mode?: WithdrawReviewMo
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '失败/拒绝原因',
|
title: '失败/拒绝原因',
|
||||||
|
key: 'fail_reason',
|
||||||
dataIndex: 'fail_reason',
|
dataIndex: 'fail_reason',
|
||||||
ellipsis: true,
|
ellipsis: true,
|
||||||
render: (v: string | null) => v || <Text type="secondary">-</Text>,
|
render: (v: string | null) => v || <Text type="secondary">-</Text>,
|
||||||
@@ -647,6 +648,10 @@ export function WithdrawReviewPage({ mode = 'other' }: { mode?: WithdrawReviewMo
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
const visibleColumns =
|
||||||
|
activeStatus === 'pending' || activeStatus === 'success'
|
||||||
|
? columns.filter((column) => column.key !== 'fail_reason')
|
||||||
|
: columns;
|
||||||
|
|
||||||
const inviteeColumns: ColumnsType<InviteeDetail> = [
|
const inviteeColumns: ColumnsType<InviteeDetail> = [
|
||||||
{ title: '手机号', dataIndex: 'phone', width: 130 },
|
{ title: '手机号', dataIndex: 'phone', width: 130 },
|
||||||
@@ -945,7 +950,7 @@ export function WithdrawReviewPage({ mode = 'other' }: { mode?: WithdrawReviewMo
|
|||||||
}
|
}
|
||||||
: undefined
|
: undefined
|
||||||
}
|
}
|
||||||
columns={columns}
|
columns={visibleColumns}
|
||||||
dataSource={items}
|
dataSource={items}
|
||||||
loading={loading}
|
loading={loading}
|
||||||
pagination={{
|
pagination={{
|
||||||
@@ -989,12 +994,6 @@ export function WithdrawReviewPage({ mode = 'other' }: { mode?: WithdrawReviewMo
|
|||||||
<Descriptions.Item label="金额">
|
<Descriptions.Item label="金额">
|
||||||
<Text strong>{yuan(detail.order.amount_cents)}</Text>
|
<Text strong>{yuan(detail.order.amount_cents)}</Text>
|
||||||
</Descriptions.Item>
|
</Descriptions.Item>
|
||||||
<Descriptions.Item label="提现类型">
|
|
||||||
{detail.order.source === 'invite_cash' ? '邀请奖励提现' : '福利页提现'}
|
|
||||||
</Descriptions.Item>
|
|
||||||
<Descriptions.Item label="累计成功提现">
|
|
||||||
{yuan(detail.cumulative_success_cents)}
|
|
||||||
</Descriptions.Item>
|
|
||||||
<Descriptions.Item label="提交时间">
|
<Descriptions.Item label="提交时间">
|
||||||
{dt(detail.order.created_at)}
|
{dt(detail.order.created_at)}
|
||||||
</Descriptions.Item>
|
</Descriptions.Item>
|
||||||
|
|||||||
@@ -37,6 +37,18 @@ export function percentile(values: readonly number[], q: number, round = true):
|
|||||||
return round ? Math.round(result) : result;
|
return round ? Math.round(result) : result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 离散计数分位数(nearest-rank)。
|
||||||
|
* 广告条数等不可拆分的计数不做线性插值,结果始终取自真实样本。
|
||||||
|
*/
|
||||||
|
export function nearestRankPercentile(values: readonly number[], q: number): number | null {
|
||||||
|
if (!values.length) return null;
|
||||||
|
const sorted = [...values].sort((a, b) => a - b);
|
||||||
|
const quantile = Math.min(1, Math.max(0, q));
|
||||||
|
const rank = Math.max(1, Math.ceil(quantile * sorted.length));
|
||||||
|
return sorted[rank - 1];
|
||||||
|
}
|
||||||
|
|
||||||
const hasTz = (v: string) => /(?:Z|[+-]\d{2}:?\d{2})$/i.test(v);
|
const hasTz = (v: string) => /(?:Z|[+-]\d{2}:?\d{2})$/i.test(v);
|
||||||
|
|
||||||
/** 把 UTC 口径字符串解析为带时区的 dayjs(无时区后缀的补 Z 当 UTC)。 */
|
/** 把 UTC 口径字符串解析为带时区的 dayjs(无时区后缀的补 Z 当 UTC)。 */
|
||||||
|
|||||||
+4
-2
@@ -233,7 +233,7 @@ export interface UserRewardStats {
|
|||||||
reward_video_avg_ecpm: number; // 平均激励视频 eCPM(分/千次)
|
reward_video_avg_ecpm: number; // 平均激励视频 eCPM(分/千次)
|
||||||
reward_video_cash_cents: number; // 激励视频提现
|
reward_video_cash_cents: number; // 激励视频提现
|
||||||
feed_count: number; // 累计信息流广告数(份)
|
feed_count: number; // 累计信息流广告数(份)
|
||||||
feed_avg_ecpm: number; // 平均信息流广告 eCPM(分/千次)
|
feed_avg_ecpm: number; // 全部 Draw/feed 实际展示的平均 eCPM(分/千次,含未发奖展示)
|
||||||
feed_cash_cents: number; // 信息流广告提现
|
feed_cash_cents: number; // 信息流广告提现
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -457,6 +457,7 @@ export interface ComparisonRecordListItem {
|
|||||||
source_price_cents: number | null;
|
source_price_cents: number | null;
|
||||||
best_price_cents: number | null;
|
best_price_cents: number | null;
|
||||||
saved_amount_cents: number | null;
|
saved_amount_cents: number | null;
|
||||||
|
ordered: boolean;
|
||||||
total_ms: number | null;
|
total_ms: number | null;
|
||||||
step_count: number | null;
|
step_count: number | null;
|
||||||
llm_call_count: number | null;
|
llm_call_count: number | null;
|
||||||
@@ -465,8 +466,10 @@ export interface ComparisonRecordListItem {
|
|||||||
output_tokens: number | null;
|
output_tokens: number | null;
|
||||||
llm_cost_yuan: number | null; // 后端按「当时价」冻结的实际成本(元);旧记录 null → 「成本」列回退估算
|
llm_cost_yuan: number | null; // 后端按「当时价」冻结的实际成本(元);旧记录 null → 「成本」列回退估算
|
||||||
device_model: string | null;
|
device_model: string | null;
|
||||||
|
device_model_name: string | null;
|
||||||
rom_vendor: string | null;
|
rom_vendor: string | null;
|
||||||
rom_name: string | null;
|
rom_name: string | null;
|
||||||
|
rom_version: number | null;
|
||||||
android_version: string | null;
|
android_version: string | null;
|
||||||
app_version: string | null;
|
app_version: string | null;
|
||||||
ad_revenue_yuan: number; // 本次比价看的信息流广告预估收益(元)
|
ad_revenue_yuan: number; // 本次比价看的信息流广告预估收益(元)
|
||||||
@@ -517,7 +520,6 @@ export interface ComparisonRecordDetail extends ComparisonRecordListItem {
|
|||||||
comparison_results: Record<string, unknown>[];
|
comparison_results: Record<string, unknown>[];
|
||||||
skipped_dish_names: string[];
|
skipped_dish_names: string[];
|
||||||
device_manufacturer: string | null;
|
device_manufacturer: string | null;
|
||||||
rom_version: number | null;
|
|
||||||
android_sdk: number | null;
|
android_sdk: number | null;
|
||||||
app_version_code: number | null;
|
app_version_code: number | null;
|
||||||
source_app_version: string | null;
|
source_app_version: string | null;
|
||||||
|
|||||||
Reference in New Issue
Block a user