feat: 添加华睿品牌到机器人品牌枚举,更新相关常量以支持新品牌

This commit is contained in:
xudan 2025-07-17 18:31:35 +08:00
parent 914d3a0ed0
commit df27f7b59b

View File

@ -2,6 +2,7 @@ import { isNumber } from 'lodash-es';
export enum RobotBrand {
= 1,
= 2,
}
export const ROBOT_BRAND_OPTIONS = <Array<[string, RobotBrand]>>(
Object.entries(RobotBrand).filter(([, v]) => isNumber(v))