|
@@ -103,7 +103,7 @@ export default {
|
|
|
// 初始化
|
|
|
async initFun() {
|
|
|
// 获取所有用户
|
|
|
- if (this.env === "test") {
|
|
|
+ if (this.env === "pro") {
|
|
|
// 从蓝信获取用户信息
|
|
|
// this.getLanXinSignature();
|
|
|
console.log("-从蓝信获取用户信息-");
|
|
@@ -260,6 +260,10 @@ export default {
|
|
|
this.$_http
|
|
|
.get(this.$_API.JTXT_GET_LAN_XIN_USER_INFO, { params })
|
|
|
.then(res => {
|
|
|
+ this.$store.commit("updateUserItemStore", {
|
|
|
+ field: "userInfo",
|
|
|
+ value: res.data
|
|
|
+ });
|
|
|
console.log("蓝信用户信息---" + JSON.stringify(res));
|
|
|
})
|
|
|
.catch(() => {
|