|
@@ -38,7 +38,7 @@
|
|
|
<div class="gt-tools __box-shadow">
|
|
|
<template v-for="(item, index) in ToolsMapper">
|
|
|
<div class="tools-line" v-if="index > 0"/>
|
|
|
- <div class="tools-item __hover" :class="{active: toolsType === item.value}" @click="toolsHandleClick(item)">
|
|
|
+ <div class="tools-item __hover" :class="{active: toolsType === item.value, disabled: item.disabled}" @click="item.disabled ? undefined : toolsHandleClick(item)">
|
|
|
{{item.label}}
|
|
|
</div>
|
|
|
</template>
|
|
@@ -244,9 +244,9 @@ export default defineComponent({
|
|
|
showVideo: false
|
|
|
})
|
|
|
const ToolsMapper = [
|
|
|
- {label: '图层', value: 'element', com: ElementCom},
|
|
|
- {label: '框选', value: 'select', com: SelectCom},
|
|
|
- {label: '周边分析', value: 'analysis', com: AnalysisCom},
|
|
|
+ {label: '图层', value: 'element', com: ElementCom, disabled: true},
|
|
|
+ {label: '框选', value: 'select', com: SelectCom, disabled: true},
|
|
|
+ {label: '周边分析', value: 'analysis', com: AnalysisCom, disabled: true},
|
|
|
{label: '清空图层', value: 'clear', com: undefined},
|
|
|
{label: '工具', value: 'tool', com: ToolCom},
|
|
|
{label: '定位', value: 'position', com: PositionCom},
|
|
@@ -775,6 +775,10 @@ export default defineComponent({
|
|
|
color: #1174DB;
|
|
|
font-weight: bold;
|
|
|
}
|
|
|
+ &.disabled {
|
|
|
+ opacity: 0.5;
|
|
|
+ cursor: not-allowed;
|
|
|
+ }
|
|
|
}
|
|
|
.tools-line {
|
|
|
width: 1px;
|