fix: bug
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 2m9s

This commit is contained in:
sexygoat
2026-04-23 14:59:05 +08:00
parent a9467e8a0c
commit a5e76313cb
28 changed files with 1284 additions and 702 deletions

View File

@@ -209,6 +209,7 @@ export interface AssetPackageUsageRecord {
virtual_remain_mb?: number // 剩余虚流量 MB
virtual_ratio?: number // 虚流量比例real/virtual
enable_virtual_data?: boolean // 是否启用虚流量
paid_amount?: number // 实际支付金额(分)
package_price?: number // 套餐价格(分)
activated_at?: string // 激活时间
expires_at?: string // 到期时间

View File

@@ -53,6 +53,7 @@ export interface Order {
actual_paid_amount?: number // 实付金额(分)
paid_at: string | null
commission_status: OrderCommissionStatus
commission_status_name?: string // 佣金状态名称(中文)
commission_config_version: number
device_id: number | null
iot_card_id: number | null
@@ -71,13 +72,15 @@ export interface OrderQueryParams {
page?: number
page_size?: number
payment_status?: PaymentStatus
payment_method?: OrderPaymentMethod
order_type?: OrderType
order_no?: string
identifier?: string // 按资产标识符过滤
identifier?: string // 按资产标识符过滤ICCID 或 VirtualNo
purchase_role?: string // 订单渠道
buyer_phone?: string // 按买家手机号精确过滤
start_time?: string
end_time?: string
is_expired?: boolean // 是否已过期
dateRange?: string[] | any // For date range picker in UI
}

View File

@@ -15,8 +15,12 @@ export interface Refund {
id: number
refund_no: string
order_id: number
order_no: string // 订单号
shop_id: number
shop_name: string // 店铺名称
package_usage_id: number | null
asset_identifier: string // 资产标识符
asset_type: string // 资产类型
requested_refund_amount: number // 申请退款金额(分)
approved_refund_amount: number | null // 实际退款金额(分)
actual_received_amount: number // 实收金额(分)
@@ -41,6 +45,7 @@ export interface RefundQueryParams {
status?: RefundStatus
order_id?: number
shop_id?: number
shop_name?: string // 店铺名称(模糊查询)
dateRange?: string[]
}