bonus-ui/src/views/screen/wsScreen/index.vue

63 lines
1.3 KiB
Vue
Raw Normal View History

2025-09-16 18:09:52 +08:00
<template>
<div id="index" ref="appRef">
2025-10-29 16:31:30 +08:00
<div class="bg" id="app">
2025-09-16 18:09:52 +08:00
<el-row :gutter="20">
<el-col :span="7" :offset="0"><left /></el-col>
<el-col :span="10" :offset="0"><center /></el-col>
<el-col :span="7" :offset="0"><right /></el-col>
</el-row>
</div>
</div>
</template>
<script>
2025-10-29 16:31:30 +08:00
// import drawMixin from '@/utils/drawMixin2'
2025-09-16 18:09:52 +08:00
import left from './components/left'
import center from './components/center'
import right from './components/right'
export default {
2025-10-29 16:31:30 +08:00
// mixins: [drawMixin],
2025-09-16 18:09:52 +08:00
components: {
left,
center,
right,
},
data() {
return {}
},
mounted() {},
beforeDestroy() {},
methods: {},
}
</script>
<style lang="scss" scoped>
@font-face {
font-family: 'DS-TITle';
src: url('../../../assets/font-family/DS-Digital/DS-TITle.ttf');
}
#index {
color: #d3d6dd;
2025-11-20 13:38:35 +08:00
width: 100%;
height: 100%;
2025-10-29 16:31:30 +08:00
/* width: 1920px;
height: 1080px; */
/* position: absolute; */
/* top: 50%;
2025-09-16 18:09:52 +08:00
left: 50%;
transform: translate(-50%, -50%);
2025-10-29 16:31:30 +08:00
transform-origin: left top; */
2025-09-16 18:09:52 +08:00
overflow: hidden;
2025-10-29 16:31:30 +08:00
background-image: url('../../screen/wsScreen/img/bg.jpg');
background-size: 100% 100%;
background-position: center center;
2025-09-16 18:09:52 +08:00
.bg {
2025-10-29 16:31:30 +08:00
/* width: 100vw;
height: 100vh; */
padding: 79px 2% 0 2%;
2025-09-16 18:09:52 +08:00
}
}
</style>