江西小程序管理端
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.

90 lines
1.9 KiB

1 year ago
1 year ago
1 year ago
  1. <template>
  2. <view class="pageBgImg">
  3. <topNavbar title="人个中心"></topNavbar>
  4. <view class="pad">
  5. <view class="card">
  6. <view class="row">
  7. <view class="lab">手机号</view>
  8. <view class="val">18267103167</view>
  9. </view>
  10. </view>
  11. <!-- <view class="card">
  12. <view class="row border">
  13. <view class="lab">我的驾校</view>
  14. <view class="val">江西海正驾校</view>
  15. </view>
  16. <view class="row border">
  17. <view class="lab">我的教练</view>
  18. <view class="val">xxx</view>
  19. </view>
  20. <view class="row border">
  21. <view class="lab">所学车型</view>
  22. <view class="val">xxx</view>
  23. </view>
  24. <view class="row">
  25. <view class="lab">报名时间</view>
  26. <view class="val">xxx</view>
  27. </view>
  28. </view> -->
  29. <view class="card">
  30. <view class="row">
  31. <view class="lab">收款银行卡</view>
  32. <view class="val">48372*****03928</view>
  33. </view>
  34. </view>
  35. <view class="btnBox">
  36. <view class="logout" @click="$goPage('/pages/userCenter/login/login')">退出登录</view>
  37. <view class="logout" @click="$goPage('/pages/userCenter/forgetPwd/forgetPwd')">修改密码</view>
  38. </view>
  39. </view>
  40. </view>
  41. </template>
  42. <script>
  43. export default {
  44. }
  45. </script>
  46. <style lang="scss" scoped>
  47. .card {
  48. padding: 6rpx;
  49. margin-bottom: 20rpx;
  50. }
  51. .row {
  52. display: flex;
  53. align-items: center;
  54. justify-content: space-between;
  55. height: 98rpx;
  56. font-size: 28rpx;
  57. padding: 0 30rpx;
  58. &.border {
  59. border-bottom: 2rpx solid #E8E9EC;
  60. }
  61. }
  62. .btnBox {
  63. display: flex;
  64. justify-content: center;
  65. flex-direction: column;
  66. width: 100%;
  67. align-items: center;
  68. margin: 88rpx 0;
  69. }
  70. .logout {
  71. width: 396rpx;
  72. height: 72rpx;
  73. background: #FFFFFF;
  74. border-radius: 8rpx;
  75. border: 2rpx solid #E8E9EC;
  76. font-size: 28rpx;
  77. color: #ADADAD;
  78. text-align: center;
  79. line-height: 72rpx;
  80. margin-bottom: 30rpx;
  81. }
  82. </style>