no message

This commit is contained in:
hawk86104 2023-11-05 10:16:54 +08:00
parent 4d1c8f592a
commit 54201bfffd
5 changed files with 97 additions and 10 deletions

View File

@ -4,7 +4,7 @@
* @Autor: 地虎降天龙 * @Autor: 地虎降天龙
* @Date: 2023-10-16 10:53:09 * @Date: 2023-10-16 10:53:09
* @LastEditors: 地虎降天龙 * @LastEditors: 地虎降天龙
* @LastEditTime: 2023-11-03 14:33:58 * @LastEditTime: 2023-11-05 10:15:03
*/ */
// import { resolve } from 'path'; // import { resolve } from 'path';
import { join } from 'path'; import { join } from 'path';
@ -27,11 +27,7 @@ export default defineBuildConfig({
// isFixedSidebar: true, // isFixedSidebar: true,
// sideWidth: 800, // sideWidth: 800,
logo: 'logo.png', logo: 'logo.png',
menus: [ menus: [],
{
name: 'index',
},
],
}, },
enums: { enums: {
status: [ status: [

View File

@ -4,7 +4,7 @@
* @Autor: 地虎降天龙 * @Autor: 地虎降天龙
* @Date: 2023-10-16 10:53:09 * @Date: 2023-10-16 10:53:09
* @LastEditors: 地虎降天龙 * @LastEditors: 地虎降天龙
* @LastEditTime: 2023-11-05 09:29:30 * @LastEditTime: 2023-11-05 09:58:02
--> -->
# 🧊🧊🧊 icegl-three-vue-tres 🧊🧊🧊 # 🧊🧊🧊 icegl-three-vue-tres 🧊🧊🧊
## 🎉🎉🎊 三维可视化项目快速落地の开源框架 🎊🎉🎉 ## 🎉🎉🎊 三维可视化项目快速落地の开源框架 🎊🎉🎉
@ -26,6 +26,13 @@ ThreeJS大名鼎鼎的基于浏览器渲染JavaScript语言的3D库。
使用Vue3.x组件实现声明式的ThreeJS做属于前端的三维项目。 使用Vue3.x组件实现声明式的ThreeJS做属于前端的三维项目。
# 🏕点击预览:[🌏opensource.icegl.cn](http://opensource.icegl.cn)
pic1
pic2
....
# 优势 # 优势
- 🌈 前端の基本素养 * FesJS [点击详情](https://fesjs.mumblefe.cn) - 🌈 前端の基本素养 * FesJS [点击详情](https://fesjs.mumblefe.cn)
@ -82,6 +89,6 @@ ThreeJS大名鼎鼎的基于浏览器渲染JavaScript语言的3D库。
本项目包含的第三方源码和二进制文件之版权信息另行标注。 本项目包含的第三方源码和二进制文件之版权信息另行标注。
版权所有Copyright © 2022-2025 by 🧊Ice.gl (https://www.icegl.cn) 版权所有Copyright © 2022-2025 by 🧊icegl (https://www.icegl.cn)
All rights reserved。 All rights reserved。

View File

@ -4,7 +4,7 @@
* @Autor: 地虎降天龙 * @Autor: 地虎降天龙
* @Date: 2023-10-16 10:53:09 * @Date: 2023-10-16 10:53:09
* @LastEditors: 地虎降天龙 * @LastEditors: 地虎降天龙
* @LastEditTime: 2023-11-04 19:01:15 * @LastEditTime: 2023-11-05 10:15:53
*/ */
import { defineRuntimeConfig,useModel } from '@fesjs/fes'; import { defineRuntimeConfig,useModel } from '@fesjs/fes';
@ -39,6 +39,9 @@ export default defineRuntimeConfig({
{ {
name: 'index', name: 'index',
}, },
// {
// name: 'preview',
// },
], ],
}, },
}); });

View File

@ -4,7 +4,7 @@
* @Autor: 地虎降天龙 * @Autor: 地虎降天龙
* @Date: 2023-10-16 10:53:09 * @Date: 2023-10-16 10:53:09
* @LastEditors: 地虎降天龙 * @LastEditors: 地虎降天龙
* @LastEditTime: 2023-11-03 16:29:18 * @LastEditTime: 2023-11-05 10:15:59
--> -->
<template> <template>
<div class="flex h-full"> <div class="flex h-full">

81
src/pages/preview.vue Normal file
View File

@ -0,0 +1,81 @@
<!--
* @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>