You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
665 B
Vue
36 lines
665 B
Vue
|
2 years ago
|
<template>
|
||
|
|
<div class="main-content">
|
||
|
|
<el-scrollbar height="680px">
|
||
|
|
<component :is="currentComponent" ref="content"></component>
|
||
|
|
</el-scrollbar>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
<script setup>
|
||
|
|
const props = defineProps({
|
||
|
|
currentComponent: {
|
||
|
|
type: Object,
|
||
|
|
required: true,
|
||
|
|
},
|
||
|
|
});
|
||
|
|
const content = ref(null);
|
||
|
|
const consumerLeft = () => {
|
||
|
|
content.value.consumer();
|
||
|
|
};
|
||
|
|
const resLeft = () => {
|
||
|
|
content.value.practicalTraining();
|
||
|
|
};
|
||
|
|
const submitDataLeft = () => {
|
||
|
|
content.value.submitData();
|
||
|
|
};
|
||
|
|
defineExpose({
|
||
|
|
consumerLeft,
|
||
|
|
resLeft,
|
||
|
|
submitDataLeft,
|
||
|
|
});
|
||
|
|
</script>
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
.main-content {
|
||
|
|
width: calc(100% - 60px);
|
||
|
|
}
|
||
|
|
</style>
|