添加左侧面板组件leftPage.vue,包含光伏电站总览和主规模设备展示 新增smalltitle.vue组件用于标题展示 添加相关图片资源和字体文件 更新字体配置文件fonts.scss
22 lines
398 B
Vue
22 lines
398 B
Vue
<template>
|
|
<div class="ueScreen">
|
|
<Header />
|
|
<LeftPage />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Header from './components/header.vue';
|
|
import LeftPage from './components/leftPage.vue';
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import '@/views/ueScreen/gis.scss';
|
|
.ueScreen {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background-color: rgba(4, 7, 17, 0.8);
|
|
color: #fff;
|
|
}
|
|
</style>
|