feat: 优化大厅下注结果与风险提示展示,重构期号与订单详情样式
This commit is contained in:
@@ -9,6 +9,16 @@ export type DrawCurrentResultItem = {
|
||||
tail_digit: number | null;
|
||||
};
|
||||
|
||||
export type DrawCurrentRiskPoolAlert = {
|
||||
normalized_number: string;
|
||||
total_cap_amount: number;
|
||||
locked_amount: number;
|
||||
remaining_amount: number;
|
||||
sold_out_status: number;
|
||||
is_sold_out: boolean;
|
||||
usage_ratio: number | null;
|
||||
};
|
||||
|
||||
export type DrawCurrentPayload = {
|
||||
draw_no: string;
|
||||
business_date: string;
|
||||
@@ -21,6 +31,7 @@ export type DrawCurrentPayload = {
|
||||
seconds_to_draw: number;
|
||||
cooling_end_time: string | null;
|
||||
seconds_remaining_in_cooldown: number | null;
|
||||
risk_pool_alerts?: DrawCurrentRiskPoolAlert[];
|
||||
result_items?: DrawCurrentResultItem[];
|
||||
result_version?: number;
|
||||
result_source?: string | null;
|
||||
|
||||
@@ -72,5 +72,6 @@ export type TicketPlaceData = {
|
||||
order_no: string;
|
||||
draw: { draw_id: string; status: string };
|
||||
summary: TicketPreviewData["summary"];
|
||||
balance_after: number;
|
||||
items: TicketPlaceItem[];
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user