wujingjing
2025-02-19 382631e067c6c402d86e163cbd8e7d50a4c17933
显示label
已修改1个文件
33 ■■■■ 文件已修改
src/components/chat/chatComponents/summaryCom/components/recordSetTable/map/advanceSearch/index.vue 33 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/chat/chatComponents/summaryCom/components/recordSetTable/map/advanceSearch/index.vue
@@ -110,8 +110,8 @@
                        class="flex items-center text-blue-400 py-2 px-4 rounded-md"
                        :style="{ borderBottom: index !== queryForm.conditions.length - 1 ? '1px solid #e0e0e0' : 'none' }"
                    >
                        <span>{{ condition.field }}</span>
                        <span>{{ condition.operator }}</span>
                        <span>{{ propertyMapRow[condition.field]?.title }}</span>
                        <span>{{ operatorMap[condition.operator]?.label }}</span>
                        <span>{{ condition.value }}</span>
                        <el-button type="danger" link @click="removeCondition(index)" class="!flex !items-center ml-auto">
                            <span class="ywifont ywicon-shanchu"></span>
@@ -203,6 +203,7 @@
    });
});
const propertyMapRow = ref(null);
const propertyGroupProps = {
    label: 'title',
    children: 'prop_list',
@@ -238,12 +239,17 @@
                        value: null,
                    };
                }
                return {
                const row =  {
                    id: `${item.type}_${item.vprop}`,
                    ...item,
                    info,
                    title: info.title ?? '-',
                };
                if (!propertyMapRow.value) {
                    propertyMapRow.value = {};
                }
                propertyMapRow.value[row.id] = row;
                return row;
            });
        return group;
    });
@@ -305,6 +311,19 @@
    { label: '小于等于', value: 'lte' },
    { label: '包含', value: 'contains' },
];
const getOperatorMap = () => {
    const operatorMap = operators.reduce((map, item) => {
        map[item.value] = item;
        return map;
    }, {});
    return operatorMap;
};
const operatorMap = getOperatorMap();
const tmpConditionFormRef = ref();
@@ -420,9 +439,11 @@
const handleLocate = () => {
    // 实现高亮定位逻辑
    props.olMap.clearObjectSearch();
    const features = tableData.value.filter((item) => item.WKT).map((item) => {
        return props.olMap.readWKT(item.WKT);
    });
    const features = tableData.value
        .filter((item) => item.WKT)
        .map((item) => {
            return props.olMap.readWKT(item.WKT);
        });
    props.olMap.highlightSearch(features);
    // props.olMap.zoomToFeatures(features);
};