This commit is contained in:
lb
2022-11-07 17:08:05 +08:00
parent 4d1231adc2
commit 60077b538a
21 changed files with 1270 additions and 83 deletions

View File

@@ -7,14 +7,14 @@
<script>
import { default as pic1 } from './assets/monitor/1.png'
import { default as pic2 } from './assets/monitor/2.png'
import { default as pic3 } from './assets/monitor/3.png'
// import { default as pic3 } from './assets/monitor/3.png'
export default {
name: '',
data() {
return {
images: [pic1, pic2, pic3]
images: [pic1, pic2]
}
},
created() {},
@@ -26,15 +26,15 @@ export default {
<style scoped>
.left-content-monitoring {
width: 100%;
/* height: calc(100% - 48px); */
height: calc(100% - 32px);
display: flex;
gap: calc(100vw / 1920 * 16);
}
.monitor-pic {
flex: 1;
height: 128px;
background-position: 100% 100%;
height: 100%;
width: 260px;
/* background-position: 100% 100%; */
background-size: cover;
background-repeat: no-repeat;
}