mine.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. <template>
  2. <view class="content">
  3. <view class="box">
  4. <u-navbar title="我的" titleStyle="color: #fff;" @leftClick="leftClick" height="44px" bgColor="rgb(255,255,255,0)" :placeholder="true"></u-navbar>
  5. <view class="top hflex acenter">
  6. <image :src="user.headimg" mode="aspectFill" class="avatar"></image>
  7. <view class="top_text">{{user.nickname}}</view>
  8. </view>
  9. <view class="hflex acenter jbetween tabs">
  10. <block v-for="(item,index) in tabs" :key="index">
  11. <view class="vflex acenter tab_item" @click="toDetail(item.url)">
  12. <image :src="item.src" class="tab_icon"></image>
  13. <view class="tab_text">{{item.name}}</view>
  14. </view>
  15. </block>
  16. </view>
  17. <view class="order">
  18. <view class="hflex acenter jbetween">
  19. <view class="title">我的订单</view>
  20. <view class="right" @click="toOrder(0)">查看全部</view>
  21. </view>
  22. <view class="hflex acenter jbetween" style="margin-top: 32rpx;">
  23. <block v-for="(item,index) in orderList" :key="index">
  24. <view class="vflex acenter order_item" @click="toOrder(item.id)">
  25. <image :src="item.src" mode="aspectFill" class="order_icon"></image>
  26. <view class="order_text">{{item.name}}</view>
  27. </view>
  28. </block>
  29. </view>
  30. </view>
  31. </view>
  32. </view>
  33. </template>
  34. <script>
  35. import $api from '@/static/js/api.js'
  36. var that = ''
  37. export default {
  38. data() {
  39. return {
  40. user: {},
  41. tabs: [
  42. {
  43. src: '/static/images/shop/consulting.png',
  44. name: '消息',
  45. url: '/page_shop/pages/mine/chat'
  46. },
  47. {
  48. src: '/static/images/shop/collect.png',
  49. name: '收藏',
  50. url: '/page_shop/pages/mine/collect'
  51. },
  52. {
  53. src: '/static/images/shop/address.png',
  54. name: '地址',
  55. url: '/page_shop/pages/address/list'
  56. }
  57. ],
  58. orderList: [
  59. {
  60. src: '/static/images/shop/order_icon1.png',
  61. name: '待付款',
  62. id: 1,
  63. },
  64. {
  65. src: '/static/images/shop/order_icon2.png',
  66. name: '待发货',
  67. id: 2,
  68. },
  69. {
  70. src: '/static/images/shop/order_icon3.png',
  71. name: '待收货',
  72. id: 3,
  73. },
  74. {
  75. src: '/static/images/shop/order_icon4.png',
  76. name: '退款/售后',
  77. id: 4,
  78. }
  79. ]
  80. }
  81. },
  82. onLoad() {
  83. that = this
  84. that.getUser()
  85. },
  86. methods: {
  87. // 返回
  88. leftClick() {
  89. console.log('返回');
  90. $api.jump(-1)
  91. },
  92. getUser() {
  93. $api.req({
  94. url: '/data/api.auth.Center/get'
  95. }, function(res) {
  96. if(res.code == 1) {
  97. that.user = res.data
  98. }
  99. })
  100. },
  101. // 进入详情页面
  102. toDetail(url) {
  103. $api.jump(url)
  104. },
  105. toOrder(id) {
  106. if(id == 4) {
  107. $api.jump('/page_shop/pages/order/refund')
  108. } else {
  109. $api.jump('/page_shop/pages/order/list?id=' + id)
  110. }
  111. }
  112. },
  113. }
  114. </script>
  115. <style lang="scss" scoped>
  116. .content {
  117. background: #F5F5F5;
  118. .box {
  119. width: 100%;
  120. background: linear-gradient(360deg, #F5F5F5 0%, #506DFF 100%);
  121. box-sizing: border-box;
  122. padding: 0 30rpx;
  123. .top {
  124. width: 100%;
  125. padding: 8rpx 0 30rpx;
  126. .avatar {
  127. width: 120rpx;
  128. height: 120rpx;
  129. border-radius: 50%;
  130. border: 2px solid #FFFFFF;
  131. }
  132. .top_text {
  133. font-size: 40rpx;
  134. font-weight: 500;
  135. color: #FFFFFF;
  136. line-height: 56rpx;
  137. margin-left: 12rpx;
  138. }
  139. }
  140. .tabs {
  141. padding: 30rpx 0 40rpx;
  142. .tab_item {
  143. width: 33%;
  144. text-align: center;
  145. .tab_icon {
  146. width: 52rpx;
  147. height: 52rpx;
  148. }
  149. .tab_text {
  150. font-size: 26rpx;
  151. font-weight: 400;
  152. color: #FFFFFF;
  153. line-height: 36rpx;
  154. padding-top: 12rpx;
  155. }
  156. }
  157. }
  158. .order {
  159. width: 100%;
  160. box-sizing: border-box;
  161. padding: 24rpx 20rpx;
  162. background: #FFFFFF;
  163. border-radius: 10px;
  164. .title {
  165. font-size: 28rpx;
  166. font-weight: 500;
  167. color: #0A0A0A;
  168. line-height: 40rpx;
  169. }
  170. .right {
  171. font-size: 24rpx;
  172. font-weight: 400;
  173. color: #B4B4B4;
  174. line-height: 34rpx;
  175. }
  176. .order_item{
  177. width: 25%;
  178. text-align: center;
  179. .order_icon {
  180. width: 52rpx;
  181. height: 52rpx;
  182. }
  183. .order_text {
  184. padding-top: 24rpx;
  185. font-size: 26rpx;
  186. font-weight: 400;
  187. color: #0A0A0A;
  188. line-height: 36rpx;
  189. }
  190. }
  191. }
  192. }
  193. }
  194. </style>