Bläddra i källkod

搜索列表统计时也过滤索引

CzRger 6 månader sedan
förälder
incheckning
66d5833434
1 ändrade filer med 2 tillägg och 2 borttagningar
  1. 2 2
      src/views/web/list/index.vue

+ 2 - 2
src/views/web/list/index.vue

@@ -378,7 +378,7 @@ const initResultTree = () => {
   state.resultParams.activeIndex = ''
   state.resultParams.activeKey = ''
   const arr = []
-  WebStore.searchAreaTree.forEach(v => {
+  WebStore.searchAreaTreeRoleAuth.forEach(v => {
     const t = {
       ...v,
       children: []
@@ -395,7 +395,7 @@ const initResultTree = () => {
   if (arr.length > 0) {
     state.resultParams.tree = JSON.parse(JSON.stringify(arr))
   } else {
-    state.resultParams.tree = JSON.parse(JSON.stringify(WebStore.searchAreaTree))
+    state.resultParams.tree = JSON.parse(JSON.stringify(WebStore.searchAreaTreeRoleAuth))
   }
   state.ws.count()
 }