|
@@ -794,6 +794,18 @@ const actions = {
|
|
|
}
|
|
|
},
|
|
|
LOAD_GIS_ELEMENT({state, dispatch, getters, rootState}: any, activeArr: any = []) {
|
|
|
+ if (activeArr.length > 0) {
|
|
|
+ state.element.list.forEach(p => {
|
|
|
+ if (p.children?.length > 0) {
|
|
|
+ p.children.forEach(s => {
|
|
|
+ s.active = activeArr.includes(s.value)
|
|
|
+ })
|
|
|
+ p.active = p.children.every(v => v.active)
|
|
|
+ } else {
|
|
|
+ p.active = activeArr.includes(p.value)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
const cql: any = ["(geoType = 2)"]
|
|
|
cql.push(`(typeValue in (${getters['elementActiveArr'].length > 0 ? getters['elementActiveArr'].map(v => `'${v.value}'`).join(',') : -1}))`)
|
|
|
const notIds: Array<string> = []
|