// 用于存储每个 topicId 的当前索引
let topicIndexes = 0;
// 对列表进行排序并添加索引
const sortedExamList = res.data.map((item: any, index: any, array: any) => {
if (index === 0 || array[index - 1].topicType != item.topicType) {
topicIndexes = 1; // 初始化或重置索引
} else {
topicIndexes += 1; // 否则索引加 1
}
return {
...item,
[`topicIndex`]: topicIndexes
};
});
console.log('排序后', sortedExamList)