user.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <template>
  2. <view class="content">
  3. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  4. <view style="height: 43px;" class="topH"></view>
  5. <view class="topNavBox">
  6. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  7. <view class="indexnav">我的</view>
  8. </view>
  9. <view class="top1">
  10. <view class="touxiang">
  11. <image class="touxiangImg" src="/static/img/touxiang.png" mode=""></image>
  12. <view class="nickName">微信用户</view>
  13. </view>
  14. </view>
  15. <view class="fuwu">
  16. <view class="fuwuTitle">我的服务</view>
  17. <view class="lineBox">
  18. <view class="line" @click="gohistory">
  19. <image src="/static/img/lscx.png" mode="" class="lineImg"></image>
  20. <view class="lineTxt">历史查询</view>
  21. </view>
  22. </view>
  23. </view>
  24. </view>
  25. </template>
  26. <script>
  27. export default {
  28. props:['iStatusBarHeight',],
  29. components: {
  30. },
  31. data() {
  32. return {
  33. iStatusBarHeight:'',
  34. }
  35. },
  36. onLoad() {
  37. },
  38. onShow() {
  39. },
  40. methods: {
  41. gohistory(){
  42. uni.navigateTo({
  43. url:'/pages/index/history'
  44. })
  45. },
  46. },
  47. onShareAppMessage(){
  48. }
  49. }
  50. </script>
  51. <style scoped>
  52. .content{
  53. height: 100vh;
  54. background: #F4F5F7;
  55. }
  56. .top1{
  57. height: 300rpx;
  58. background: #FF4F00;
  59. border-radius: 0 0 5% 5%;
  60. }
  61. .indexnav{
  62. height: 44px;
  63. line-height: 44px;
  64. text-align: center;
  65. font-size: 36rpx;
  66. /* color: #FFFFFF; */
  67. }
  68. .topNavBox{
  69. background: #FF4F00;
  70. width: 750rpx;
  71. position: fixed;
  72. top: 0;
  73. left: 0;
  74. z-index: 111;
  75. color: #FFF;
  76. }
  77. .topH{
  78. background: #FF4F00;
  79. }
  80. .status_bar{
  81. background: #FF4F00;
  82. }
  83. .touxiangImg{
  84. width: 90rpx;height: 90rpx;
  85. }
  86. .nickName{
  87. line-height: 90rpx;
  88. font-size: 32rpx;
  89. color: #FFFFFF;
  90. padding-left: 20rpx;
  91. }
  92. .touxiang{
  93. display: flex;
  94. padding-left: 40rpx;
  95. padding-top: 40rpx;
  96. }
  97. .fuwu{
  98. width: 702rpx;
  99. margin-left: 24rpx;
  100. background: #FFFFFF;
  101. border-radius: 16rpx;
  102. margin-top: -100rpx;
  103. }
  104. .fuwuTitle{
  105. font-weight: 500;
  106. font-size: 28rpx;
  107. color: #1A1A1A;
  108. padding-top: 30rpx;padding-left: 30rpx;
  109. }
  110. .line{
  111. text-align: center;
  112. }
  113. .lineImg{
  114. width: 90rpx;height: 90rpx;
  115. }
  116. .lineTxt{
  117. font-size: 26rpx;
  118. color: #1A1A1A;
  119. }
  120. .lineBox{
  121. display: flex;
  122. padding-left: 55rpx;
  123. padding-bottom: 30rpx;
  124. }
  125. </style>