修改组件查看模式的状态
This commit is contained in:
@ -48,7 +48,7 @@ const IndicatorModal: React.FC<IndicatorModalProps> = ({
|
||||
// 筛选出当前评价人员负责的指标
|
||||
if (res.data.indicatorStList && indicators.length > 0) {
|
||||
// 扁平化处理模板数据,提取出所有二级指标
|
||||
const allIndicators = [];
|
||||
const allIndicators: (IndicatorItem & { id: string })[] = [];
|
||||
for (const stItem of res.data.indicatorStList) {
|
||||
if (stItem.indicatorNdList) {
|
||||
for (const ndItem of stItem.indicatorNdList) {
|
||||
@ -59,7 +59,7 @@ const IndicatorModal: React.FC<IndicatorModalProps> = ({
|
||||
descIndicator: stItem.descIndicator,
|
||||
stScore: stItem.score,
|
||||
indicatorType: stItem.indicatorType,
|
||||
id: ndItem.id,
|
||||
id: ndItem.id || '',
|
||||
score: ndItem.score,
|
||||
});
|
||||
}
|
||||
|
@ -234,7 +234,6 @@ const SupplierTemplateManageAdd: React.FC<PageProps> = ({ breadcrumb, dispatch }
|
||||
if (isEdit && templateDetail) {
|
||||
dataToSubmit.id = templateDetail.id;
|
||||
}
|
||||
debugger
|
||||
setLoading(true);
|
||||
try {
|
||||
// 调用API接口
|
||||
|
Reference in New Issue
Block a user