会话存档

This commit is contained in:
liuye
2023-06-07 17:53:53 +08:00
parent 6a828ff68c
commit e89d9d8716
3 changed files with 161 additions and 70 deletions

View File

@@ -20,12 +20,10 @@ import Detail from "./components/Detail";
export default {
name: "AppSessionArchive",
label: "会话存档",
props: {
instance: Function,
dict: Object,
},
data() {
return {
component: "List",
@@ -33,19 +31,16 @@ export default {
include: [],
};
},
components: {
Detail,
List,
},
methods: {
onChange(data) {
if (data.type === "Detail") {
this.component = "Detail";
this.params = data.params;
}
if (data.type === "List") {
this.component = "List";
this.params = data.params;