Explorar el Código

cps:获取用户信息接口

panyong hace 3 años
padre
commit
f05872c73d
Se han modificado 2 ficheros con 44 adiciones y 29 borrados
  1. 33 26
      htmldev/cps/src/store/modules/common.js
  2. 11 3
      htmldev/cps/src/views/mine/index.vue

+ 33 - 26
htmldev/cps/src/store/modules/common.js

@@ -1,37 +1,43 @@
+import request from '@/api/request'
+
 const state = {
-  phone: '', // 登录手机号
-  token: '', // APP登录
-  BarList: [], // 所有酒吧列表
-  objCurrentBarInfo: {} // 当前所在酒吧
+  userinfo: {
+    user_head_img_url: '', // 用户头像
+    user_nickname: '', // 用户昵称
+    user_sex: '', // 用户性别
+    user_balance: '', // 用户可提现余额(单位为分)
+    user_unreceive_balance: '', // 用户未结算金额(单位为分
+    created_at: '' // 注册时间
+  }
 }
 
 const getters = {
-  phone (state) {
-    return state.phone
-  },
-  token (state) {
-    return state.token
-  },
-  BarList (state) {
-    return state.BarList
-  },
-  objCurrentBarInfo (state) {
-    return state.objCurrentBarInfo
+  userinfo (state) {
+    return state.userinfo
+  }
+}
+
+const actions = {
+  async getUserInfo ({ commit }) {
+    try {
+      const { status, data } = await request({
+        method: 'GET',
+        url: '/api/user/info'
+      })
+      if (status) {
+        commit('UPDATE_USERINFO', data)
+      }
+    } catch (err) {
+      console.log(err)
+    }
   }
 }
 
 const mutations = {
-  UPDATE_PHONE (state, value) {
-    state.phone = value
-  },
-  UPDATE_TOKEN (state, value) {
-    state.token = value
-  },
-  UPDATE_BARLIST (state, value) {
-    state.BarList = value
-  },
-  UPDATE_OBJCURRENTBARINFO (state, value) {
-    state.objCurrentBarInfo = value
+  UPDATE_USERINFO (state, value) {
+    state.userinfo = {
+      ...value
+    }
   }
 }
 
@@ -39,5 +45,6 @@ export default {
   namespaced: true,
   state,
   getters,
+  actions,
   mutations
 }

+ 11 - 3
htmldev/cps/src/views/mine/index.vue

@@ -2,7 +2,9 @@
   <div class="mine-conatainer">
     <div class="header">
       <div class="avatar">
-        <img src="" alt="">
+        <img
+          :src="userInfo.user_head_img_url"
+          alt="">
       </div>
     </div>
     <ul>
@@ -43,8 +45,15 @@
 </template>
 
 <script>
+import { mapGetters } from 'vuex'
+
 export default {
-  name: 'index'
+  name: 'index',
+  computed: {
+    ...mapGetters({
+      userInfo: 'common/userinfo'
+    })
+  }
 }
 </script>
 
@@ -70,7 +79,6 @@ export default {
   margin: 0 auto;
   border-radius: 50%;
   overflow: hidden;
-  background: pink;
 
   img {
     display: block;