From 35a90e467732d7f33cf0ebbaa5b3f20ed67982cb Mon Sep 17 00:00:00 2001
From: jiangping <jp@doumee.com>
Date: 星期二, 11 三月 2025 19:54:25 +0800
Subject: [PATCH] 最新版本541200007

---
 admin/src/layouts/AppLayout.vue                       |   10 +-
 admin/src/components/common/Menu.vue                  |   58 +++++++++++++
 admin/src/components/base/BaseComputHeight.vue        |   15 ++-
 admin/src/views/business/relativeMember.vue           |    9 +-
 admin/src/components/common/tagsview.vue              |  101 +++++++++++++++++--------
 admin/src/components/base/BaseComputHeightDefault.vue |   25 ++++-
 admin/src/views/business/internalMember.vue           |    6 
 admin/src/store/index.js                              |    7 +
 8 files changed, 167 insertions(+), 64 deletions(-)

diff --git a/admin/src/components/base/BaseComputHeight.vue b/admin/src/components/base/BaseComputHeight.vue
index a1a58f1..c4cc769 100644
--- a/admin/src/components/base/BaseComputHeight.vue
+++ b/admin/src/components/base/BaseComputHeight.vue
@@ -1,20 +1,25 @@
 <script>
+import {mapState} from "vuex";
+
 export default {
   name: 'BaseComputeHeight',
   data () {
     return {
-      tableHeightNew: 300
+      // tableHeightNew: 300
     }
   },
+  computed: {
+    ...mapState(['tableHeightNew'])
+  },
   created() {
-    this.computeTableHeight()
+    // this.computeTableHeight()
   },
   mounted () {
-    this.computeTableHeight()
-    window.addEventListener('resize', this.computeTableHeight)
+    // this.computeTableHeight()
+    // window.addEventListener('resize', this.computeTableHeight)
   },
   activated() {
-    this.computeTableHeight()
+    // this.computeTableHeight()
   },
   methods: {
     computeTableHeight () {
diff --git a/admin/src/components/base/BaseComputHeightDefault.vue b/admin/src/components/base/BaseComputHeightDefault.vue
index d319d28..9159aac 100644
--- a/admin/src/components/base/BaseComputHeightDefault.vue
+++ b/admin/src/components/base/BaseComputHeightDefault.vue
@@ -1,20 +1,29 @@
 <script>
+import router from "@/router";
+import {mapState} from "vuex";
+
 export default {
-  name: 'BaseComputeHeight',
+  name: 'BaseComputeHeightDefault',
   data () {
     return {
-      tableHeightNew: 300
+      // tableHeightNew: 300
     }
   },
+  computed: {
+    ...mapState(['tableHeightNew'])
+  },
   created() {
-    this.computeTableHeight()
+    // console.log('created' ,this.tableHeightNew)
+    // this.computeTableHeight()
   },
   mounted () {
-    this.computeTableHeight()
-    window.addEventListener('resize', this.computeTableHeight)
+    // this.computeTableHeight()
+    // console.log('mounted' ,this.tableHeightNew)
+    // window.addEventListener('resize', this.computeTableHeight)
   },
   activated() {
-    this.computeTableHeight()
+    // console.log('activated' ,this.tableHeightNew)
+    // this.computeTableHeight()
   },
   methods: {
     computeTableHeight () {
@@ -29,9 +38,11 @@
         let height2 = document.getElementsByClassName('toolbar') && document.getElementsByClassName('toolbar')[0]?document.getElementsByClassName('toolbar')[0].clientHeight:0
         let height5 = document.getElementsByTagName('thead') && document.getElementsByTagName('thead')[0]? document.getElementsByTagName('thead')[0].clientHeight:0
         // this.tableHeightNew = height-height4-height3-height2-height1-height5-height6-height7-height8-height9 -height10// 鎵撳嵃楂樺害
-        this.tableHeightNew = height-height4-height3-height2-height1-height5 -height6
+        // this.tableHeightNew = height-height4-height3-height2-height1-height5 -height6
         console.log('defualt',height,height6,height3 ,height1,height2,height4,height4)
         console.log('defualt',this.tableHeightNew)
+        console.log('defualtlength',document.getElementsByClassName('table-search-form').length)
+        router.app.$store.commit('setTableHeightNew', height-height4-height3-height2-height1-height5 -height6)
       })
     }
   }
diff --git a/admin/src/components/common/Menu.vue b/admin/src/components/common/Menu.vue
index 0b0df39..a485a10 100644
--- a/admin/src/components/common/Menu.vue
+++ b/admin/src/components/common/Menu.vue
@@ -50,9 +50,16 @@
     // 榛樿灞曞紑鐨勮彍鍗昳ndex
     defaultOpeneds() {
       // return this.menuData.list.map(menu => menu.index)
-
       return [this.menuData.list[0].index]
     }
+  },
+  watch: {
+   /* $route (to, from) {
+      var that =this
+      this.$nextTick(() => {
+        setTimeout(function(){ that.computeTableHeight()},1000)
+      })
+    }*/
   },
   methods: {
     // 澶勭悊鑿滃崟閫変腑
@@ -73,10 +80,12 @@
         return
       }
       if (menuConfig.params != null && menuConfig.params != '') {
-        this.$router.push({ path: menuConfig.url, query: { index: menuConfig.index, param: menuConfig.params } })
+        // this.$router.push({ path: menuConfig.url, query: { index: menuConfig.index, param: menuConfig.params } })
       } else {
-        this.$router.push(menuConfig.url)
+        // this.$router.push(menuConfig.url)
       }
+
+      this.$router.push({ path: menuConfig.url, query: { index: menuConfig.index, param: menuConfig.params, time: (Math.random().toString()) } })
       this.$store.commit('pushtags', menuConfig)
     },
     // 鑾峰彇鑿滃崟閰嶇疆
