<template>
|
<div class="top">
|
<div class="topleft">
|
<div
|
class="topleft1 topleftC"
|
:class="{ topleft1: screen == false, topleftC: screen == true }"
|
>
|
<img src="../../assets/img/Screen/bigST.png" />
|
<span>大屏视图</span>
|
</div>
|
<div
|
class="topleft1 topleftC"
|
:class="{ topleft1: tree == false, topleftC: tree == true }"
|
>
|
<img src="../../assets/img/Screen/ptree.png" />
|
<span>工程项目</span>
|
</div>
|
</div>
|
<div class="topCenter">
|
<div>管网一张图</div>
|
</div>
|
<div class="topRight">
|
<div class="topright1 toprightC" @click="ReturnLast">
|
<img src="../../assets/img/Screen/return.png" />
|
<span>返回上级</span>
|
</div>
|
</div>
|
</div>
|
</template>
|
<script>
|
export default {
|
data() {
|
return {
|
tree: false,
|
screen: false,
|
}
|
},
|
mounted() {},
|
methods: {
|
ReturnLast() {
|
this.$router.push("/Synthesis")
|
},
|
},
|
}
|
</script>
|
<style lang="scss">
|
.top {
|
height: 100%;
|
width: 100%;
|
background-image: url(../../assets/img/Screen/logobg.png);
|
background-size: 100% 100%;
|
background-repeat: no-repeat;
|
display: flex;
|
flex-direction: row;
|
.topleft {
|
width: 20%;
|
height: 100%;
|
display: flex;
|
flex-direction: row;
|
align-items: flex-end;
|
justify-content: space-around;
|
cursor: pointer;
|
.topleft1 {
|
width: 131px;
|
height: 40px;
|
background-image: url(../../assets/img/Screen/btnc.png);
|
background-repeat: no-repeat;
|
background-size: 100% 100%;
|
display: flex;
|
align-items: center;
|
}
|
.topleftC {
|
width: 131px;
|
height: 40px;
|
background-image: url(../../assets/img/Screen/btnbg.png);
|
background-repeat: no-repeat;
|
background-size: 100% 100%;
|
display: flex;
|
align-items: center;
|
}
|
img {
|
height: 26px;
|
width: 32px;
|
margin: 0px 8px;
|
}
|
span {
|
color: #b3c8e3;
|
font-size: 1rem;
|
letter-spacing: 1px;
|
}
|
}
|
.topCenter {
|
width: 60%;
|
height: 100%;
|
font-size: 2rem;
|
text-align: center;
|
font-weight: 600;
|
font-style: italic;
|
letter-spacing: 5px;
|
color: #e3eafd;
|
div {
|
margin-top: 5px;
|
}
|
}
|
.topRight {
|
width: 20%;
|
height: 100%;
|
display: flex;
|
flex-direction: row;
|
align-items: flex-end;
|
justify-content: flex-end;
|
cursor: pointer;
|
.topright1 {
|
width: 131px;
|
height: 40px;
|
background-image: url(../../assets/img/Screen/btnc.png);
|
background-repeat: no-repeat;
|
background-size: 100% 100%;
|
display: flex;
|
align-items: center;
|
margin-right: 10%;
|
}
|
.toprightC {
|
width: 131px;
|
height: 40px;
|
background-image: url(../../assets/img/Screen/btnbg.png);
|
background-repeat: no-repeat;
|
background-size: 100% 100%;
|
display: flex;
|
align-items: center;
|
margin-right: 10%;
|
}
|
img {
|
height: 26px;
|
width: 32px;
|
margin: 0px 8px;
|
}
|
span {
|
color: #b3c8e3;
|
font-size: 1rem;
|
letter-spacing: 1px;
|
}
|
}
|
}
|
</style>
|