minorcontrol.vue
1.69 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
60
61
62
63
64
65
66
67
68
69
70
71
72
<template>
<view class="page">
<pyh-nv ref="nv" :config="nvConfig"></pyh-nv>
<view class="listBox" :style="{'padding-top':(pageTop+'px')}">
<web-view :src="qw"></web-view>
<!-- <view class="content">
<view class="topimg"><image src="../../static/img/02.jpg" mode="widthFix"></image></view>
<view class="message-list">
<view class="titleall-box">
<view class="titleall-left"><view class="titleall-left-line"></view>监控信息</view>
</view>
<view class="list">
<view class="icon-data">
<view class="data">
<view class="title">
<text>监控位置</text>
</view>
</view>
</view>
<view class="more">
<text>仁寿县景观兴城13栋1308客厅</text>
</view>
</view>
<view class="list">
<view class="icon-data">
<view class="data">
<view class="title">
<text>监控对象</text>
</view>
</view>
</view>
<view class="more">
<text>蒋涵越</text>
</view>
</view>
</view>
</view> -->
</view>
</view>
</template>
<script>
export default {
data() {
return {
qw:'https://antis6.sherkxuan.cn/demo/miniindex.html?12&666',
nvConfig:{
title:"动态监控",
bgColor:"#ffffff",
color:"#000000",
fixedAssist:{
hide:true,
},
},
}
},
onPageScroll(e) {this.$refs.nv.pageScroll(e)},
computed:{
pageTop(){return parseInt(88*uni.getSystemInfoSync().windowWidth/750) + uni.getSystemInfoSync().statusBarHeight}
},
onLoad() {
},
methods:{
}
}
</script>
<style scoped lang="scss">
@import 'minorcontrol.scss';
</style>