@@ -93,6 +102,49 @@
         }
       }
       return null
+    },
+    computeTableHeight () {
+      this.$nextTick(() => {
+        const height = window.innerHeight
+        console.log('main_app========================锛�'+height)
+        const height13 = this.getEleHeghtByClassName('common-header',0)
+        const height5 = document.getElementsByTagName('thead') && document.getElementsByTagName('thead')[0] ? document.getElementsByTagName('thead')[0].clientHeight : 0
+        if (document.getElementsByClassName('main_app') && document.getElementsByClassName('main_app')[0]) {
+          console.log('main_app========================')
+          // alert(height)
+          const height3 = this.getEleHeghtByClassName('main-header',0)
+          const height4 = this.getEleHeghtByClassName('table-pagination',0)
+          const height2 = this.getEleHeghtByClassName('toolbar',0)
+          const height6 = this.getEleHeghtByClassName('doumee-filter',0,16)
+          const height7 = this.getEleHeghtByClassName('pt16',0,0)
+          const height9 = this.getEleHeghtByClassName('static_wrap',0)
+          const height10 = this.getEleHeghtByClassName('query_btns',0)
+          const height11 = this.getEleHeghtByClassName('el-tabs-ele',0)
+          const height12 = this.getEleHeghtByClassName('platgroup_tabs',0)
+          this.$router.app.$store.commit('setTableHeightNew', height - height13- height3 - height5 - height6 - height2 - height7 - height4 - height9 - height10 - height11 - height12)
+          console.log('gableHeightNew', this.$router.app.$store.state.tableHeightNew)
+        } else {
+          console.log('tableLayout========================')
+          const height1 = this.getEleHeghtByClassName('table-search-form', 40,16)
+          const height3 = this.getEleHeghtByClassName('main-header', 0)
+          const height4 = this.getEleHeghtByClassName('table-pagination', 0)
+          const height2 = this.getEleHeghtByClassName('toolbar', 0)
+          console.log('defualtlength', document.getElementsByClassName('table-search-form').length)
+          this.$router.app.$store.commit('setTableHeightNew', height - height4 - height3 - height2 - height1 - height5 - height13)
+          console.log('gableHeightNew', this.$router.app.$store.state.tableHeightNew)
+        }
+      })
+    },
+    getEleHeghtByClassName (name, dv,margin) {
+      if ((document.getElementsByClassName(name) && document.getElementsByClassName(name)[0])) {
+        let t = 0
+        document.getElementsByClassName(name).forEach(e => {
+          console.log(name+'========================' + t + ':' + e.clientHeight)
+          t++
+        })
+        return document.getElementsByClassName(name)[document.getElementsByClassName(name).length - 1].clientHeight+(margin||0)
+      }
+      return dv || 0
     }
   }
 }
