userManagement.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <template>
  2. <view class="bgClass">
  3. <navigation whiteColor="true" type="true" :name="$t('共享用户')" />
  4. <view class="user-card">
  5. <view class="flex-row align-center user-card-heard">
  6. <img style="width: 48rpx;height: 48rpx;" src="https://qiniu.bms16.com/FieeNq75ybyjIzQO6fmNcdTlRsp5" alt="">
  7. <text style="margin-left: 16rpx;">{{ $t('共享用户') }}</text>
  8. </view>
  9. <view class="user-card-text">{{ $t('家人、朋友长期共用车辆,授权账户可以使用感应解锁,寻车定位,查看设置等功能;') }}</view>
  10. <!-- <view v-for="(item,index) in userList" :key="index"> -->
  11. <view @click="srcFn(`/pages/powerSetting/powerSetting?id=${item.target_user_id}`)" v-for="(item,index) of list" :key="index" class="user-list flex-row align-center">
  12. <image class="user-heard-img" :src="item.headimg || defaultHeadImg" mode="aspectFill"></image>
  13. <view class="user-name-view">
  14. <view class="user-name">{{item.nickname}}</view>
  15. <view class="user-email">{{item.email}}</view>
  16. </view>
  17. <img class="user-nav-img" src="https://qiniu.bms16.com/FqnbZ2iKHmzCGJA8XD30sf5g_CAm" alt="">
  18. </view>
  19. <view @click="addUser" class="flex-row user-card-btn align-center">
  20. <img style="width: 20rpx;height: 20rpx;" src="https://qiniu.bms16.com/FvP_5VTgawzExIHW3kJahXAvE04z" alt="">
  21. <text style="margin-left: 6rpx;">{{ $t('添加成员') }}</text>
  22. </view>
  23. </view>
  24. </view>
  25. </template>
  26. <script>
  27. var config = require('../../common/config_gyq.js');
  28. var http = require('../../common/request.js');
  29. import {
  30. defaultHeadImg
  31. } from '@/common/constant'
  32. export default {
  33. data() {
  34. return {
  35. defaultHeadImg,
  36. list:[],
  37. car_info:{}
  38. };
  39. }
  40. /**
  41. * 生命周期函数--监听页面加载
  42. */
  43. ,
  44. onLoad: function(options) {
  45. // this.listFn()
  46. this.car_info = uni.getStorageSync('car_info') || {};
  47. },
  48. onShow() {
  49. this.listFn()
  50. },
  51. methods: {
  52. srcFn(url){
  53. uni.navigateTo({
  54. url
  55. })
  56. },
  57. addUser(){
  58. if(this.car_info.car_sn){
  59. uni.navigateTo({
  60. url:`/pages/addUser/addUser`
  61. })
  62. return
  63. }
  64. this.$msg('您还未绑定车辆!')
  65. },
  66. async listFn(){
  67. let {data} = await http.postApi(config.API_FLK_CAR_SHARE_LIST,{
  68. car_sn:this.car_info.car_sn
  69. })
  70. if(data.code == 200){
  71. this.list = data.data.list || []
  72. }
  73. }
  74. }
  75. };
  76. </script>
  77. <style>
  78. .bgClass {
  79. height: 396rpx;
  80. background: url('https://qiniu.bms16.com/Fvu5ulYgrXiB_0cXs715TcvYYnsb') no-repeat;
  81. background-size: cover;
  82. }
  83. .user-card{
  84. background: #FFFFFF;
  85. border-radius: 40rpx;
  86. border: 4rpx solid #FFFFFF;
  87. margin: 24rpx;
  88. padding: 32rpx 32rpx 48rpx ;
  89. }
  90. .align-center{
  91. align-items: center;
  92. }
  93. .user-card-heard{
  94. font-weight: 600;
  95. font-size: 40rpx;
  96. color: #060809;
  97. margin-bottom: 16rpx;
  98. }
  99. .user-card-text{
  100. font-weight: 400;
  101. font-size: 28rpx;
  102. color: #060809;
  103. margin-bottom: 40rpx;
  104. opacity: 0.4;
  105. }
  106. .user-card-btn{
  107. justify-content: center;
  108. font-weight: 600;
  109. font-size: 32rpx;
  110. color: #060809;
  111. }
  112. .user-heard-img{
  113. width: 112rpx;
  114. height: 112rpx;
  115. border-radius: 50%;
  116. }
  117. .user-name-view{
  118. margin-bottom: 48rpx;
  119. display: flex;
  120. flex-direction: column;
  121. flex-grow: 1;
  122. margin-left: 24rpx;
  123. padding: 0 18rpx;
  124. }
  125. .user-name{
  126. font-weight: 600;
  127. font-size: 32rpx;
  128. color: #060809;
  129. padding-bottom:20rpx ;
  130. }
  131. .user-email{
  132. font-weight: 500;
  133. font-size: 24rpx;
  134. color: #060809;
  135. opacity: 0.6;
  136. }
  137. .user-nav-img{
  138. width: 28rpx;
  139. height: 28rpx;
  140. }
  141. </style>