Browse Source

fix bug breadcrumb

EthnaYeh 7 years ago
parent
commit
b62ceba5fd
1 changed files with 8 additions and 0 deletions
  1. 8 0
      src/views/gambleMember/detail/index.vue

+ 8 - 0
src/views/gambleMember/detail/index.vue

@@ -26,6 +26,8 @@
26 26
 </template>
27 27
 
28 28
 <script>
29
+
30
+import { mapGetters, mapActions } from 'vuex'
29 31
 // import { getList } from '@/api/table'
30 32
 
31 33
 export default {
@@ -39,6 +41,9 @@ export default {
39 41
     // this.fetchData()
40 42
   },
41 43
   methods: {
44
+    ...mapActions([
45
+      'SetListVisble'
46
+    ]),
42 47
     // fetchData() {
43 48
     //   this.listLoading = true
44 49
     //   getList(this.listQuery).then(response => {
@@ -46,6 +51,9 @@ export default {
46 51
     //     this.listLoading = false
47 52
     //   })
48 53
     // }
54
+  },
55
+  destroyed() {
56
+    this.SetListVisble(true)
49 57
   }
50 58
 }
51 59
 </script>