|
|
|
|
@ -1,11 +1,14 @@
|
|
|
|
|
<script setup>
|
|
|
|
|
import {ref} from "vue";
|
|
|
|
|
import {ref, watch} from "vue";
|
|
|
|
|
import AboutProfile from "@/components/about/AboutProfile.vue";
|
|
|
|
|
import AboutDynamic from "@/components/about/AboutDynamic.vue";
|
|
|
|
|
import AboutHonor from "@/components/about/AboutHonor.vue";
|
|
|
|
|
import AboutContactUs from "@/components/about/AboutContactUs.vue";
|
|
|
|
|
|
|
|
|
|
const activeName = ref('first')
|
|
|
|
|
// 创建子组件的ref引用
|
|
|
|
|
const aboutDynamicRef = ref(null);
|
|
|
|
|
const aboutHonorRef = ref(null);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const dynamicData = ref([
|
|
|
|
|
@ -13,86 +16,102 @@ const dynamicData = ref([
|
|
|
|
|
imgUrl: "img/dynamic1.png",
|
|
|
|
|
title: "端侧AI降噪模组设计",
|
|
|
|
|
content: "专为语音收集和处理设计的USB AI降噪麦克风模组,这是一款基于XMOS XU316芯片和Codec芯片的专业音频处理模组。",
|
|
|
|
|
time: "2023-01-01"
|
|
|
|
|
time: "2023-01-01",
|
|
|
|
|
id:100001,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
imgUrl: "img/dynamic2.png",
|
|
|
|
|
title: "AI降噪产品化市场环境",
|
|
|
|
|
content: "当前,AI降噪市场已形成结构清晰、协同发展的三层产业链格局",
|
|
|
|
|
time: "2023-01-01"
|
|
|
|
|
time: "2023-01-01",
|
|
|
|
|
id:100002,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
imgUrl: "img/dynamic1.png",
|
|
|
|
|
title: "端侧AI降噪模组设计",
|
|
|
|
|
content: "专为语音收集和处理设计的USB AI降噪麦克风模组,这是一款基于XMOS XU316芯片和Codec芯片的专业音频处理模组。",
|
|
|
|
|
time: "2023-01-01"
|
|
|
|
|
time: "2023-01-01",
|
|
|
|
|
id:100003,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
imgUrl: "img/dynamic1.png",
|
|
|
|
|
title: "端侧AI降噪模组设计",
|
|
|
|
|
content: "专为语音收集和处理设计的USB AI降噪麦克风模组,这是一款基于XMOS XU316芯片和Codec芯片的专业音频处理模组。",
|
|
|
|
|
time: "2023-01-01"
|
|
|
|
|
time: "2023-01-01",
|
|
|
|
|
id:100004,
|
|
|
|
|
}
|
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const honorData = ref([
|
|
|
|
|
{
|
|
|
|
|
id:10001,
|
|
|
|
|
time: "2022年",
|
|
|
|
|
image: "img/honor1.png",
|
|
|
|
|
label: "xxxx比赛金奖"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id:10002,
|
|
|
|
|
time: "2022年",
|
|
|
|
|
image: "img/honor2.png",
|
|
|
|
|
label: "国家高新技术企业"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id:10003,
|
|
|
|
|
time: "2022年",
|
|
|
|
|
image: "img/honor3.png",
|
|
|
|
|
label: "国家高新技术企业"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id:10004,
|
|
|
|
|
time: "2022年",
|
|
|
|
|
image: "img/honor1.png",
|
|
|
|
|
label: "国家高新技术企业"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id:10005,
|
|
|
|
|
time: "2022年",
|
|
|
|
|
image: "img/honor2.png",
|
|
|
|
|
label: "国家高新技术企业"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id:10006,
|
|
|
|
|
time: "2022年",
|
|
|
|
|
image: "img/honor3.png",
|
|
|
|
|
label: "国家高新技术企业"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id:10007,
|
|
|
|
|
time: "2022年",
|
|
|
|
|
image: "img/honor1.png",
|
|
|
|
|
label: "xxxx比赛金奖"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id:10008,
|
|
|
|
|
time: "2022年",
|
|
|
|
|
image: "img/honor2.png",
|
|
|
|
|
label: "国家高新技术企业"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id:10008,
|
|
|
|
|
time: "2022年",
|
|
|
|
|
image: "img/honor3.png",
|
|
|
|
|
label: "国家高新技术企业"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id:10009,
|
|
|
|
|
time: "2022年",
|
|
|
|
|
image: "img/honor1.png",
|
|
|
|
|
label: "国家高新技术企业"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id:10010,
|
|
|
|
|
time: "2022年",
|
|
|
|
|
image: "img/honor2.png",
|
|
|
|
|
label: "国家高新技术企业"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id:10011,
|
|
|
|
|
time: "2022年",
|
|
|
|
|
image: "img/honor3.png",
|
|
|
|
|
label: "国家高新技术企业"
|
|
|
|
|
@ -105,15 +124,15 @@ const honorData = ref([
|
|
|
|
|
<div class="header">
|
|
|
|
|
<img src="@/assets/img/about-us.png" alt="">
|
|
|
|
|
</div>
|
|
|
|
|
<el-tabs v-model="activeName" class="about-tabs">
|
|
|
|
|
<el-tabs v-model="activeName" class="about-tabs" default-value="first" >
|
|
|
|
|
<el-tab-pane label="实验室简介" name="first">
|
|
|
|
|
<AboutProfile></AboutProfile>
|
|
|
|
|
<AboutProfile></AboutProfile>
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
<el-tab-pane label="实验室动态" name="second">
|
|
|
|
|
<AboutDynamic :dynamicData="dynamicData"></AboutDynamic>
|
|
|
|
|
<AboutDynamic :dynamicData="dynamicData" v-if="activeName==='second'"></AboutDynamic>
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
<el-tab-pane label="奖项荣誉" name="third">
|
|
|
|
|
<AboutHonor :honorData="honorData"></AboutHonor>
|
|
|
|
|
<AboutHonor :honorData="honorData" v-if="activeName==='third'"></AboutHonor>
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
<el-tab-pane label="联系我们" name="fourth">
|
|
|
|
|
<AboutContactUs></AboutContactUs>
|
|
|
|
|
|