caozhaorui 1 anno fa
parent
commit
0974c7c7aa
2 ha cambiato i file con 3 aggiunte e 6 eliminazioni
  1. 0 2
      src/views/gis/layout/index.vue
  2. 3 4
      src/views/gis/layout/tools/select.vue

+ 0 - 2
src/views/gis/layout/index.vue

@@ -185,8 +185,6 @@ export default defineComponent({
       }
     }
     onMounted(() => {
-      state.toolsCom = SelectCom
-      state.toolsType = 'select'
     })
     return {
       ...toRefs(state),

+ 3 - 4
src/views/gis/layout/tools/select.vue

@@ -109,7 +109,7 @@ export default defineComponent({
     const state = reactive({
       selectParams: {
         type: '',
-        wkt: '22'
+        wkt: ''
       },
       result: {
         form: {},
@@ -143,7 +143,7 @@ export default defineComponent({
     }
     const mapDraw = (type) => {
       props.mapFunc.draw(type).then(({feature, wkt}) => {
-        state.selectParams.type === type
+        state.selectParams.type = type
         state.selectParams.wkt = wkt
         initData()
       }).catch(() => {})
@@ -202,7 +202,6 @@ export default defineComponent({
       onSearch()
     }
     onMounted(() => {
-      initData()
       state.result.form = JSON.parse(JSON.stringify(state.result.tempForm))
     })
     return {
@@ -262,7 +261,7 @@ export default defineComponent({
           >img {
             margin-right: 8px;
           }
-          &:hover {
+          &.active {
             color: #1174DB;
           }
         }