aaa
wujingjing
2025-02-08 40d796814fc688c760004719b773c0b8caf2e334
src/components/chat/chatComponents/summaryCom/components/recordSetTable/map/panelTool/PropertyPanel.vue
@@ -7,7 +7,7 @@
               <span class="text-lg font-bold">{{ propertyTitle }}</span>
            </div>
         </div>
         <div class="content rounded-lg max-h-[700px] overflow-y-auto">
         <div class="content rounded-lg max-h-[700px] overflow-y-auto min-h-[600px]">
            <el-collapse v-model="activeNames" @change="handleChange" class="mt-2 h-full">
               <el-collapse-item v-for="group in propertyGroupList" :key="group.type" :title="group.title" :name="group.type" class="">
                  <el-table
@@ -81,9 +81,13 @@
   }
};
const featureClick = (feature: Feature) => {
   if (!feature) {
      propertyGroupList.value = [];
      propertyTitle.value = '无选中对象';
      return;
   }
   const otype = feature.get('otype');
   const oname = feature.get('oname');
   console.log("🚀 ~ feature:", feature)
   if (!otype) return;
   const otypeProperty = props.propertyMap?.[otype] ?? {};
   propertyTitle.value = otypeProperty.title;
@@ -108,12 +112,12 @@
               vpropsList.push(item.vprop);
               info = {
                  ...info,
                  value:null
               }
                  value: null,
               };
            }
            return {
               ...item,
               info
               info,
            };
         });
      return group;