CzRger 1 year ago
parent
commit
f60d4d74b3
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/store/modules/gis.ts

+ 3 - 3
src/store/modules/gis.ts

@@ -817,7 +817,7 @@ const actions = {
     }
     // const cql: any = ["(geoType = 2)"]
     const cql: any = []
-    cql.push(`(type_value in (${getters['elementActiveArr'].length > 0 ? getters['elementActiveArr'].map(v => `'${v.value}'`).join(',') : -1}))`)
+    cql.push(`(typeValue in (${getters['elementActiveArr'].length > 0 ? getters['elementActiveArr'].map(v => `'${v.value}'`).join(',') : -1}))`)
     const notIds: Array<string> = []
     if (state.gisParams.default.feature) {
       notIds.push(`'${state.gisParams.default.feature.getId()}'`)
@@ -855,7 +855,7 @@ const actions = {
   LOAD_GIS_QY_ANALYSIS_ELEMENT({state, dispatch, rootState}: any) {
     if (state.gisParams.qy.analysisWKT) {
       // const cql: any = ["(geoType = 1)", "(typeValue in ('gal', 'shl', 'myl'))"]
-      const cql: any = ["(type_value in ('gal', 'shl', 'myl'))"]
+      const cql: any = ["(typeValue in ('gal', 'shl', 'myl'))"]
       const notIds: Array<string> = []
       if (state.gisParams.default.feature) {
         notIds.push(`'${state.gisParams.default.feature.getId()}'`)
@@ -885,7 +885,7 @@ const actions = {
   LOAD_GIS_ANALYSIS_ELEMENT({state, dispatch, rootState}: any) {
     if (state.analysis.wkt) {
       // const cql: any = ["(geoType = 1)", "(typeValue in ('gal', 'shl', 'myl'))"]
-      const cql: any = ["(type_value in ('gal', 'shl', 'myl'))"]
+      const cql: any = ["(typeValue in ('gal', 'shl', 'myl'))"]
       const notIds: Array<string> = []
       if (state.gisParams.default.type === 'sb' && state.gisParams.default.feature) {
         notIds.push(`'${state.gisParams.default.feature.getId()}'`)