123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- <template>
- <view class="container-view">
- <div :style="'padding-top:'+sumHeight+'px;height:0'"></div>
- <img src="https://qiniu.bms16.com/Fg8_p7083jpsy8BXG4bR6yMs7jQX" style="width: 100%;height: 526rpx;" alt="">
- <view class="btnWrap">
- <view class="btnClass" @tap="toDashboard">
- <view class="margin_r">
- <img src="https://qiniu.bms16.com/Fjx1qYpRoVX6dqg1sGqn1Lzn6Bpc" style="width: 80rpx;height: 80rpx;"
- alt="">
- </view>
- <view class="text">
- 仪表盘
- </view>
- <img src="https://qiniu.bms16.com/FqnbZ2iKHmzCGJA8XD30sf5g_CAm" style="width: 28rpx;height: 28rpx;"
- alt="">
- </view>
- <view class="btnClass" @tap="toDeviceInfo">
- <view class="margin_r">
- <img src="https://qiniu.bms16.com/FpRgmuTWpd-QyPbl_yuavOM7NtVb" style="width: 80rpx;height: 80rpx;"
- alt="">
- </view>
- <view class="text">
- 设备信息
- </view>
- <img src="https://qiniu.bms16.com/FqnbZ2iKHmzCGJA8XD30sf5g_CAm" style="width: 28rpx;height: 28rpx;"
- alt="">
- </view>
- </view>
- <view class="imgWrpa" @tap="toBack">
- <img src="https://qiniu.bms16.com/FpfRLdpO1VjkzytUI72T36V1_j9n" style="width: 112rpx;height: 112rpx;"
- alt="">
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- statusBarHeight: 0,
- navabarHeight: 0,
- sumHeight:0
- }
- },
- onLoad(){
- const clientRect = uni.getMenuButtonBoundingClientRect()
- const sysinfo = uni.getSystemInfoSync()
- let GAP = 8
- // #ifdef MP-ALIPAY
- GAP = 0
- // #endif
- const navabarHeight = (clientRect.bottom - sysinfo.statusBarHeight) + (clientRect.top - sysinfo.statusBarHeight) + GAP
- this.navabarHeight = navabarHeight
- this.statusBarHeight = sysinfo.statusBarHeight
- this.sumHeight = this.statusBarHeight+this.navabarHeight
- },
- methods: {
- toDashboard() {
- uni.navigateTo({
- url: '/pages/dashboard/dashboard'
- })
- },
- toDeviceInfo() {
- uni.navigateTo({
- url: '/pages/deviceInfo/deviceInfo'
- })
- },
- toBack(){
- uni.navigateTo({
- url: '/pages/index/index'
- })
- },
-
- }
- }
- </script>
- <style lang="scss" scoped>
- .container-view {
- height: 100vh;
- background-image: url('https://qiniu.bms16.com/Fj2y3PaoJrfoS5XOk9YACac7TNQQ');
- .btnWrap {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .btnClass {
- padding: 0 48rpx;
- display: flex;
- align-items: center;
- width: 686rpx;
- height: 176rpx;
- background: #FFFFFF;
- border-radius: 40rpx;
- margin-bottom: 28rpx;
- font-weight: 600;
- font-size: 40rpx;
- color: #060809;
- font-style: normal;
- .margin_r {
- margin-right: 24rpx;
- }
- .text {
- flex: 1;
- }
- }
- .imgWrpa {
- display: flex;
- justify-content: center;
- margin-top: 36rpx;
- }
- }
- </style>
|