userManagement.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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" 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. export default {
  30. data() {
  31. return {
  32. list:[],
  33. car_info:{}
  34. };
  35. }
  36. /**
  37. * 生命周期函数--监听页面加载
  38. */
  39. ,
  40. onLoad: function(options) {
  41. // this.listFn()
  42. this.car_info = uni.getStorageSync('car_info') || {};
  43. },
  44. onShow() {
  45. this.listFn()
  46. },
  47. methods: {
  48. srcFn(url){
  49. uni.navigateTo({
  50. url
  51. })
  52. },
  53. addUser(){
  54. if(this.car_info.car_sn){
  55. uni.navigateTo({
  56. url:`/pages/addUser/addUser`
  57. })
  58. return
  59. }
  60. this.$msg('您还未绑定车辆!')
  61. },
  62. async listFn(){
  63. let {data} = await http.postApi(config.API_FLK_CAR_SHARE_LIST,{
  64. car_sn:this.car_info.car_sn
  65. })
  66. if(data.code == 200){
  67. this.list = data.data.list || []
  68. }
  69. }
  70. }
  71. };
  72. </script>
  73. <style scoped>
  74. .bgClass {
  75. height: 396rpx;
  76. background: url('https://qiniu.bms16.com/Fvu5ulYgrXiB_0cXs715TcvYYnsb') no-repeat;
  77. background-size: cover;
  78. }
  79. .user-card{
  80. background: #FFFFFF;
  81. border-radius: 40rpx;
  82. border: 4rpx solid #FFFFFF;
  83. margin: 24rpx;
  84. padding: 32rpx 32rpx 48rpx ;
  85. }
  86. .align-center{
  87. align-items: center;
  88. }
  89. .user-card-heard{
  90. font-weight: 600;
  91. font-size: 40rpx;
  92. color: #060809;
  93. margin-bottom: 16rpx;
  94. }
  95. .user-card-text{
  96. font-weight: 400;
  97. font-size: 28rpx;
  98. color: #060809;
  99. margin-bottom: 40rpx;
  100. opacity: 0.4;
  101. }
  102. .user-card-btn{
  103. justify-content: center;
  104. font-weight: 600;
  105. font-size: 32rpx;
  106. color: #060809;
  107. }
  108. .user-heard-img{
  109. width: 112rpx;
  110. height: 112rpx;
  111. border-radius: 50%;
  112. }
  113. .user-name-view{
  114. margin-bottom: 48rpx;
  115. display: flex;
  116. flex-direction: column;
  117. flex-grow: 1;
  118. margin-left: 24rpx;
  119. padding: 0 18rpx;
  120. }
  121. .user-name{
  122. font-weight: 600;
  123. font-size: 32rpx;
  124. color: #060809;
  125. padding-bottom:20rpx ;
  126. }
  127. .user-email{
  128. font-weight: 500;
  129. font-size: 24rpx;
  130. color: #060809;
  131. opacity: 0.6;
  132. }
  133. .user-nav-img{
  134. width: 28rpx;
  135. height: 28rpx;
  136. }
  137. </style>