mine.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. <template>
  2. <view>
  3. <view class="topBox">
  4. <image src="../../static/login_bgground@2x.png" style="width: 100%;height: 100%;"></image>
  5. <view class="headPhoto" @tap="seeMyInfo">
  6. <image src="../../static/login_bgground@2x.png" style="width: 122rpx;height: 122rpx;border-radius: 50%;margin:18rpx;"></image>
  7. </view>
  8. <view class="name">
  9. 星河
  10. </view>
  11. <view class="phone">15825252525</view>
  12. <!-- 车辆数 -->
  13. <view class="carBox" @tap="seeMyCar">
  14. <view class="leftCar">
  15. <view class="num">10</view>
  16. <view class="text">轿车辆数</view>
  17. </view>
  18. <view class="rightCar">
  19. <view class="num" style="width: 134rpx;">1</view>
  20. <view class="text" style="width: 134rpx;">电动车辆数</view>
  21. </view>
  22. </view>
  23. </view>
  24. <!-- 菜单栏 -->
  25. <view class="main">
  26. <view class="item" @tap="seeMyhouse">
  27. <view class="leftIcon">
  28. <image src="../../static/my_icon_house@2x.png" style="width: 38rpx;height: 40rpx;"></image>
  29. </view>
  30. <view style="display: flex;justify-content: space-between;margin-left: 32rpx;width: 100%;margin-top: 48rpx;">
  31. <view class="title">我的房屋</view>
  32. <image src="../../static/icon_more@2x.png" style="width:15rpx ;height: 28rpx;margin-top: 8rpx;"></image>
  33. </view>
  34. </view>
  35. <view class="item" @tap="visitorInfo">
  36. <view class="leftIcon">
  37. <image src="../../static/my_icon_information@2x.png" style="width:40rpx;height:35rpx;margin-top: 5rpx;"></image>
  38. </view>
  39. <view style="display: flex;justify-content: space-between;margin-left: 32rpx;width: 100%;margin-top: 48rpx;">
  40. <view class="title">访客信息</view>
  41. <image src="../../static/icon_more@2x.png" style="width:15rpx ;height: 28rpx;margin-top: 8rpx;"></image>
  42. </view>
  43. </view>
  44. <view class="item" @tap="changeFace">
  45. <view class="leftIcon">
  46. <image src="../../static/my_icon_formwork@2x.png" style="width: 38rpx;height: 40rpx;"></image>
  47. </view>
  48. <view style="display: flex;justify-content: space-between;margin-left: 32rpx;width: 100%;margin-top: 48rpx;">
  49. <view class="title">人脸模板</view>
  50. <image src="../../static/icon_more@2x.png" style="width:15rpx ;height: 28rpx;margin-top: 8rpx;"></image>
  51. </view>
  52. </view>
  53. <view class="item" @tap="seeMyFamily">
  54. <view class="leftIcon">
  55. <image src="../../static/my_icon_family@2x.png" style="width: 38rpx;height: 40rpx;"></image>
  56. </view>
  57. <view style="display: flex;justify-content: space-between;margin-left: 32rpx;width: 100%;margin-top: 48rpx;">
  58. <view class="title">我的家人</view>
  59. <image src="../../static/icon_more@2x.png" style="width:15rpx ;height: 28rpx;margin-top: 8rpx;"></image>
  60. </view>
  61. </view>
  62. <view class="item" @tap="seeMyMessage">
  63. <view class="leftIcon">
  64. <image src="../../static/myMessage.png" style="width: 38rpx;height: 40rpx;"></image>
  65. </view>
  66. <view style="display: flex;justify-content: space-between;margin-left: 32rpx;width: 100%;margin-top: 48rpx;">
  67. <view class="title">我的消息</view>
  68. <image src="../../static/icon_more@2x.png" style="width:15rpx ;height: 28rpx;margin-top: 8rpx;"></image>
  69. </view>
  70. </view>
  71. </view>
  72. </view>
  73. </template>
  74. <script>
  75. export default{
  76. data(){
  77. return{
  78. }
  79. },
  80. methods:{
  81. // 访客信息
  82. visitorInfo(){
  83. uni.navigateTo({
  84. url:"../visitor/historyList"
  85. })
  86. },
  87. // 查看个人资料
  88. seeMyInfo(){
  89. uni.navigateTo({
  90. url:"myInfo"
  91. })
  92. },
  93. // 查看我的汽车
  94. seeMyCar(){
  95. uni.navigateTo({
  96. url:"myCar"
  97. })
  98. },
  99. // 查看我的房屋
  100. seeMyhouse(){
  101. uni.navigateTo({
  102. url:"myHouse"
  103. })
  104. },
  105. //更换人脸模板
  106. changeFace(){
  107. uni.navigateTo({
  108. url:"./face"
  109. })
  110. },
  111. // 查看我的家人
  112. seeMyFamily(){
  113. uni.navigateTo({
  114. url:"./family"
  115. })
  116. },
  117. // 查看我的消息
  118. seeMyMessage(){
  119. uni.navigateTo({
  120. url:"./message"
  121. })
  122. }
  123. }
  124. }
  125. </script>
  126. <style>
  127. .leftIcon{
  128. width:38rpx;
  129. height:40rpx;
  130. margin-top: 48rpx;
  131. }
  132. .item{
  133. width: 650rpx;
  134. height: 140rpx;
  135. margin: 0 auto;
  136. border-bottom:2rpx solid rgba(245,245,245,1);
  137. display: flex;
  138. }
  139. .main{
  140. width: 100%;
  141. margin-top: 50rpx;
  142. overflow: hidden;
  143. }
  144. .carBox{
  145. width:650rpx;
  146. height:170rpx;
  147. background:rgba(255,255,255,1);
  148. box-shadow:0rpx 6rpx 20rpx rgba(0,0,0,0.12);
  149. opacity:1;
  150. border-radius:86rpx;
  151. position: absolute;
  152. left: 50rpx;
  153. bottom: -54rpx;
  154. display: flex;
  155. }
  156. .leftCar{
  157. width: 218rpx;
  158. height: 90rpx;
  159. margin-left: 108rpx;
  160. border-right:2px solid rgba(247,247,247,1); ;
  161. margin-top: 40rpx;
  162. }
  163. .rightCar{
  164. height: 90rpx;
  165. margin-top: 40rpx;
  166. margin-left: 96rpx;
  167. }
  168. .num{
  169. width: 108rpx;
  170. height:44rpx;
  171. font-size:32rpx;
  172. font-family:PingFang SC;
  173. font-weight:bold;
  174. color:rgba(51,51,51,1);
  175. text-align: center;
  176. line-height: 44rpx;
  177. }
  178. .text{
  179. height:36rpx;
  180. font-size:26rpx;
  181. font-family:PingFang SC;
  182. font-weight:400;
  183. color:rgba(51,51,51,1);
  184. }
  185. .name{
  186. height: 50rpx;
  187. font-size:36rpx;
  188. font-family:PingFang SC;
  189. font-weight:400;
  190. color:rgba(255,255,255,1);
  191. position: absolute;
  192. bottom: 216rpx;
  193. left: 220rpx;
  194. }
  195. .phone{
  196. width:168rpx;
  197. height:34rpx;
  198. font-size:24rpx;
  199. font-family:PingFang SC;
  200. font-weight:400;
  201. color:rgba(255,255,255,1);
  202. position: absolute;
  203. bottom: 176rpx;
  204. left: 220rpx;
  205. }
  206. .topBox{
  207. width: 100%;
  208. height: 430rpx;
  209. position: relative;
  210. }
  211. .headPhoto{
  212. width:160rpx;
  213. height:160rpx;
  214. border:2rpx solid rgba(255,255,255,1);
  215. border-radius:50%;
  216. opacity:1;
  217. position: absolute;
  218. left: 50rpx;
  219. bottom: 142rpx;
  220. background:#000000;
  221. }
  222. </style>