- 移除响应数据详情弹窗,改为日志文本方式展示全部响应数据 - 新增复制日志和清空日志功能及按钮 - 移除日志分页,直接显示全部日志数据 - 设置界面新增豪猪平台用户名和密码字段,支持条件校验 - 优化设置表单逻辑,加载、提交和重置均由组件内部管理 - 删除多余API响应字段如statusText等,简化数据结构 - 统一预拉取订单列表和日志的代码风格及样式调整 - 增加日志复制和操作的用户提示信息
49 lines
1.1 KiB
TypeScript
49 lines
1.1 KiB
TypeScript
/* tslint:disable */
|
|
|
|
/**
|
|
*
|
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
*
|
|
* The version of the OpenAPI document:
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
// May contain unused imports in some cases
|
|
// @ts-ignore
|
|
import type { KamiApiCamelOilV1DenominationSetting } from './kami-api-camel-oil-v1-denomination-setting';
|
|
|
|
export interface KamiApiCamelOilV1GetSettingsRes {
|
|
/**
|
|
* 是否从豪猪平台获取手机号登录
|
|
*/
|
|
useHaozhuPlatform?: boolean;
|
|
/**
|
|
* 豪猪平台用户名
|
|
*/
|
|
haozhuUsername?: string;
|
|
/**
|
|
* 豪猪平台密码
|
|
*/
|
|
haozhuPassword?: string;
|
|
/**
|
|
* 要登录的手机号数量
|
|
*/
|
|
loginAccountCount?: number;
|
|
/**
|
|
* 提前拉单并发的账号数量
|
|
*/
|
|
prefetchConcurrencyAccounts?: number;
|
|
/**
|
|
* 单个账号的并发数量
|
|
*/
|
|
singleAccountConcurrency?: number;
|
|
/**
|
|
* 要获取的面额和对应库存设置列表
|
|
*/
|
|
targetDenominations?: Array<KamiApiCamelOilV1DenominationSetting>;
|
|
}
|