修改bug
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 4m54s

This commit is contained in:
sexygoat
2026-04-09 13:48:11 +08:00
parent cc9d2a85a2
commit cb3ba06106
26 changed files with 987 additions and 1984 deletions

View File

@@ -312,7 +312,8 @@ export interface StandaloneCardQueryParams extends PaginationParams {
shop_id?: number // 分销商ID
iccid?: string // ICCID(模糊查询)
msisdn?: string // 卡接入号(模糊查询)
virtual_no?: string // 虚拟号(模糊查询)
virtual_no?: string // 虚拟号(模糊查询)
device_virtual_no?: string // 绑定设备虚拟号(模糊查询)
batch_no?: string // 批次号
package_id?: number // 套餐ID
is_distributed?: boolean // 是否已分销
@@ -328,7 +329,8 @@ export interface StandaloneIotCard {
iccid: string // ICCID
imsi?: string // IMSI (可选)
msisdn?: string // 卡接入号 (可选)
virtual_no?: string // 虚拟号(可空)
virtual_no?: string // 虚拟号(可空)
device_virtual_no?: string // 绑定设备虚拟号(可空)
carrier_id: number // 运营商ID
carrier_type: string // 运营商类型 (CMCC:中国移动, CUCC:中国联通, CTCC:中国电信, CBN:中国广电)
carrier_name: string // 运营商名称

View File

@@ -94,6 +94,7 @@ export interface CreateOrderRequest {
identifier?: string // 资产标识符ICCID 或 VirtualNo
package_ids: number[] // 套餐ID列表
payment_method: OrderPaymentMethod // 支付方式
payment_voucher_key?: string // 线下支付凭证(仅 offline 必填)
}
// 创建订单响应 (返回订单详情)

View File

@@ -205,6 +205,8 @@ export interface SeriesSelectOption {
id: number
series_name: string
series_code: string
enable_one_time_commission?: boolean // 是否启用一次性佣金
one_time_commission_config?: SeriesOneTimeCommissionConfig // 一次性佣金配置
}
// ==================== 代理系列授权 (新接口) ====================

View File

@@ -13,6 +13,7 @@ export interface ShopResponse {
shop_code: string // 店铺编号
level: number // 店铺层级 (1-7级)
parent_id: number | null // 上级店铺ID
parent_shop_name?: string // 上级店铺名称
province: string // 省份
city: string // 城市
district: string // 区县
@@ -26,6 +27,7 @@ export interface ShopResponse {
export interface ShopQueryParams extends PaginationParams {
shop_name?: string // 店铺名称模糊查询
shop_code?: string // 店铺编号模糊查询
parent_shop_name?: string // 上级店铺名称模糊查询
parent_id?: number | null // 上级店铺ID
level?: number | null // 店铺层级 (1-7级)
status?: number | null // 状态 (0:禁用, 1:启用)