Files
dvcp_v2_webapp/packages/xbot/AppCallDetails/AppCallDetails.vue
2024-01-17 17:08:46 +08:00

76 lines
1.3 KiB
Vue

<template>
<div class="AppCallDetails">
<keep-alive :include="['List']">
<component
ref="component"
:is="component"
@change="onChange"
:params="params"
:instance="instance"
:dict="dict"
></component>
</keep-alive>
</div>
</template>
<script>
import List from "./components/List";
import GroupList from "./components/GroupList";
export default {
name: "AppCallDetails",
label: "调用明细",
props: {
instance: Function,
dict: Object,
},
data() {
return {
component: "List",
params: {},
include: [],
};
},
components: {
GroupList,
List
},
mounted() {
if (this.$route.params.id) {
this.component = 'Detail'
this.params = {
id: this.$route.params.id
}
}
},
methods: {
onChange(data) {
if (data.type === "GroupList") {
this.component = "GroupList";
this.params = data.params;
}
if (data.type === "List") {
this.component = "List";
this.params = data.params;
this.$nextTick(() => {
if (data.isRefresh) {
this.$refs.component.getTableData();
}
});
}
},
},
};
</script>
<style lang="scss">
.AppCallDetails {
height: 100%;
background: #f3f6f9;
overflow: auto;
}
</style>