储能智慧云小程序
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

index.wxml 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!--pages/user/index.wxml-->
  2. <view class="user_user">
  3. <view class="user_box">
  4. <view class="allocation_box1">
  5. <view class="allocation_boxc">头像</view>
  6. <image class="user_to" src="https://esos-iot.com/wx_images/to1.jpg" mode=""/>
  7. </view>
  8. <view class="allocation_box">
  9. <view class="allocation_boxc">昵称</view>
  10. <view>{{user.user.userName}}</view>
  11. </view>
  12. </view>
  13. <view class="user_box">
  14. <view class="allocation_box">
  15. <view class="allocation_boxc">部门:</view>
  16. <view>{{user.user.dept.deptName}}</view>
  17. </view>
  18. <view class="allocation_box">
  19. <view class="allocation_boxc">账号:</view>
  20. <view>{{user.user.loginName}}</view>
  21. </view>
  22. <view class="allocation_box">
  23. <view class="allocation_boxc">性别:</view>
  24. <view wx:if="{{user.user.sex==0}}">男</view>
  25. <view wx:if="{{user.user.sex==1}}">女</view>
  26. </view>
  27. <view class="allocation_box">
  28. <view class="allocation_boxc">电话:</view>
  29. <view>{{user.user.phonenumber}}</view>
  30. </view>
  31. <view class="allocation_box">
  32. <view class="allocation_boxc">邮箱:</view>
  33. <view>{{user.user.email}}</view>
  34. </view>
  35. <view class="allocation_box">
  36. <view class="allocation_boxc">创建时间:</view>
  37. <view>{{user.user.createTime}}</view>
  38. </view>
  39. <view class="allocation_box">
  40. <view class="allocation_boxc">备注:</view>
  41. <view>{{user.user.remark}}</view>
  42. </view>
  43. </view>
  44. </view>