feat: 退款充值换货列表提交人与审批摘要
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 7m20s

This commit is contained in:
luo
2026-07-22 18:37:41 +08:00
parent 7d3352038a
commit d5fd8ac564
20 changed files with 420 additions and 19 deletions

View File

@@ -349,16 +349,6 @@ export class CardService extends BaseService {
return this.getPage<StandaloneIotCard>('/api/admin/iot-cards/standalone', params)
}
/**
* 获取 IoT 卡列表
* @param params 查询参数
*/
static getIotCards(
params?: StandaloneCardQueryParams
): Promise<PaginationResponse<StandaloneIotCard>> {
return this.getPage<StandaloneIotCard>('/api/admin/iot-cards', params)
}
/**
* 批量分配单卡
* @param data 分配参数

View File

@@ -53,6 +53,13 @@ export interface ExchangeResponse {
express_no?: string
inherited_shop_id?: number | null
inherited_shop_name?: string | null
submitter_name?: string | null // 提交人名称
approval_source?: 'none' | 'legacy' | 'wecom' | null // 审批来源
approval_status?: string | null // 审批状态
approval_status_name?: string | null // 审批状态名称
current_approver_summary?: string | null // 当前审批人摘要
processing_status?: string | null // 业务处理状态
processing_status_name?: string | null // 业务处理状态名称
remark?: string
created_at: string
updated_at: string