index.vue
1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<template>
<div class="bigScreen">
<div class="bigScreen-con" ref="appRef">
<dv-loading v-if="loading">Loading...</dv-loading>
<div v-else>
<div class="header">
<div class="d-flex head">
<dv-decoration-10 class="dv-dec-10" />
<div class="d-flex">
<dv-decoration-8 class="dv-dec-8" :color="decorationColor" />
<div class="title">
<span class="title-text">汉中市不动产监管大屏</span>
<dv-decoration-5 :dur="1" class="dv-dec-5" :color="decorationColor" />
</div>
<dv-decoration-8 class="dv-dec-8" :reverse="true" :color="decorationColor" />
</div>
<dv-decoration-10 class="dv-dec-10-s" />
</div>
</div>
<screencontent />
</div>
</div>
</div>
</template>
<script>
import drawMixin from "../../utils/drawMixin";
import screencontent from './screencontent'
export default {
mixins: [drawMixin],
data () {
return {
loading: true,
decorationColor: ["#568aea", "#568aea"],
};
},
components: {
screencontent
},
mounted () {
// this.timeFn();
this.cancelLoading();
},
beforeDestroy () {
clearInterval(this.timing);
},
methods: {
cancelLoading () {
setTimeout(() => {
this.loading = false;
}, 500);
},
},
};
</script>
<style scoped lang="scss">
@import "./index.scss";
</style>