优化组件无用字段,更新组件reame文件
This commit is contained in:
@ -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; // 评分说明
|
||||
}[];
|
||||
}
|
||||
|
Reference in New Issue
Block a user