2023-11-05 10:16:54 +08:00

82 lines
3.0 KiB
Vue

<!--
* @Description:
* @Version: 1.668
* @Autor: 地虎降天龙
* @Date: 2023-10-16 10:53:09
* @LastEditors: 地虎降天龙
* @LastEditTime: 2023-11-05 10:04:18
-->
<template>
<div class="flex h-full">
<div class="w-50" style="background-color: black;">
<f-menu mode="vertical" :defaultExpandAll="true" :inverted="true" @select="goto">
<f-sub-menu value="1">
<template #icon>
<AppstoreOutlined />
</template>
<template #label>原生功能展示</template>
<template v-for="(bP, pkey) in pluginsConfig">
<f-menu-item v-if="pkey === 'basic'" v-for="(onePlugin, okey) in bP.child" :value="onePlugin.name">
<template #label>{{ onePlugin.title }}</template>
</f-menu-item>
</template>
</f-sub-menu>
<f-sub-menu value="2">
<template #icon>
<PictureOutlined />
</template>
<template #label>插件中心</template>
<template v-for="(onePlugin, pkey) in pluginsConfig">
<f-menu-item v-if="pkey !== 'basic'" :value="pkey">
<template #label>{{ onePlugin.title }}</template>
</f-menu-item>
</template>
</f-sub-menu>
</f-menu>
</div>
<div class="flex-1 overflow-scroll" style="height: calc(100vh - 54px);">
<template v-for="(onePlugin, pkey) in pluginsConfig" :key="pkey">
<div style="background-color: #f1f1f2;" v-if="pkey !== 'basic'" :ref="el => tabListRef[pkey] = el">
<cardList :onePlugin="onePlugin" />
</div>
<template v-else>
<div style="background-color: #f1f1f2;" v-for="(one, opkey) in onePlugin.child" :key="opkey"
:ref="el => tabListRef[one.name] = el">
<cardList :onePlugin="one" />
</div>
</template>
</template>
</div>
</div>
</template>
<script setup lang="ts">
import { ref } from 'vue';
import { defineRouteMeta } from '@fesjs/fes'; //fesJS的路由被他自己封装了
import { AppstoreOutlined, PictureOutlined } from '@fesjs/fes-design/icon';
import { getPluginsConfig } from '../common/utils';
import cardList from '../components/cardList.vue'
defineRouteMeta({
name: 'preview',
title: '开源框架展示',
});
const tabListRef = ref([])
let pluginsConfig = getPluginsConfig();
const goto = (value: string) => {
tabListRef.value[value.value]?.scrollIntoView({ behavior: 'smooth', block: 'center', inline: "nearest" })
}
</script>
<style lang="less">
.layout-logo {
/* margin-right: 6.2em !important; */
width: 12.5rem !important;
padding: 0 !important;
justify-content: center !important;
margin: 0 !important;
}
</style>