优化组件无用字段,更新组件reame文件

This commit is contained in:
linxd
2025-07-15 14:48:53 +08:00
parent d256f55ff1
commit 5eaaf2db66
2 changed files with 17 additions and 13 deletions

View File

@ -28,17 +28,19 @@ const evaluationData = [
{
id: '1-1',
subIndicator: '质量管理体系认证',
score: '10',
subScore: '10',
isStar: '0',
actualScore: '8',
score: '8', // 实际评分
scoreNum: '8', // 用于提交的评分值
remark: '已获得ISO9001认证'
},
{
id: '1-2',
subIndicator: '质量控制流程',
score: '10',
subScore: '10',
isStar: '1',
actualScore: '9',
score: '9', // 实际评分
scoreNum: '9', // 用于提交的评分值
remark: '质量控制流程完善'
}
]
@ -81,9 +83,10 @@ interface IndicatorItem {
indicatorNdList: { // 二级指标列表
id?: string; // 二级指标ID
subIndicator: string; // 二级指标名称
score: string; // 二级指标分值
subScore: string; // 二级指标分值
isStar?: string; // 是否为星号项
actualScore?: string; // 实际评分
score: string; // 实际评分值(用于显示)
scoreNum: string; // 实际评分值(用于提交)
remark?: string; // 评分说明
}[];
}