瀏覽代碼

fix bug breadcrumb

EthnaYeh 7 年之前
父節點
當前提交
b62ceba5fd
共有 1 個文件被更改,包括 8 次插入0 次删除
  1. 8 0
      src/views/gambleMember/detail/index.vue

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

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