diff --git a/admin/src/components/common/tagsview.vue b/admin/src/components/common/tagsview.vue
index 50d9800..5fbfe86 100644
--- a/admin/src/components/common/tagsview.vue
+++ b/admin/src/components/common/tagsview.vue
@@ -12,7 +12,7 @@
         :key="index"
         :id="'tags-box-' + index"
         @contextmenu.prevent="openMenu(item, $event)"
-        :class="isActive(item.url, item.params,index) ? 'active' : ''"
+        :class="isActive(item.url, item.index,index) ? 'active' : ''"
         class="tagsview"
         @click="tagsmenu(item, index)"
       >
@@ -42,7 +42,7 @@
 // 杩欎釜灏辨槸瀵煎叆vuex鐨勬暟鎹紝閰嶅悎涓嬮潰...map鐢�
 import { mapState, mapMutations } from 'vuex'
 export default {
-  data() {
+  data () {
     return {
       // 鍙抽敭鑿滃崟闅愯棌瀵瑰簲甯冨皵鍊�
       visible: false,
@@ -59,15 +59,16 @@
   },
   watch: {
     // 鐩戝惉鍙抽敭鑿滃崟鐨勫�兼槸鍚︿负true锛屽鏋滄槸灏卞垱寤哄叏灞�鐩戝惉鐐瑰嚮浜嬩欢锛岃Е鍙慶loseMenu浜嬩欢闅愯棌鑿滃崟锛屽鏋滄槸false灏卞垹闄ょ洃鍚�
-    visible(value) {
+    visible (value) {
       if (value) {
         document.body.addEventListener('click', this.closeMenu)
       } else {
         document.body.removeEventListener('click', this.closeMenu)
       }
     },
-    $route(to, from) {
+    $route (to, from) {
       this.tags.forEach((item, index) => {
+        // if (item.url === to.path && item.index === to.query.index) {
         if (item.url === to.path && item.index === to.query.index) {
           const tagsDiv = document.getElementById('tags-box')
           if (index) {
@@ -77,10 +78,14 @@
           }
         }
       })
+     /* var that =this
+      this.$nextTick(() => {
+        setTimeout(function(){ that.computeTableHeight()},1000)
+      })*/
     }
-
   },
-  mounted() {
+  mounted () {
+    // window.addEventListener('resize', this.computeTableHeight)
     this.$refs.tags.addEventListener('scroll', e => {
       if (this.$refs.tags.scrollLeft > 0) {
         this.leftStatus = true
@@ -98,7 +103,7 @@
     // 寮曞叆vuex涓璵utation鏂规硶锛屽彲浠ョ洿鎺his.xxx璋冪敤浠�
     ...mapMutations(['closeTab', 'cleartagsview']),
     // 鐐瑰嚮鍙夊弶鍒犻櫎鐨勪簨浠�
-    rightClose() {
+    rightClose () {
       this.visible = false
       if (this.tags.length == 1) {
         return
@@ -106,7 +111,7 @@
       const index = this.tags.indexOf(this.selectedTag)
       this.handleClose(this.selectedTag, index)
     },
-    handleClose(item, index) {
+    handleClose (item, index) {
       if (this.tags.length == 1) {
         return
       }
@@ -129,71 +134,101 @@
           }
         } else {
           // 閭d箞锛屽鏋滀笂闈㈢殑鏉′欢閮戒笉鎴愮珛锛屾病鏈塴ength=0.涔熷氨鏄浣犺繕鏈夊ソ鍑犱釜鏍囩锛屽苟涓斾綘鍒犻櫎鐨勬槸鏈�鍚庝竴浣嶆爣绛撅紝閭d箞灏卞線宸﹁竟鎸竴浣嶈烦杞矾鐢�
-          this.$router.push({ path: this.tags[index - 1].url,query:{param: this.tags[index - 1].params} })
+          this.$router.push({ path: this.tags[index - 1].url, query: { param: this.tags[index - 1].params } })
         }
       } else {
         // 濡傛灉浣犵偣鍑讳笉鏄渶鍚庝竴浣嶆爣绛撅紝鐐圭殑鍓嶉潰鐨勶紝閭e氨寰�鍙宠竟璺宠浆
-        this.$router.push({ path: this.tags[index].url ,query:{param: this.tags[index].params}})
+        this.$router.push({ path: this.tags[index].url, query: { param: this.tags[index].params } })
       }
     },
     // 鐐瑰嚮璺宠浆璺敱
-    tagsmenu(item, index) {
+    tagsmenu (item, index) {
       console.log('tagsmenu')
       // 鍒ゆ柇锛氬綋鍓嶈矾鐢变笉绛変簬褰撳墠閫変腑椤圭殑url锛屼篃灏变唬琛ㄤ綘鐐瑰嚮鐨勪笉鏄幇鍦ㄩ�変腑鐨勬爣绛撅紝鏄彟涓�涓爣绛惧氨璺宠浆杩囧幓锛屽鏋滀綘鐐瑰嚮鐨勬槸鐜板湪宸茬粡閫変腑鐨勬爣绛惧氨涓嶇敤璺宠浆浜嗭紝鍥犱负浣犲凡缁忓湪杩欎釜璺敱浜嗚繕璺充粈涔堝憿銆�
       if (this.$route.path !== item.url) {
         // 鐢╬ath鐨勮烦杞柟娉曟妸褰撳墠椤圭殑url褰撲綔鍦板潃璺宠浆銆�
-        this.$router.push({ path: item.url ,query:{param: this.tags[index].params}})
+        this.$router.push({ path: item.url, query: { index: this.tags[index].index, param: this.tags[index].params, time: (Math.random().toString())} })
+        // this.$router.push( item.url)
         const tagsDiv = document.getElementById('tags-box')
         if (index) {
           tagsDiv.scrollTo(index * 110, 0)
         }
       }
-      this.computeTableHeightView();
+      // this.computeTableHeight()
     },
-    computeTableHeightView () { state.tags = []
+    computeTableHeight () {
       this.$nextTick(() => {
-        let height = window.innerHeight
-        let height6 = (document.getElementsByClassName('common-header') && document.getElementsByClassName('common-header')[0] ? document.getElementsByClassName('common-header')[0].clientHeight:0)
-        // alert(height)
-        let height1 = (document.getElementsByClassName('table-search-form') && document.getElementsByClassName('table-search-form')[0])? document.getElementsByClassName('table-search-form')[document.getElementsByClassName('table-search-form').length-1].clientHeight:0
-        height1 = height1===0? 40:height1+10
-        let height3 = document.getElementsByClassName('main-header') && document.getElementsByClassName('main-header')[0]?document.getElementsByClassName('main-header')[0].clientHeight:0
-        let height4 = document.getElementsByClassName('table-pagination') && document.getElementsByClassName('table-pagination')[0]? document.getElementsByClassName('table-pagination')[0].clientHeight:0
-        let height2 = document.getElementsByClassName('toolbar') && document.getElementsByClassName('toolbar')[0]?document.getElementsByClassName('toolbar')[0].clientHeight:0
-        let height5 = document.getElementsByTagName('thead') && document.getElementsByTagName('thead')[0]? document.getElementsByTagName('thead')[0].clientHeight:0
-        // this.tableHeightNew = height-height4-height3-height2-height1-height5-height6-height7-height8-height9 -height10// 鎵撳嵃楂樺害
-        console.log('view',height,height6,height3 ,height1,height2,height4,height4)
-        console.log('view', height-height4-height3-height2-height1-height5 -height6)
+        const height = window.innerHeight
+        console.log('toolbar********************************', document.getElementsByClassName('toolbar').length)
+        // console.log('main_app========================锛�' + height)
+        const height13 = this.getEleHeghtByClassName('common-header', 0)
+        const height5 = document.getElementsByTagName('thead') && document.getElementsByTagName('thead')[0] ? document.getElementsByTagName('thead')[0].clientHeight : 0
+        if (document.getElementsByClassName('main_app') && document.getElementsByClassName('main_app')[0]) {
+          // console.log('main_app========================')
+          // alert(height)
+          const height3 = this.getEleHeghtByClassName('main-header', 0)
+          const height4 = this.getEleHeghtByClassName('table-pagination', 0)
+          const height2 = this.getEleHeghtByClassName('toolbar', 0)
+          const height6 = this.getEleHeghtByClassName('doumee-filter', 0, 16)
+          const height7 = this.getEleHeghtByClassName('pt16', 0, 0)
+          const height9 = this.getEleHeghtByClassName('static_wrap', 0)
+          const height10 = this.getEleHeghtByClassName('query_btns', 0)
+          const height11 = this.getEleHeghtByClassName('el-tabs-ele', 0)
+          const height12 = this.getEleHeghtByClassName('platgroup_tabs', 0)
+          this.$router.app.$store.commit('setTableHeightNew', height - height13 - height3 - height5 - height6 - height2 - height7 - height4 - height9 - height10 - height11 - height12)
+          // console.log('gableHeightNew', this.$router.app.$store.state.tableHeightNew)
+        } else {
+          // console.log('tableLayout========================')
+          const height1 = this.getEleHeghtByClassName('table-search-form', 40, 16)
+          const height3 = this.getEleHeghtByClassName('main-header', 0)
+          const height4 = this.getEleHeghtByClassName('table-pagination', 0)
+          const height2 = this.getEleHeghtByClassName('toolbar', 0)
+          // console.log('defualtlength', document.getElementsByClassName('table-search-form').length)
+          this.$router.app.$store.commit('setTableHeightNew', height - height4 - height3 - height2 - height1 - height5 - height13)
+          // console.log('gableHeightNew', this.$router.app.$store.state.tableHeightNew)
+        }
       })
     },
+    getEleHeghtByClassName (name, dv, margin) {
+      if ((document.getElementsByClassName(name) && document.getElementsByClassName(name)[0])) {
+        let t = 0
+        document.getElementsByClassName(name).forEach(e => {
+          // console.log(name + '========================' + t + ':' + e.clientHeight)
+          t++
+        })
+        return document.getElementsByClassName(name)[document.getElementsByClassName(name).length - 1].clientHeight + (margin || 0)
+      }
+      return dv || 0
+    },
     // 閫氳繃鍒ゆ柇璺敱涓�鑷磋繑鍥炲竷灏斿�兼坊鍔燾lass锛屾坊鍔犻珮浜晥鏋�
-    isActive(route,params, index) {
-      const res =(route === this.$route.path && params== this.$route.query.param)
+    isActive (route, params, index) {
+      const res = (route === this.$route.path && params == this.$route.query.index)
       return res
     },
-    scrollToStart() {
+    scrollToStart () {
       const tagsDiv = document.getElementById('tags-box')
       tagsDiv.scrollTo(0, 0)
     },
-    scrollToEnd() {
+    scrollToEnd () {
       const tagsDiv = document.getElementById('tags-box')
       tagsDiv.scrollTo(tagsDiv.scrollWidth, 0)
     },
     // 鍙抽敭浜嬩欢锛屾樉绀哄彸閿彍鍗曪紝骞跺浐瀹氬ソ浣嶇疆銆�
-    openMenu(tag, e) {
+    openMenu (tag, e) {
       this.visible = true
       this.selectedTag = tag
       const offsetLeft = this.$el.getBoundingClientRect().left
       console.log(tag, e)
       this.left = e.clientX - offsetLeft + 60 // 鍙抽敭鑿滃崟璺濈宸﹁竟鐨勮窛绂�
       this.top = e.clientY + 20 // 鍙抽敭鑿滃崟璺濈涓婇潰鐨勮窛绂�           杩欎袱涓彲浠ユ洿鏀癸紝鐪嬬湅鑷繁鐨勫彸閿彍鍗曞湪浠�涔堜綅缃紝鑷繁璋�
+      // this.computeTableHeight()
     },
     // 闅愯棌鍙抽敭鑿滃崟
-    closeMenu() {
+    closeMenu () {
       this.visible = false
     },
     // 鍙抽敭鑿滃崟鍏抽棴鎵�鏈夐�夐」锛岃Е鍙憊uex涓殑鏂规硶锛屾妸褰撳墠璺敱褰撳弬鏁颁紶杩囧幓鐢ㄤ簬鍒ゆ柇
-    cleartags(val) {
+    cleartags (val) {
       this.visible = false
       this.cleartagsview(val)
     }
diff --git a/admin/src/layouts/AppLayout.vue b/admin/src/layouts/AppLayout.vue
index 58730f9..face93a 100644
--- a/admin/src/layouts/AppLayout.vue
+++ b/admin/src/layouts/AppLayout.vue
@@ -12,14 +12,13 @@
         </header>
         <main ref="containerS">
           <transition name="fade">
-<!--            <keep-alive>-->
+             <keep-alive :include="cachedViews">
               <router-view></router-view>
-<!--            </keep-alive>-->
+             </keep-alive>
           </transition>
         </main>
       </el-main>
     </el-container>
-
   </div>
 </template>
 
@@ -35,6 +34,7 @@
   components: { AppHeader: Header, Menu, CommonHeader },
   data() {
     return {
+      cachedViews:['abccdd'],
       isFinishData: false,
       orgBackground: ''
     }
@@ -45,9 +45,7 @@
   mounted() {
 
   },
-
-    methods: {
-
+  methods: {
   },
 }
 </script>
diff --git a/admin/src/store/index.js b/admin/src/store/index.js
index fd55430..4af82fa 100644
--- a/admin/src/store/index.js
+++ b/admin/src/store/index.js
@@ -5,6 +5,7 @@
 const state = {
   // 鐧诲綍鐢ㄦ埛淇℃伅
   userInfo: null,
+  tableHeightNew: 300,
   primaryColor: '#2080f7',
   // 棣栭〉
   homePage: null,
@@ -38,7 +39,9 @@
       ...data
     }
   },
-
+  setTableHeightNew: (state, data) => {
+    state.tableHeightNew = data
+  },
   clearUserInfo: (state) => {
     state.userInfo = null
   },
@@ -60,7 +63,7 @@
       if (result === -1) {
       state.tags.push({ ...val, keepAlive: false })
     } else {
-      state.tags[result] = { ...val, keepAlive: true }
+      state.tags[result] = { ...val, keepAlive: false }
     }
     // result === -1 ? state.tags.push(val) : (state.tags[result]==val)
   },
diff --git a/admin/src/views/business/internalMember.vue b/admin/src/views/business/internalMember.vue
index a716035..e2f2ba6 100644
--- a/admin/src/views/business/internalMember.vue
+++ b/admin/src/views/business/internalMember.vue
@@ -256,9 +256,9 @@
     this.getPositionList()
   },
   mounted() {
-    this.$nextTick(() => {
-      this.tableHeight = document.body.scrollHeight - this.$refs.QueryFormRef.offsetHeight - 276
-    })
+    // this.$nextTick(() => {
+    //   this.tableHeight = document.body.scrollHeight - this.$refs.QueryFormRef.offsetHeight - 276
+    // })
   },
   methods: {
     startEmpowerBatch() {
diff --git a/admin/src/views/business/relativeMember.vue b/admin/src/views/business/relativeMember.vue
index 45e0aa9..a773a79 100644
--- a/admin/src/views/business/relativeMember.vue
+++ b/admin/src/views/business/relativeMember.vue
@@ -6,7 +6,6 @@
         <el-form-item label="" prop="keyword">
           <el-input v-model="searchForm.keyword" placeholder="璇疯緭鍏ュ鍚�/鎵嬫満鍙�/宸ュ彿" @keypress.enter.native="search"></el-input>
         </el-form-item>
-
         <el-form-item label="" prop="positionId">
           <el-select v-model="searchForm.positionId" clearable filterable placeholder="宀椾綅">
             <el-option v-for="item in positionList" :key="item.id" :label="item.name" :value="item.id">
@@ -61,8 +60,8 @@
       <ul class="toolbar"
         v-permissions="['business:member:delete', 'business:member:create,business:empower:create', 'business:traintime:create']">
         <!--
-                <li><el-button type="primary" v-permissions="['business:member:sync']" :loading="loading" @click="synchronous()">鍚屾</el-button></li>
--->
+           <li><el-button type="primary" v-permissions="['business:member:sync']" :loading="loading" @click="synchronous()">鍚屾</el-button></li>
+        -->
         <li><el-button type="primary"
             @click="$refs.OperaMemberWindow.open('鏂板缓鍛樺伐', null, department, searchForm.companyType)" icon="el-icon-plus"
             v-permissions="['business:member:create']">鏂板缓鍛樺伐</el-button></li>
@@ -272,9 +271,9 @@
     this.getPositionList()
   },
   mounted() {
-    this.$nextTick(() => {
+ /*   this.$nextTick(() => {
       this.tableHeight = document.body.scrollHeight - this.$refs.QueryFormRef.offsetHeight - 276
-    })
+    })*/
   },
   methods: {
     startEmpowerBatch() {

--
Gitblit v1.9.3