moreInfo.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <template>
  2. <view class="container-view">
  3. <div :style="'padding-top:'+sumHeight+'px;height:0'"></div>
  4. <img src="https://qiniu.bms16.com/Fg8_p7083jpsy8BXG4bR6yMs7jQX" style="width: 100%;height: 526rpx;" alt="">
  5. <view class="btnWrap">
  6. <view class="btnClass" @tap="toDashboard">
  7. <view class="margin_r">
  8. <img src="https://qiniu.bms16.com/Fjx1qYpRoVX6dqg1sGqn1Lzn6Bpc" style="width: 80rpx;height: 80rpx;"
  9. alt="">
  10. </view>
  11. <view class="text">
  12. 仪表盘
  13. </view>
  14. <img src="https://qiniu.bms16.com/FqnbZ2iKHmzCGJA8XD30sf5g_CAm" style="width: 28rpx;height: 28rpx;"
  15. alt="">
  16. </view>
  17. <view class="btnClass" @tap="toDeviceInfo">
  18. <view class="margin_r">
  19. <img src="https://qiniu.bms16.com/FpRgmuTWpd-QyPbl_yuavOM7NtVb" style="width: 80rpx;height: 80rpx;"
  20. alt="">
  21. </view>
  22. <view class="text">
  23. 设备信息
  24. </view>
  25. <img src="https://qiniu.bms16.com/FqnbZ2iKHmzCGJA8XD30sf5g_CAm" style="width: 28rpx;height: 28rpx;"
  26. alt="">
  27. </view>
  28. </view>
  29. <view class="imgWrpa" @tap="toBack">
  30. <img src="https://qiniu.bms16.com/FpfRLdpO1VjkzytUI72T36V1_j9n" style="width: 112rpx;height: 112rpx;"
  31. alt="">
  32. </view>
  33. </view>
  34. </template>
  35. <script>
  36. export default {
  37. data() {
  38. return {
  39. statusBarHeight: 0,
  40. navabarHeight: 0,
  41. sumHeight:0
  42. }
  43. },
  44. onLoad(){
  45. const clientRect = uni.getMenuButtonBoundingClientRect()
  46. const sysinfo = uni.getSystemInfoSync()
  47. let GAP = 8
  48. // #ifdef MP-ALIPAY
  49. GAP = 0
  50. // #endif
  51. const navabarHeight = (clientRect.bottom - sysinfo.statusBarHeight) + (clientRect.top - sysinfo.statusBarHeight) + GAP
  52. this.navabarHeight = navabarHeight
  53. this.statusBarHeight = sysinfo.statusBarHeight
  54. this.sumHeight = this.statusBarHeight+this.navabarHeight
  55. },
  56. methods: {
  57. toDashboard() {
  58. uni.navigateTo({
  59. url: '/pages/dashboard/dashboard'
  60. })
  61. },
  62. toDeviceInfo() {
  63. uni.navigateTo({
  64. url: '/pages/deviceInfo/deviceInfo'
  65. })
  66. },
  67. toBack(){
  68. uni.navigateTo({
  69. url: '/pages/index/index'
  70. })
  71. },
  72. }
  73. }
  74. </script>
  75. <style lang="scss" scoped>
  76. .container-view {
  77. height: 100vh;
  78. background-image: url('https://qiniu.bms16.com/Fj2y3PaoJrfoS5XOk9YACac7TNQQ');
  79. .btnWrap {
  80. display: flex;
  81. flex-direction: column;
  82. justify-content: center;
  83. align-items: center;
  84. }
  85. .btnClass {
  86. padding: 0 48rpx;
  87. display: flex;
  88. align-items: center;
  89. width: 686rpx;
  90. height: 176rpx;
  91. background: #FFFFFF;
  92. border-radius: 40rpx;
  93. margin-bottom: 28rpx;
  94. font-weight: 600;
  95. font-size: 40rpx;
  96. color: #060809;
  97. font-style: normal;
  98. .margin_r {
  99. margin-right: 24rpx;
  100. }
  101. .text {
  102. flex: 1;
  103. }
  104. }
  105. .imgWrpa {
  106. display: flex;
  107. justify-content: center;
  108. margin-top: 36rpx;
  109. }
  110. }
  111. </style>