personal.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. <template>
  2. <view>
  3. <u-notify ref="uNotify" message="Hi uView"></u-notify>
  4. <!--头部-->
  5. <view class="my_top">
  6. <image src="../../static/images/top-bg.png" class="bg"></image>
  7. </view>
  8. <view class="list animated fadeInDown">
  9. <!--用户信息-->
  10. <view class="user">
  11. <image src="../../static/icon/user.png" mode="widthFix" class="head"></image>
  12. <view class="con">
  13. <view class="nickName omit">用户134****6556用户134****6556用户134****6556</view>
  14. <view class="tag">
  15. <text class="icon"></text>
  16. <text>普通边民</text>
  17. </view>
  18. </view>
  19. <text class="icon edit">&#xe645;</text>
  20. <view class="clear"></view>
  21. </view>
  22. <!--菜单-->
  23. <view class="menu">
  24. <view class="msn">
  25. <view class="out">
  26. <view class="int">
  27. <view class="icon ioc" style="background-color: #fff6e0; color: #f1ba41">&#xe686;</view>
  28. <view class="tit">我的订单</view>
  29. </view>
  30. </view>
  31. </view>
  32. <view class="msn">
  33. <view class="out">
  34. <view class="int">
  35. <view class="icon ioc" style="background-color: #e1f6e9; color: #47cf74">&#xe686;</view>
  36. <view class="tit">我的订单</view>
  37. </view>
  38. </view>
  39. </view>
  40. <view class="msn">
  41. <view class="out">
  42. <view class="int">
  43. <view class="icon ioc" style="background-color: #eaf1fe; color: #2a95fe">&#xe686;</view>
  44. <view class="tit">我的订单</view>
  45. </view>
  46. </view>
  47. </view>
  48. <view class="msn">
  49. <view class="out">
  50. <view class="int">
  51. <view class="icon ioc" style="background-color: #f0dcfc; color: #b064d8">&#xe686;</view>
  52. <view class="tit">我的订单</view>
  53. </view>
  54. </view>
  55. </view>
  56. <view class="clear"></view>
  57. </view>
  58. <view class="cmd">
  59. <view class="s_item" @click="show = true">
  60. <text class="icon ic">&#xe686;</text>
  61. <text class="title">常见问题</text>
  62. <text class="icon arrow">&#xe8f2;</text>
  63. </view>
  64. <view class="s_item" @click="show = true">
  65. <text class="icon ic">&#xe686;</text>
  66. <text class="title">联系我们</text>
  67. <text class="icon arrow">&#xe8f2;</text>
  68. </view>
  69. <view class="s_item" @click="show = true">
  70. <text class="icon ic">&#xe686;</text>
  71. <text class="title">用户协议</text>
  72. <text class="icon arrow">&#xe8f2;</text>
  73. </view>
  74. <view class="s_item" @click="show = true">
  75. <text class="icon ic">&#xe686;</text>
  76. <text class="title">隐私协议</text>
  77. <text class="icon arrow">&#xe8f2;</text>
  78. </view>
  79. <view class="s_item" @click="show = true">
  80. <text class="icon ic">&#xe686;</text>
  81. <text class="title">设置</text>
  82. <text class="icon arrow">&#xe8f2;</text>
  83. </view>
  84. </view>
  85. <button class="btn exit" @click="exitLogin()">退出登录</button>
  86. </view>
  87. </view>
  88. </template>
  89. <script>
  90. export default {
  91. data() {
  92. return {
  93. user: {}
  94. };
  95. },
  96. methods: {
  97. exitLogin() {
  98. uni.removeStorageSync('token');
  99. uni.removeStorageSync('info');
  100. uni.removeStorageSync('menu');
  101. this.$common.to('/pages/login/login');
  102. }
  103. }
  104. };
  105. </script>
  106. <style lang="scss">
  107. page {
  108. background-color: #f5f5f5;
  109. }
  110. .my_top {
  111. position: relative;
  112. overflow: hidden;
  113. image {
  114. width: 100%;
  115. }
  116. }
  117. .list {
  118. position: relative;
  119. padding: 0px 20px 10px 20px;
  120. margin-top: -196px;
  121. .user {
  122. background-color: white;
  123. padding: 20px;
  124. border-radius: 8px;
  125. color: $font-c;
  126. .head {
  127. float: left;
  128. width: 55px;
  129. height: 55px;
  130. }
  131. .con {
  132. float: left;
  133. padding-left: 15px;
  134. width: 60%;
  135. .nickName {
  136. font-size: 17px;
  137. font-weight: bold;
  138. }
  139. .tag {
  140. background-color: #6799ad;
  141. color: white;
  142. float: left;
  143. font-size: 13px;
  144. padding: 2px 6px;
  145. border-radius: 5px;
  146. margin-top: 6px;
  147. }
  148. }
  149. .edit {
  150. float: right;
  151. font-size: 20px;
  152. margin-top: 17px;
  153. }
  154. }
  155. }
  156. .exit {
  157. margin-top: 20px;
  158. background-color: white;
  159. color: $main-color;
  160. }
  161. </style>