|
@@ -1,7 +1,30 @@
|
|
|
<template>
|
|
|
- <div class='flex light-red-bg wrapper'>
|
|
|
- <el-button @click='push'>确定</el-button>
|
|
|
- </div>
|
|
|
+ <screen class='flex content flex-col'>
|
|
|
+ <div class="top">22</div>
|
|
|
+ <div class="full-width flex">
|
|
|
+ <div class="box flex flex-center blod font-32" ref="content">
|
|
|
+ {{ width }} * {{ height }}
|
|
|
+ </div>
|
|
|
+ <div class="box flex flex-center blod font-32" ref="content">
|
|
|
+ {{ width }} * {{ height }}
|
|
|
+ </div>
|
|
|
+ <div class="box flex flex-center blod font-32" ref="content">
|
|
|
+ {{ width }} * {{ height }}
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="full-width flex">
|
|
|
+ <div class="box flex flex-center blod font-32" ref="content">
|
|
|
+ {{ width }} * {{ height }}
|
|
|
+ </div>
|
|
|
+ <div class="box flex flex-center blod font-32" ref="content">
|
|
|
+ {{ width }} * {{ height }}
|
|
|
+ </div>
|
|
|
+ <div class="box flex flex-center blod font-32" ref="content">
|
|
|
+ {{ width }} * {{ height }}
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </screen>
|
|
|
</template>
|
|
|
|
|
|
<route>
|
|
@@ -14,15 +37,50 @@
|
|
|
<script>
|
|
|
import { useStore } from '../../store/user.js'
|
|
|
import tokenStore from '../../store/token.js'
|
|
|
+import screen from '../../components/screen.vue'
|
|
|
export default {
|
|
|
+ components:{screen},
|
|
|
setup () {
|
|
|
const store = useStore()
|
|
|
const token = tokenStore()
|
|
|
return { store, token }
|
|
|
},
|
|
|
- created () {
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ width: '22',
|
|
|
+ height: '22'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ mounted() {
|
|
|
+ this.init();
|
|
|
+ this.onresize = this.debounce(() => this.init(), 100);
|
|
|
+ window.addEventListener("resize", this.onresize);
|
|
|
+ },
|
|
|
+ beforeUnmount() {
|
|
|
+ window.removeEventListener("resize", this.onresize);
|
|
|
},
|
|
|
methods: {
|
|
|
+ debounce(fn, t) {
|
|
|
+ const delay = t || 500;
|
|
|
+ let timer;
|
|
|
+ return function () {
|
|
|
+ const args = arguments;
|
|
|
+ if (timer) {
|
|
|
+ clearTimeout(timer);
|
|
|
+ }
|
|
|
+ const that = this;
|
|
|
+ timer = setTimeout(() => {
|
|
|
+ timer = null;
|
|
|
+ fn.apply(that, args);
|
|
|
+ }, delay);
|
|
|
+ };
|
|
|
+ },
|
|
|
+ init(){
|
|
|
+ let box = this.$refs.content.offsetWidth
|
|
|
+ this.width = box
|
|
|
+ this.height = this.$refs.content.offsetHeight
|
|
|
+ console.log(this.width)
|
|
|
+ },
|
|
|
push () {
|
|
|
this.$router.push({ path: '/setting', query: { id: 12, type: 'test' } })
|
|
|
}
|
|
@@ -30,6 +88,21 @@ export default {
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
-<style scoped>
|
|
|
-
|
|
|
+<style lang="scss" scoped>
|
|
|
+.top {
|
|
|
+ width: 100vw;
|
|
|
+ height: 112px;
|
|
|
+ background-color: blueviolet;
|
|
|
+}
|
|
|
+.content{
|
|
|
+ background-image: url('https://blade-data.oss-cn-hangzhou.aliyuncs.com/upload/20210724/438e867a8de106e8a17feda3f8dd4c7f.png');
|
|
|
+ background-size: cover;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+}
|
|
|
+.box {
|
|
|
+ width: 541.6px;
|
|
|
+ height: 492.8px;
|
|
|
+ background-size: contain;
|
|
|
+ background-image: url('https://blade-data.oss-cn-hangzhou.aliyuncs.com/upload/20210724/25fb5c26d01122e8cd1aaccb026a5733.png');
|
|
|
+}
|
|
|
</style>
|