This commit is contained in:
parent
5cfffccfe8
commit
27573355d2
|
@ -1,16 +1,26 @@
|
||||||
|
<!--
|
||||||
|
* @Author: hisense.liangjunhua
|
||||||
|
* @Date: 2022-08-09 11:32:47
|
||||||
|
* @LastEditors: hisense.liangjunhua
|
||||||
|
* @LastEditTime: 2022-08-09 14:36:28
|
||||||
|
* @Description: 告诉大家这是什么
|
||||||
|
-->
|
||||||
<template>
|
<template>
|
||||||
<!-- <home-header></home-header> -->
|
<div class="capacitySquare">
|
||||||
<div class="box">
|
<div class="header">
|
||||||
<algorithm v-if="show === 'algorithm'"></algorithm>
|
<div class="left">城市云脑通用能力服务平台(UCS)</div>
|
||||||
<layer v-else-if="show === 'layer'"></layer>
|
应用广场
|
||||||
<application v-else-if="show === 'application'"></application>
|
</div>
|
||||||
|
<div class="light"></div>
|
||||||
|
<div class="box">
|
||||||
|
<algorithm v-if="show === 'algorithm'"></algorithm>
|
||||||
|
<layer v-else-if="show === 'layer'"></layer>
|
||||||
|
<application v-else-if="show === 'application'"></application>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- <home-footer></home-footer> -->
|
|
||||||
</template>
|
</template>
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref } from 'vue'
|
import { ref } from 'vue'
|
||||||
// import HomeHeader from '@/views/home/components/header'
|
|
||||||
// import HomeFooter from '@/views/newHome/components/Footer'
|
|
||||||
import algorithm from './components/algorithm.vue'
|
import algorithm from './components/algorithm.vue'
|
||||||
import layer from './components/layer.vue'
|
import layer from './components/layer.vue'
|
||||||
import application from './components/application.vue'
|
import application from './components/application.vue'
|
||||||
|
@ -29,7 +39,50 @@
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
.box {
|
@font-face {
|
||||||
// padding-top: 0.64rem;
|
font-family: 'webfont';
|
||||||
|
src: url('~@/assets/capacitySquare/webfont.ttf');
|
||||||
|
}
|
||||||
|
.capacitySquare {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background: url('~@/assets/capacitySquare/bg.png') no-repeat;
|
||||||
|
background-size: 100%;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
position: relative;
|
||||||
|
.header {
|
||||||
|
width: 100%;
|
||||||
|
height: 0.8rem;
|
||||||
|
background: url('~@/assets/capacitySquare/header-bg.png') no-repeat;
|
||||||
|
background-size: 100%;
|
||||||
|
color: #fff;
|
||||||
|
text-align: center;
|
||||||
|
font-family: webfont;
|
||||||
|
font-size: 0.5rem;
|
||||||
|
font-weight: 600;
|
||||||
|
.left {
|
||||||
|
position: absolute;
|
||||||
|
top: 0.05rem;
|
||||||
|
left: 1.5rem;
|
||||||
|
font-size: 0.18rem;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.light {
|
||||||
|
position: absolute;
|
||||||
|
top: 0.25rem;
|
||||||
|
left: 6.25rem;
|
||||||
|
z-index: 10;
|
||||||
|
width: 6.64rem;
|
||||||
|
height: 1.64rem;
|
||||||
|
background: url('~@/assets/capacitySquare/header-light.png') no-repeat;
|
||||||
|
background-size: 100%;
|
||||||
|
background-position: center;
|
||||||
|
}
|
||||||
|
.box {
|
||||||
|
flex: 1;
|
||||||
|
// padding: 0.5rem 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue