mine.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. <template>
  2. <view class="content">
  3. <view class="top hflex acenter jbetween">
  4. <view class="hflex acenter" @click="toLogin">
  5. <u-avatar :src="user.headimg"></u-avatar>
  6. <view class="user_name">{{user.nickname?user.nickname:'请先登录'}}</view>
  7. </view>
  8. <view class="message hflex acenter jcenter">
  9. <image src="/static/images/mine/message.png" style="width: 48rpx;height: 48rpx;"></image>
  10. <u-badge max="99" :absolute="true" :offset="[1,1]" :value="user.message_num" v-if="user.message_num>0"></u-badge>
  11. </view>
  12. </view>
  13. <view class="box">
  14. <view class="amount hflex acenter jbetween">
  15. <view class="amount_left">我的余额</view>
  16. <view class="amount_right">¥{{user.money}}</view>
  17. </view>
  18. <view class="order">
  19. <view class="order_top hflex acenter jbetween">
  20. <view class="order_title">商城订单</view>
  21. <view class="order_right">查看全部</view>
  22. </view>
  23. <view class="order_list hflex acenter jcenter">
  24. <block v-for="(item,index) in orderList" :key="index">
  25. <view class="order_item vflex acenter jcenter">
  26. <image :src="item.img" style="width: 52rpx;height: 52rpx;"></image>
  27. <u-badge :absolute="true" :offset="[1,20]" max="99" :value="item.number" v-if="item.number>0"></u-badge>
  28. <view class="order_text">{{item.name}}</view>
  29. </view>
  30. </block>
  31. </view>
  32. </view>
  33. <view class="cell">
  34. <view class="cell_item hflex acenter jbetween">
  35. <view class="hflex acenter">
  36. <image src="/static/images/mine/cell1.png" style="width: 40rpx;height: 40rpx;"></image>
  37. <view class="cell_text">采购订单</view>
  38. </view>
  39. <u-icon name="arrow-right" color="#888888" size="12"></u-icon>
  40. </view>
  41. <view class="cell_item hflex acenter jbetween">
  42. <view class="hflex acenter">
  43. <image src="/static/images/mine/cell2.png" style="width: 40rpx;height: 40rpx;"></image>
  44. <view class="cell_text">商家详情</view>
  45. </view>
  46. <u-icon name="arrow-right" color="#888888" size="12"></u-icon>
  47. </view>
  48. <view class="cell_item hflex acenter jbetween">
  49. <view class="hflex acenter">
  50. <image src="/static/images/mine/cell3.png" style="width: 40rpx;height: 40rpx;"></image>
  51. <view class="cell_text">意见反馈</view>
  52. </view>
  53. <u-icon name="arrow-right" color="#888888" size="12"></u-icon>
  54. </view>
  55. <view class="cell_item hflex acenter jbetween">
  56. <view class="hflex acenter">
  57. <image src="/static/images/mine/cell4.png" style="width: 40rpx;height: 40rpx;"></image>
  58. <view class="cell_text">平台规则</view>
  59. </view>
  60. <u-icon name="arrow-right" color="#888888" size="12"></u-icon>
  61. </view>
  62. <view class="cell_item hflex acenter jbetween">
  63. <view class="hflex acenter">
  64. <image src="/static/images/mine/cell5.png" style="width: 40rpx;height: 40rpx;"></image>
  65. <view class="cell_text">设置</view>
  66. </view>
  67. <u-icon name="arrow-right" color="#888888" size="12"></u-icon>
  68. </view>
  69. </view>
  70. </view>
  71. <custom-tab-bar :current="3" />
  72. </view>
  73. </template>
  74. <script>
  75. import $api from '@/static/js/api.js'
  76. var that = ''
  77. export default {
  78. data() {
  79. return {
  80. user: {
  81. message_num: 12
  82. },
  83. login: true,
  84. orderList: [
  85. {
  86. img: '/static/images/mine/order1.png',
  87. name: '待付款',
  88. number: 12
  89. },
  90. {
  91. img: '/static/images/mine/order2.png',
  92. name: '待发货',
  93. number: 4
  94. },
  95. {
  96. img: '/static/images/mine/order3.png',
  97. name: '待收货',
  98. number: 0
  99. },
  100. {
  101. img: '/static/images/mine/order4.png',
  102. name: '退款/售后',
  103. number: 0
  104. }
  105. ]
  106. }
  107. },
  108. onLoad() {
  109. that = this
  110. that.getUser()
  111. },
  112. onShow() {
  113. that.isLogin()
  114. },
  115. methods: {
  116. getUser() {
  117. $api.req({
  118. url: '/data/api.business.User/user_info'
  119. }, function(res) {
  120. if(res.code == 1) {
  121. // that.user = res.data
  122. }
  123. })
  124. },
  125. isLogin() {
  126. var token = uni.getStorageSync('token')
  127. if(token) {
  128. that.login = true
  129. } else {
  130. that.login = false
  131. }
  132. },
  133. toLogin() {
  134. if(!that.login) {
  135. $api.jump('/pages/login/login/login')
  136. }
  137. }
  138. },
  139. }
  140. </script>
  141. <style lang="scss" scoped>
  142. .content {
  143. background: url('/static/images/mine/bg.png') no-repeat;
  144. background-size: 100%;
  145. // padding: 0 30rpx;
  146. .top {
  147. width: 100%;
  148. padding: 188rpx 0 0 30rpx;
  149. .user_name {
  150. font-size: 36rpx;
  151. font-weight: 500;
  152. color: #222222;
  153. line-height: 50rpx;
  154. padding-left: 16rpx;
  155. }
  156. .message {
  157. width: 104rpx;
  158. height: 68rpx;
  159. background: rgba(255,255,255,0.6);
  160. border-radius: 28rpx 0px 0px 28rpx;
  161. position: relative;
  162. }
  163. }
  164. .box {
  165. width: 100%;
  166. box-sizing: border-box;
  167. padding: 0 30rpx;
  168. .amount {
  169. width: 100%;
  170. height: 144rpx;
  171. box-sizing: border-box;
  172. padding: 0 24rpx;
  173. margin: 36rpx 0 20rpx;
  174. background: url('/static/images/mine/amount_bg.png') no-repeat;
  175. background-size: 100%;
  176. .amount_left {
  177. font-size: 30rpx;
  178. font-weight: 400;
  179. color: #FFFFFF;
  180. line-height: 42rpx;
  181. }
  182. .amount_right {
  183. font-size: 48rpx;
  184. font-weight: 400;
  185. color: #FFFFFF;
  186. line-height: 58rpx;
  187. }
  188. }
  189. .order {
  190. width: 100%;
  191. height: 240rpx;
  192. background: #FFFFFF;
  193. border-radius: 20rpx;
  194. .order_top {
  195. padding: 24rpx 30rpx 0;
  196. .order_title {
  197. font-size: 28rpx;
  198. font-weight: 500;
  199. color: #0A0A0A;
  200. line-height: 40rpx;
  201. }
  202. .order_right {
  203. font-size: 22rpx;
  204. font-weight: 400;
  205. color: #B4B4B4;
  206. line-height: 32rpx;
  207. }
  208. }
  209. .order_list {
  210. padding: 32rpx 0;
  211. .order_item {
  212. width: 25%;
  213. position: relative;
  214. .order_text {
  215. font-size: 24rpx;
  216. font-weight: 400;
  217. color: #0A0A0A;
  218. line-height: 34rpx;
  219. padding-top: 26rpx;
  220. }
  221. }
  222. }
  223. }
  224. .cell {
  225. margin: 20rpx 0 110rpx;
  226. width: 100%;
  227. height: 588rpx;
  228. background: #FFFFFF;
  229. border-radius: 20px;
  230. box-sizing: border-box;
  231. padding: 0 30rpx;
  232. .cell_item {
  233. height: 116rpx;
  234. padding: 34rpx 0;
  235. border-bottom: 1rpx solid #F4F4F4;
  236. .cell_text {
  237. padding-left: 20rpx;
  238. font-size: 26rpx;
  239. font-weight: 400;
  240. color: #222222;
  241. line-height: 36rpx;
  242. }
  243. }
  244. .cell_item:nth-last-child(1) {
  245. border-bottom: none;
  246. }
  247. }
  248. }
  249. }
  250. </style>