# screen 初稿
This commit is contained in:
parent
080e696f26
commit
0f18df3e03
|
@ -3,11 +3,34 @@
|
||||||
<div class="device-base">
|
<div class="device-base">
|
||||||
<ul>
|
<ul>
|
||||||
<li>设备: <span>{{this.$store.getters.deviceID}}</span></li>
|
<li>设备: <span>{{this.$store.getters.deviceID}}</span></li>
|
||||||
<li>地区: <span>尖沙咀</span></li>
|
<li class="region">地区: <span>尖沙咀</span></li>
|
||||||
<li>设备名称: <span>香港大学1号机</span></li>
|
<li>设备名称: <span>香港大学1号机</span></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="device-screen"></div>
|
<div class="device-screen">
|
||||||
|
<table cellspacing="0">
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>0</td>
|
||||||
|
<td>1</td>
|
||||||
|
<td>8</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>0</td>
|
||||||
|
<td>8</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>2</td>
|
||||||
|
<td>2</td>
|
||||||
|
<td> </td>
|
||||||
|
<td>1</td>
|
||||||
|
<td>1</td>
|
||||||
|
<td>:</td>
|
||||||
|
<td>3</td>
|
||||||
|
<td>3</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
<div class="device-status"></div>
|
<div class="device-status"></div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -27,15 +50,38 @@ export default {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
.device-base {
|
.screen-wrapper {
|
||||||
display: flex;
|
overflow: auto;
|
||||||
justify-content: center;
|
.device-base {
|
||||||
ul {
|
display: flex;
|
||||||
li {
|
justify-content: center;
|
||||||
list-style-type: none;
|
min-width: 650px;
|
||||||
display: inline-block;
|
ul {
|
||||||
|
padding: 0;
|
||||||
|
li {
|
||||||
|
font-size: .9rem;
|
||||||
|
list-style-type: none;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
.region {
|
||||||
|
margin: 0 5rem 0 5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.device-screen {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
table {
|
||||||
|
border: 1px solid #666;
|
||||||
|
border-collapse: collapse;
|
||||||
|
text-align: center;
|
||||||
|
td {
|
||||||
|
border: 1px solid #666;
|
||||||
|
width: 1rem;
|
||||||
|
height: 1.5rem;
|
||||||
|
line-height: 1.5rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue