学员端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1023 B

  1. <template>
  2. <view class="pageBgImg">
  3. <topNavbar title="我的信息"></topNavbar>
  4. <view class="pad">
  5. <view class="card">
  6. <view class="row border">
  7. <view class="lab">真实姓名</view>
  8. <view class="val">{{ vuex_userInfo.name }}</view>
  9. </view>
  10. <view class="row border">
  11. <view class="lab">证件号</view>
  12. <view class="val">{{ vuex_userInfo.idcard }}</view>
  13. </view>
  14. <view class="row border">
  15. <view class="lab">性别</view>
  16. <view class="val">{{ vuex_userInfo.sex==1?'男':'女' }}</view>
  17. </view>
  18. <view class="row ">
  19. <view class="lab">地址</view>
  20. <view class="val">{{ vuex_userInfo.address }}</view>
  21. </view>
  22. </view>
  23. </view>
  24. </view>
  25. </template>
  26. <style lang="scss" scoped>
  27. .card {
  28. padding: 6rpx;
  29. margin-bottom: 20rpx;
  30. }
  31. .row {
  32. display: flex;
  33. align-items: center;
  34. justify-content: space-between;
  35. height: 98rpx;
  36. font-size: 28rpx;
  37. padding: 0 30rpx;
  38. &.border {
  39. border-bottom: 2rpx solid #E8E9EC;
  40. }
  41. }
  42. </style>