瀏覽代碼

框选图

caozhaorui 1 年之前
父節點
當前提交
0974c7c7aa
共有 2 個文件被更改,包括 3 次插入6 次删除
  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(() => {
     onMounted(() => {
-      state.toolsCom = SelectCom
-      state.toolsType = 'select'
     })
     })
     return {
     return {
       ...toRefs(state),
       ...toRefs(state),

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

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