moreInfo.vue 2.5 KB

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