|
@@ -1,30 +1,7 @@
|
|
<template>
|
|
<template>
|
|
- <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>
|
|
|
|
|
|
+ <div>
|
|
|
|
+ <el-button type="primary" size="default">首页</el-button>
|
|
|
|
+ </div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<route>
|
|
<route>
|
|
@@ -37,9 +14,7 @@
|
|
<script>
|
|
<script>
|
|
import { useStore } from '../../store/user.js'
|
|
import { useStore } from '../../store/user.js'
|
|
import tokenStore from '../../store/token.js'
|
|
import tokenStore from '../../store/token.js'
|
|
-import screen from '../../components/screen.vue'
|
|
|
|
export default {
|
|
export default {
|
|
- components: { screen },
|
|
|
|
setup() {
|
|
setup() {
|
|
const store = useStore()
|
|
const store = useStore()
|
|
const token = tokenStore()
|
|
const token = tokenStore()
|
|
@@ -51,36 +26,7 @@ export default {
|
|
height: '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: {
|
|
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() {
|
|
|
|
- const box = this.$refs.content.offsetWidth
|
|
|
|
- this.width = box
|
|
|
|
- this.height = this.$refs.content.offsetHeight
|
|
|
|
- console.log(this.width)
|
|
|
|
- },
|
|
|
|
push() {
|
|
push() {
|
|
this.$router.push({ path: '/setting', query: { id: 12, type: 'test' } })
|
|
this.$router.push({ path: '/setting', query: { id: 12, type: 'test' } })
|
|
}
|
|
}
|