bug fix 系统设置中重复进入相同路由刷新数据
This commit is contained in:
parent
b6fef27f69
commit
7dce48c7bb
|
@ -105,7 +105,7 @@
|
|||
export default {
|
||||
name: "MsOrganizationMember",
|
||||
components: {MsCreateBox, MsTablePagination, MsTableHeader, MsRolesTag, MsTableOperator, MsDialogFooter},
|
||||
created() {
|
||||
activated() {
|
||||
this.initTableData();
|
||||
},
|
||||
data() {
|
||||
|
|
|
@ -156,7 +156,7 @@
|
|||
export default {
|
||||
name: "MsOrganizationWorkspace",
|
||||
components: {MsCreateBox, MsTablePagination, MsTableHeader, MsRolesTag, MsTableOperator, MsDialogFooter},
|
||||
mounted() {
|
||||
activated() {
|
||||
this.list();
|
||||
},
|
||||
computed: {
|
||||
|
|
|
@ -148,7 +148,7 @@
|
|||
}
|
||||
},
|
||||
|
||||
created() {
|
||||
activated() {
|
||||
this.initTableData();
|
||||
},
|
||||
methods: {
|
||||
|
|
|
@ -231,7 +231,7 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
created() {
|
||||
activated() {
|
||||
this.initTableData();
|
||||
},
|
||||
methods: {
|
||||
|
|
|
@ -201,7 +201,7 @@
|
|||
export default {
|
||||
name: "MsSystemWorkspace",
|
||||
components: {MsCreateBox, MsTablePagination, MsTableHeader, MsRolesTag, MsTableOperator, MsDialogFooter},
|
||||
mounted() {
|
||||
activated() {
|
||||
this.list();
|
||||
},
|
||||
methods: {
|
||||
|
|
|
@ -256,7 +256,7 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
created() {
|
||||
activated() {
|
||||
this.initTableData();
|
||||
},
|
||||
methods: {
|
||||
|
|
|
@ -386,7 +386,7 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
created() {
|
||||
activated() {
|
||||
this.search();
|
||||
this.getAllRole();
|
||||
},
|
||||
|
|
|
@ -130,7 +130,7 @@
|
|||
total: 0,
|
||||
}
|
||||
},
|
||||
created: function () {
|
||||
activated: function () {
|
||||
this.initTableData();
|
||||
},
|
||||
methods: {
|
||||
|
|
Loading…
Reference in New Issue