mine.vue 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  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="headImg?headImg:'../../static/qingShao.png'" style="width: 122rpx;height: 122rpx;border-radius: 50%;margin:18rpx;" ></image>
  7. </view>
  8. <view class="name" @tap="seeMyInfo">
  9. {{userName}}
  10. </view>
  11. <view class="phone" @tap="seeMyInfo">{{userPhone}}</view>
  12. <!-- 车辆数 -->
  13. <view class="carBox">
  14. <view class="leftCar" @tap="seeMyCar">
  15. <view class="num">{{carNum?carNum:0}}</view>
  16. <view class="text">汽车辆数</view>
  17. </view>
  18. <view class="rightCar" @tap="seeMyBike">
  19. <view class="num" style="width: 134rpx;">0</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. userName:uni.getStorageSync('userName'),
  79. headImg:uni.getStorageSync('headImg'),
  80. userPhone:uni.getStorageSync('userPhone'),
  81. carNum: 0, //汽车数量
  82. bikeNum: 0, //自行车数量
  83. headPhoto:'',
  84. }
  85. },
  86. onShow() {
  87. this.getCarData()
  88. // this.getUserData()
  89. },
  90. onLoad() {
  91. },
  92. methods: {
  93. // 获取汽车车辆数
  94. getCarData() {
  95. uni.showLoading({
  96. title: '加载中',
  97. 'icon': 'none'
  98. })
  99. this.http.httpRequest('/wxapplet/ownercar/list', 'get', {
  100. cardId: uni.getStorageSync('idNumber'),
  101. pageNum: 1,
  102. pageSize: 10
  103. }, true).then((res) => {
  104. uni.hideLoading()
  105. console.log(res)
  106. if (res.code == 0) {
  107. this.carNum = res.data.rows.length
  108. } else {
  109. uni.hideLoading()
  110. }
  111. }).catch(() => {
  112. uni.hideLoading()
  113. })
  114. },
  115. // 查看电动车
  116. seeMyBike() {
  117. uni.navigateTo({
  118. url: './myBike'
  119. })
  120. },
  121. // 访客信息
  122. visitorInfo() {
  123. uni.navigateTo({
  124. url: "../visitor/historyList"
  125. })
  126. },
  127. // 查看个人资料
  128. seeMyInfo() {
  129. uni.navigateTo({
  130. url: "myInfo"
  131. })
  132. },
  133. // 查看我的汽车
  134. seeMyCar() {
  135. uni.navigateTo({
  136. url: "myCar"
  137. })
  138. },
  139. // 查看我的房屋
  140. seeMyhouse() {
  141. uni.navigateTo({
  142. url: "myHouse"
  143. })
  144. },
  145. //更换人脸模板
  146. changeFace() {
  147. uni.navigateTo({
  148. url: "./face"
  149. })
  150. },
  151. // 查看我的家人
  152. seeMyFamily() {
  153. uni.navigateTo({
  154. url: "./family"
  155. })
  156. },
  157. // 查看我的消息
  158. seeMyMessage() {
  159. uni.navigateTo({
  160. url: "./message"
  161. })
  162. }
  163. }
  164. }
  165. </script>
  166. <style>
  167. .leftIcon {
  168. width: 38rpx;
  169. height: 40rpx;
  170. margin-top: 48rpx;
  171. }
  172. .item {
  173. width: 650rpx;
  174. height: 140rpx;
  175. margin: 0 auto;
  176. border-bottom: 2rpx solid rgba(245, 245, 245, 1);
  177. display: flex;
  178. }
  179. .main {
  180. width: 100%;
  181. margin-top: 50rpx;
  182. overflow: hidden;
  183. }
  184. .carBox {
  185. width: 650rpx;
  186. height: 170rpx;
  187. background: rgba(255, 255, 255, 1);
  188. box-shadow: 0rpx 6rpx 20rpx rgba(0, 0, 0, 0.12);
  189. opacity: 1;
  190. border-radius: 86rpx;
  191. position: absolute;
  192. left: 50rpx;
  193. bottom: -54rpx;
  194. display: flex;
  195. }
  196. .leftCar {
  197. width: 218rpx;
  198. height: 90rpx;
  199. margin-left: 108rpx;
  200. border-right: 2px solid rgba(247, 247, 247, 1);
  201. ;
  202. margin-top: 40rpx;
  203. }
  204. .rightCar {
  205. height: 90rpx;
  206. margin-top: 40rpx;
  207. margin-left: 96rpx;
  208. }
  209. .num {
  210. width: 108rpx;
  211. height: 44rpx;
  212. font-size: 32rpx;
  213. font-family: PingFang SC;
  214. font-weight: bold;
  215. color: rgba(51, 51, 51, 1);
  216. text-align: center;
  217. line-height: 44rpx;
  218. }
  219. .text {
  220. height: 36rpx;
  221. font-size: 26rpx;
  222. font-family: PingFang SC;
  223. font-weight: 400;
  224. color: rgba(51, 51, 51, 1);
  225. }
  226. .name {
  227. height: 50rpx;
  228. font-size: 36rpx;
  229. font-family: PingFang SC;
  230. font-weight: 400;
  231. color: rgba(255, 255, 255, 1);
  232. position: absolute;
  233. bottom: 216rpx;
  234. left: 220rpx;
  235. }
  236. .phone {
  237. width: 168rpx;
  238. height: 34rpx;
  239. font-size: 24rpx;
  240. font-family: PingFang SC;
  241. font-weight: 400;
  242. color: rgba(255, 255, 255, 1);
  243. position: absolute;
  244. bottom: 176rpx;
  245. left: 220rpx;
  246. }
  247. .topBox {
  248. width: 100%;
  249. height: 430rpx;
  250. position: relative;
  251. }
  252. .headPhoto {
  253. width: 160rpx;
  254. height: 160rpx;
  255. border: 2rpx solid rgba(255, 255, 255, 1);
  256. border-radius: 50%;
  257. opacity: 1;
  258. position: absolute;
  259. left: 50rpx;
  260. bottom: 142rpx;
  261. background: #000000;
  262. }
  263. </style>