openDoor.vue 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. <!-- 一键开门 -->
  2. <template>
  3. <view class="">
  4. <image src="../../static/history_top_bgimage@2x.png" style="width: 100%;height: 278rpx;"></image>
  5. <view class="main">
  6. <view class="item">
  7. <view class="leftIcon">
  8. <image src="../../static/open_icon@2x.png" style="width: 100%;height: 100%;"></image>
  9. </view>
  10. <view class="" style="position: absolute;left: 100rpx;">
  11. <view class="name">花园小区</view>
  12. <view class="dec">
  13. 1号楼 2单元 602
  14. </view>
  15. </view>
  16. <view class="rightIcon">
  17. <image src="../../static/open_icon_key@2x.png" style="width: 100%;height: 100%;"></image>
  18. </view>
  19. </view>
  20. <view class="item">
  21. <view class="leftIcon">
  22. <image src="../../static/open_icon@2x.png" style="width: 100%;height: 100%;"></image>
  23. </view>
  24. <view class="" style="position: absolute;left: 100rpx;">
  25. <view class="name">花园小区</view>
  26. <view class="dec">
  27. 1号楼 2单元 602
  28. </view>
  29. </view>
  30. <view class="rightIcon">
  31. <image src="../../static/open_icon_key@2x.png" style="width: 100%;height: 100%;"></image>
  32. </view>
  33. </view>
  34. <view class="item">
  35. <view class="leftIcon">
  36. <image src="../../static/open_icon@2x.png" style="width: 100%;height: 100%;"></image>
  37. </view>
  38. <view class="" style="position: absolute;left: 100rpx;">
  39. <view class="name">花园小区</view>
  40. <view class="dec">
  41. 1号楼 2单元 602
  42. </view>
  43. </view>
  44. <view class="rightIcon">
  45. <image src="../../static/open_icon_key@2x.png" style="width: 100%;height: 100%;"></image>
  46. </view>
  47. </view>
  48. <view class="item">
  49. <view class="leftIcon">
  50. <image src="../../static/open_icon@2x.png" style="width: 100%;height: 100%;"></image>
  51. </view>
  52. <view class="" style="position: absolute;left: 100rpx;">
  53. <view class="name">花园小区</view>
  54. <view class="dec">
  55. 1号楼 2单元 602
  56. </view>
  57. </view>
  58. <view class="rightIcon">
  59. <image src="../../static/open_icon_key@2x.png" style="width: 100%;height: 100%;"></image>
  60. </view>
  61. </view>
  62. <view class="item">
  63. <view class="leftIcon">
  64. <image src="../../static/open_icon@2x.png" style="width: 100%;height: 100%;"></image>
  65. </view>
  66. <view class="" style="position: absolute;left: 100rpx;">
  67. <view class="name">花园小区</view>
  68. <view class="dec">
  69. 1号楼 2单元 602
  70. </view>
  71. </view>
  72. <view class="rightIcon">
  73. <image src="../../static/open_icon_key@2x.png" style="width: 100%;height: 100%;"></image>
  74. </view>
  75. </view>
  76. <view class="item">
  77. <view class="leftIcon">
  78. <image src="../../static/open_icon@2x.png" style="width: 100%;height: 100%;"></image>
  79. </view>
  80. <view class="" style="position: absolute;left: 100rpx;">
  81. <view class="name">花园小区</view>
  82. <view class="dec">
  83. 1号楼 2单元 602
  84. </view>
  85. </view>
  86. <view class="rightIcon">
  87. <image src="../../static/open_icon_key@2x.png" style="width: 100%;height: 100%;"></image>
  88. </view>
  89. </view>
  90. <view class="item">
  91. <view class="leftIcon">
  92. <image src="../../static/open_icon@2x.png" style="width: 100%;height: 100%;"></image>
  93. </view>
  94. <view class="" style="position: absolute;left: 100rpx;">
  95. <view class="name">花园小区</view>
  96. <view class="dec">
  97. 1号楼 2单元 602
  98. </view>
  99. </view>
  100. <view class="rightIcon">
  101. <image src="../../static/open_icon_key@2x.png" style="width: 100%;height: 100%;"></image>
  102. </view>
  103. </view>
  104. <view class="item">
  105. <view class="leftIcon">
  106. <image src="../../static/open_icon@2x.png" style="width: 100%;height: 100%;"></image>
  107. </view>
  108. <view class="" style="position: absolute;left: 100rpx;">
  109. <view class="name">花园小区</view>
  110. <view class="dec">
  111. 1号楼 2单元 602
  112. </view>
  113. </view>
  114. <view class="rightIcon">
  115. <image src="../../static/open_icon_key@2x.png" style="width: 100%;height: 100%;"></image>
  116. </view>
  117. </view>
  118. </view>
  119. <!-- 解锁记录按钮 -->
  120. <button class="btn" @tap="seeList">解锁记录</button>
  121. </view>
  122. </template>
  123. <script>
  124. export default {
  125. data() {
  126. return {
  127. }
  128. },
  129. methods:{
  130. // 查看解锁记录
  131. seeList(){
  132. uni.navigateTo({
  133. url:"./openDoorList"
  134. })
  135. }
  136. }
  137. }
  138. </script>
  139. <style scoped>
  140. .btn{
  141. width:702rpx;
  142. height:90rpx;
  143. background:rgba(41,138,253,1);
  144. opacity:1;
  145. border-radius:18rpx;
  146. position: fixed;
  147. bottom: 56rpx;
  148. left: 24rpx;
  149. font-size:32rpx;
  150. font-family:PingFang SC;
  151. font-weight:bold;
  152. color:rgba(255,255,255,1);
  153. }
  154. .dec{
  155. width:244rpx;
  156. height:40rpx;
  157. font-size:28rpx;
  158. font-family:PingFang SC;
  159. font-weight:400;
  160. color:rgba(51,51,51,1);
  161. margin-top: 12rpx;
  162. }
  163. .name{
  164. width:132rpx;
  165. height:44rpx;
  166. font-size:32rpx;
  167. font-family:PingFang SC;
  168. font-weight:bold;
  169. color:rgba(41,138,253,1);
  170. margin-top: 38rpx;
  171. }
  172. .item{
  173. width: 702rpx;
  174. height: 170rpx;
  175. border-bottom:2px solid rgba(247,247,247,1); ;
  176. margin: 0 auto;
  177. display: flex;
  178. position: relative;
  179. }
  180. .leftIcon{
  181. width: 60rpx;
  182. height: 60rpx;
  183. position: absolute;
  184. left: 24rpx;
  185. bottom: 60rpx;
  186. }
  187. .rightIcon{
  188. width: 80rpx;
  189. height: 80rpx;
  190. position: absolute;
  191. right: 24rpx;
  192. bottom: 44rpx;
  193. }
  194. .main{
  195. width: 100%;
  196. position: absolute;
  197. top: 0rpx;
  198. }
  199. </style>