学员端小程序
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.

123 lines
1.9 KiB

1 year ago
1 year ago
1 year ago
  1. <template>
  2. <view class="content pageBg">
  3. <!-- 学员名字 -->
  4. <view class="top_row flex-b">
  5. <view class="flex">
  6. <view class="userName">Hi大乔</view>
  7. <view class="arrowIcon">
  8. <image src="../../../static/images/userCenter/loginTopBg.png" mode=""></image>
  9. </view>
  10. </view>
  11. <view class="scanCode">
  12. <image src="../../../static/images/userCenter/loginTopBg.png" mode=""></image>
  13. </view>
  14. </view>
  15. <!-- 学车进度 -->
  16. <view class="userProgress">
  17. </view>
  18. <!-- 我的相关入口 -->
  19. <view class="ul">
  20. <view class="li">
  21. <view class="icon">
  22. <image src="../../../static/logo.png" mode=""></image>
  23. </view>
  24. <view class="text">我的预约</view>
  25. </view>
  26. </view>
  27. <!-- 业务办理 -->
  28. <view class="business ">
  29. <view class="h1">业务办理</view>
  30. <view class="card">
  31. <view class="item">
  32. <view class="icon">
  33. <image src="../../../static/logo.png" mode=""></image>
  34. </view>
  35. <view class="text">学时查询</view>
  36. </view>
  37. </view>
  38. </view>
  39. <!-- <UserTab selectedIndex ='2'></UserTab> -->
  40. </view>
  41. </template>
  42. <script>
  43. export default {
  44. data() {
  45. return {
  46. }
  47. },
  48. onLoad() {
  49. console.log('我的页面')
  50. },
  51. onShow() {
  52. // uni.hideTabBar();
  53. },
  54. methods: {
  55. goPage() {}
  56. }
  57. }
  58. </script>
  59. <style lang="scss" scoped>
  60. .content {
  61. width: 100vw;
  62. min-height: 100vh;
  63. background: url('../../../static/images/bigImg/topbg.png') no-repeat;
  64. background-size: 100% 362rpx;
  65. }
  66. .content {
  67. width: 100%;
  68. .top_row {
  69. .flex {
  70. .userName {
  71. }
  72. .arrowIcon {
  73. }
  74. }
  75. .scanCode {
  76. }
  77. }
  78. .userProgress {
  79. }
  80. .ul {
  81. .li {
  82. .icon {
  83. }
  84. .text {
  85. }
  86. }
  87. }
  88. .business {
  89. .h1 {
  90. }
  91. .card {
  92. .item {
  93. .icon {
  94. }
  95. .text {
  96. }
  97. }
  98. }
  99. }
  100. }
  101. </style>