yangyin
2024-11-20 9ef679e9f00e8b64be33cb00c4929fec7746d630
src/views/project/ch/home/component/waterRight/bottom.vue
@@ -95,10 +95,10 @@
   const iconCount = iconList.value.length;
   return iconList.value[index % iconCount];
};
const getMainSectionList = () => {
const getMainSectionList = async () => {
   let result = [];
   console.log('🚀 ~ sceneGroupList.value:', sceneGroupList.value);
   sceneGroupList.value.forEach((sectionItem, index) => {
   console.log('🚀 ~ 开始构建场景列表:', sceneGroupList.value);
   await sceneGroupList.value.forEach((sectionItem, index) => {
      sectionItem.Icon = getIconByIndex(index);
      if (activeGroupType.value == sectionItem.group_type) {
         result.push(sectionItem);