You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
963 B
42 lines
963 B
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
import Aside from './aside/Aside.vue'
|
|
import Content from './content/Content.vue'
|
|
import ListContent from './content/ListContent.vue'
|
|
import Robot from '@/components/Robot/index.vue'
|
|
|
|
|
|
defineOptions({
|
|
name: 'FinalMain',
|
|
})
|
|
const showList = ref(false)
|
|
const contentRef: any = ref(null)
|
|
function inputChange(keyword) {
|
|
contentRef.value.filterTableData(keyword)
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="main">
|
|
<!-- 侧边 -->
|
|
<Aside @input-change="inputChange" />
|
|
|
|
<!-- 内容 -->
|
|
<Content v-show="!showList" ref="contentRef" @change-show="showList = true" />
|
|
<!-- 任务管理 -->
|
|
<!-- TODO:本地演示即可 上传注释注释 -->
|
|
<ListContent v-show="showList" @change-show="showList = false" />
|
|
<!-- 机器人 -->
|
|
<Robot />
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="less" scoped>
|
|
.main {
|
|
display: flex;
|
|
flex-direction: row;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
}
|
|
</style>
|