19 lines
333 B
Vue
19 lines
333 B
Vue
|
|
<template>
|
|||
|
|
<div class="bottom-info">
|
|||
|
|
系统名称:基建现场物联感知数据监测分析系统
|
|||
|
|
<div>
|
|||
|
|
版本:v1.0
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
</template>
|
|||
|
|
|
|||
|
|
<style lang="scss">
|
|||
|
|
.bottom-info{
|
|||
|
|
width: 100%;
|
|||
|
|
height: 10%;
|
|||
|
|
text-align: left;
|
|||
|
|
font-size: 25px;
|
|||
|
|
font-weight: bold;
|
|||
|
|
color: #1E67E7;
|
|||
|
|
}
|
|||
|
|
</style>
|