This commit is contained in:
cansnow
2026-01-15 22:50:35 +08:00
parent dd16348558
commit db99bebcb4
26 changed files with 433 additions and 284 deletions
+4 -2
View File
@@ -108,7 +108,6 @@
const info = util.aesdecode(sourceInfo);
this.sourceID = info.userID;
}
//console.log(this.storeSelfInfo);
this.getSourceUserInfo();
},
methods: {
@@ -131,6 +130,7 @@
info = {
...friendInfo
};
console.log(info);
} else {
const {
data
@@ -142,10 +142,11 @@
info = {
...(data[0] ?? {})
};
console.log(info);
}
this.isLoading = true
try {
const res = await businessSearchUserInfo(this.sourceID);
const res = await businessSearchUserInfo(this.sourceID);console.log(res);
if (res.total > 0) {
info = {
...info,
@@ -156,6 +157,7 @@
info = {};
}
this.isLoading = false
console.log(info);
this.sourceUserInfo = {
...info,
};