修复部分问题

This commit is contained in:
gxwebsoft
2023-06-05 16:50:04 +08:00
parent 6fcff7b0e1
commit 01a57c177e
17 changed files with 1355 additions and 273 deletions

View File

@@ -4,8 +4,9 @@ export interface Accessory {
accessoryId?: undefined;
accessoryName?: string;
accessoryNo?: string;
accessoryCategory?: string;
accessoryCategory?: object;
accessoryModel?: string;
accessoryModelMultiple?: string[];
accessorySpecs?: string;
accessoryPrice?: number;
accessoryUnit?: string;

View File

@@ -5,9 +5,11 @@ import type { PageParam } from '@/api';
*/
export interface TowerModel {
// 型号分类id
categoryId?: number;
// 型号分类
title?: string;
modelId?: number;
// 设备名称
name?: string;
// 设备型号
model?: string;
// 型号分类图片
image?: string;
// 使用年限
@@ -37,8 +39,6 @@ export interface TowerModel {
//
merchantCode?: string;
value?: number;
// 子菜单
children?: TowerModel[];
}
/**