mine.vue 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  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" @click="toMoney">
  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" @click="toService(1)">
  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" @click="toService(2)">
  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" @click="toService(3)">
  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" @click="toService(4)">
  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" @click="toService(5)">
  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. },
  111. onShow() {
  112. that.isLogin()
  113. that.getUser()
  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. } else if(res.code == 0) {
  123. uni.removeStorageSync('token')
  124. that.login = false
  125. that.user = {}
  126. }
  127. })
  128. },
  129. isLogin() {
  130. var token = uni.getStorageSync('token')
  131. if(token) {
  132. that.login = true
  133. } else {
  134. that.login = false
  135. }
  136. },
  137. toLogin() {
  138. if(!that.login) {
  139. $api.jump('/pages/login/login/login')
  140. }
  141. },
  142. toMoney() {
  143. if(that.login) {
  144. $api.jump('/pages/mine/wallet/wallet')
  145. } else {
  146. $api.info('请先登录')
  147. }
  148. },
  149. toService(index) {
  150. var url = ''
  151. switch(index) {
  152. case 1 :
  153. url = '/pages/mine/service/feed/feed';
  154. break;
  155. case 2 :
  156. url = '/pages/mine/service/feed/feed';
  157. break;
  158. case 3 :
  159. url = '/pages/mine/service/feed/feed';
  160. break;
  161. case 4 :
  162. url = '/pages/mine/service/feed/feed';
  163. break;
  164. case 5 :
  165. url = '/pages/mine/service/setting/setting';
  166. break;
  167. }
  168. if(that.login) {
  169. $api.jump(url)
  170. } else {
  171. $api.info('请先登录')
  172. }
  173. },
  174. },
  175. }
  176. </script>
  177. <style lang="scss" scoped>
  178. .content {
  179. background: url('/static/images/mine/bg.png') no-repeat;
  180. background-size: 100%;
  181. // padding: 0 30rpx;
  182. .top {
  183. width: 100%;
  184. padding: 188rpx 0 0 30rpx;
  185. .user_name {
  186. font-size: 36rpx;
  187. font-weight: 500;
  188. color: #222222;
  189. line-height: 50rpx;
  190. padding-left: 16rpx;
  191. }
  192. .message {
  193. width: 104rpx;
  194. height: 68rpx;
  195. background: rgba(255,255,255,0.6);
  196. border-radius: 28rpx 0px 0px 28rpx;
  197. position: relative;
  198. }
  199. }
  200. .box {
  201. width: 100%;
  202. box-sizing: border-box;
  203. padding: 0 30rpx;
  204. .amount {
  205. width: 100%;
  206. height: 144rpx;
  207. box-sizing: border-box;
  208. padding: 0 24rpx;
  209. margin: 36rpx 0 20rpx;
  210. background: url('/static/images/mine/amount_bg.png') no-repeat;
  211. background-size: 100%;
  212. .amount_left {
  213. font-size: 30rpx;
  214. font-weight: 400;
  215. color: #FFFFFF;
  216. line-height: 42rpx;
  217. }
  218. .amount_right {
  219. font-size: 48rpx;
  220. font-weight: 400;
  221. color: #FFFFFF;
  222. line-height: 58rpx;
  223. }
  224. }
  225. .order {
  226. width: 100%;
  227. height: 240rpx;
  228. background: #FFFFFF;
  229. border-radius: 20rpx;
  230. .order_top {
  231. padding: 24rpx 30rpx 0;
  232. .order_title {
  233. font-size: 28rpx;
  234. font-weight: 500;
  235. color: #0A0A0A;
  236. line-height: 40rpx;
  237. }
  238. .order_right {
  239. font-size: 22rpx;
  240. font-weight: 400;
  241. color: #B4B4B4;
  242. line-height: 32rpx;
  243. }
  244. }
  245. .order_list {
  246. padding: 32rpx 0;
  247. .order_item {
  248. width: 25%;
  249. position: relative;
  250. .order_text {
  251. font-size: 24rpx;
  252. font-weight: 400;
  253. color: #0A0A0A;
  254. line-height: 34rpx;
  255. padding-top: 26rpx;
  256. }
  257. }
  258. }
  259. }
  260. .cell {
  261. margin: 20rpx 0 110rpx;
  262. width: 100%;
  263. height: 588rpx;
  264. background: #FFFFFF;
  265. border-radius: 20px;
  266. box-sizing: border-box;
  267. padding: 0 30rpx;
  268. .cell_item {
  269. height: 116rpx;
  270. padding: 34rpx 0;
  271. border-bottom: 1rpx solid #F4F4F4;
  272. .cell_text {
  273. padding-left: 20rpx;
  274. font-size: 26rpx;
  275. font-weight: 400;
  276. color: #222222;
  277. line-height: 36rpx;
  278. }
  279. }
  280. .cell_item:nth-last-child(1) {
  281. border-bottom: none;
  282. }
  283. }
  284. }
  285. }
  286. </style>