fix(erp-frontend-vue): resolve TypeScript build errors (duplicate ids, unused vars, null guards, type mismatches)

Made-with: Cursor
This commit is contained in:
panchengyong
2026-03-01 16:40:38 +08:00
parent 10b6d0099a
commit e45616a09b
28 changed files with 45 additions and 49 deletions

View File

@@ -57,10 +57,6 @@ export interface ProductionPlan {
slaveList?: PlanLine[]
/** 部门名称(单据视图) */
deptName?: string
/** 操作员/业务人员(单据视图表头) */
operatorName?: string
/** 审核日期 */
approveDate?: string
/** 物料清单BOM运算结果详情页只读 */
mbomList?: MbomLine[]
/** 补料清单(详情页只读) */

View File

@@ -67,6 +67,9 @@ export interface EbomLine {
delFlag?: string
/** 前端临时字段 */
_isNew?: boolean
/** 扩展属性(后端可能返回 attr1/attr2 等) */
attr1?: string
attr2?: string
}
/** 查询参数 */