Files
dvcp_v2_webapp/project/fengdu/app/AppLearning/AppLearning.vue
2023-01-10 10:40:01 +08:00

64 lines
1.1 KiB
Vue

<template>
<div class="AppLearning">
<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 Detail from "./components/Detail";
export default {
label: "学习问答",
name: "AppLearning",
components: { Detail, List },
props: {
instance: Function,
dict: Object,
permissions: Function
},
data() {
return {
component: "List",
params: {},
include: []
};
},
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;
this.$nextTick(() => {
if (data.isRefresh) {
this.$refs.component.getList();
}
});
}
}
}
};
</script>
<style scoped lang="scss">
.AppLearning {
width: 100%;
height: 100%;
}
</style>