mine.vue 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  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" @click="toMessage">
  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" @click="toOrder(1)">查看全部</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" @click="toOrder(item.id)">
  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: 0
  82. },
  83. login: false,
  84. orderList: [
  85. {
  86. id: 2,
  87. img: '/static/images/mine/order1.png',
  88. name: '待付款',
  89. number: 0
  90. },
  91. {
  92. id: 3,
  93. img: '/static/images/mine/order2.png',
  94. name: '待发货',
  95. number: 0
  96. },
  97. {
  98. id: 4,
  99. img: '/static/images/mine/order3.png',
  100. name: '待收货',
  101. number: 0
  102. },
  103. {
  104. id: 5,
  105. img: '/static/images/mine/order4.png',
  106. name: '退款/售后',
  107. number: 0
  108. }
  109. ]
  110. }
  111. },
  112. onLoad() {
  113. that = this
  114. that.getNum()
  115. },
  116. onShow() {
  117. that.isLogin()
  118. that.getUser()
  119. },
  120. methods: {
  121. getUser() {
  122. $api.req({
  123. url: '/data/api.business.User/user_info'
  124. }, function(res) {
  125. if(res.code == 1) {
  126. that.user = res.data
  127. uni.setStorageSync('id',res.data.id)
  128. var options = {
  129. user: res.data.huanxinID,
  130. pwd: '12345678',
  131. appKey: uni.WebIM.config.appkey,
  132. success: function (res2) {
  133. wx.setStorageSync("myUsername",res.data.huanxinID)
  134. },
  135. error: function(error){
  136. console.log(error);
  137. }
  138. };
  139. uni.WebIM.conn.open(options);
  140. setTimeout(()=> {
  141. let option = {
  142. nickname: res.data.nickname,
  143. avatarurl: res.data.headimg,
  144. }
  145. uni.WebIM.conn.updateOwnUserInfo(option);
  146. },3000)
  147. } else {
  148. uni.removeStorageSync('token')
  149. that.login = false
  150. that.user = {}
  151. }
  152. })
  153. },
  154. getNum() {
  155. $api.req({
  156. url: '/data/api.business.Order/order_statistics'
  157. }, function(res) {
  158. if(res.code == 1) {
  159. for(var i=0;i<that.orderList.length;i++) {
  160. that.$set(that.orderList[i],'number',res.data[i])
  161. }
  162. }
  163. })
  164. },
  165. isLogin() {
  166. var token = uni.getStorageSync('token')
  167. if(token) {
  168. that.login = true
  169. } else {
  170. that.login = false
  171. }
  172. },
  173. toLogin() {
  174. if(!that.login) {
  175. $api.jump('/pages/login/login/login')
  176. }
  177. },
  178. toMessage() {
  179. if(that.login) {
  180. $api.jump('/pages/mine/message/index')
  181. } else {
  182. $api.info('请先登录')
  183. $api.jump('/pages/login/login/login')
  184. }
  185. },
  186. toMoney() {
  187. if(that.login) {
  188. $api.jump('/pages/mine/wallet/wallet')
  189. } else {
  190. $api.info('请先登录')
  191. $api.jump('/pages/login/login/login')
  192. }
  193. },
  194. toOrder(id) {
  195. if(!that.login) {
  196. $api.info('请先登录')
  197. $api.jump('/pages/login/login/login')
  198. return
  199. }
  200. if(id != 5) {
  201. $api.jump('/pages/order/list?status=' + id)
  202. } else {
  203. $api.jump('/pages/order/refund')
  204. }
  205. },
  206. toService(index) {
  207. var url = ''
  208. switch(index) {
  209. case 1 :
  210. url = '/pages/mine/service/purOrder/list';
  211. break;
  212. case 2 :
  213. url = '/pages/mine/service/detail';
  214. break;
  215. case 3 :
  216. url = '/pages/mine/service/feed/feed';
  217. break;
  218. case 4 :
  219. url = '/pages/mine/service/rule';
  220. break;
  221. case 5 :
  222. url = '/pages/mine/service/setting/setting';
  223. break;
  224. }
  225. if(that.login) {
  226. $api.jump(url)
  227. } else {
  228. $api.info('请先登录')
  229. $api.jump('/pages/login/login/login')
  230. }
  231. },
  232. },
  233. }
  234. </script>
  235. <style lang="scss" scoped>
  236. .content {
  237. background: url('/static/images/mine/bg.png') no-repeat;
  238. background-size: 100%;
  239. // padding: 0 30rpx;
  240. .top {
  241. width: 100%;
  242. padding: 188rpx 0 0 30rpx;
  243. .user_name {
  244. font-size: 36rpx;
  245. font-weight: 500;
  246. color: #222222;
  247. line-height: 50rpx;
  248. padding-left: 16rpx;
  249. }
  250. .message {
  251. width: 104rpx;
  252. height: 68rpx;
  253. background: rgba(255,255,255,0.6);
  254. border-radius: 28rpx 0px 0px 28rpx;
  255. position: relative;
  256. }
  257. }
  258. .box {
  259. width: 100%;
  260. box-sizing: border-box;
  261. padding: 0 30rpx;
  262. margin-bottom: 80rpx;
  263. .amount {
  264. width: 100%;
  265. height: 144rpx;
  266. box-sizing: border-box;
  267. padding: 0 24rpx;
  268. margin: 36rpx 0 20rpx;
  269. background: url('/static/images/mine/amount_bg.png') no-repeat;
  270. background-size: 100%;
  271. .amount_left {
  272. font-size: 30rpx;
  273. font-weight: 400;
  274. color: #FFFFFF;
  275. line-height: 42rpx;
  276. }
  277. .amount_right {
  278. font-size: 48rpx;
  279. font-weight: 400;
  280. color: #FFFFFF;
  281. line-height: 58rpx;
  282. }
  283. }
  284. .order {
  285. width: 100%;
  286. height: 240rpx;
  287. background: #FFFFFF;
  288. border-radius: 20rpx;
  289. .order_top {
  290. padding: 24rpx 30rpx 0;
  291. .order_title {
  292. font-size: 28rpx;
  293. font-weight: 500;
  294. color: #0A0A0A;
  295. line-height: 40rpx;
  296. }
  297. .order_right {
  298. font-size: 22rpx;
  299. font-weight: 400;
  300. color: #B4B4B4;
  301. line-height: 32rpx;
  302. }
  303. }
  304. .order_list {
  305. padding: 32rpx 0;
  306. .order_item {
  307. width: 25%;
  308. position: relative;
  309. .order_text {
  310. font-size: 24rpx;
  311. font-weight: 400;
  312. color: #0A0A0A;
  313. line-height: 34rpx;
  314. padding-top: 26rpx;
  315. }
  316. }
  317. }
  318. }
  319. .cell {
  320. margin: 20rpx 0 110rpx;
  321. width: 100%;
  322. height: 588rpx;
  323. background: #FFFFFF;
  324. border-radius: 20px;
  325. box-sizing: border-box;
  326. padding: 0 30rpx;
  327. .cell_item {
  328. height: 116rpx;
  329. padding: 34rpx 0;
  330. border-bottom: 1rpx solid #F4F4F4;
  331. .cell_text {
  332. padding-left: 20rpx;
  333. font-size: 26rpx;
  334. font-weight: 400;
  335. color: #222222;
  336. line-height: 36rpx;
  337. }
  338. }
  339. .cell_item:nth-last-child(1) {
  340. border-bottom: none;
  341. }
  342. }
  343. }
  344. }
  345. </style>