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
+1
View File
@@ -348,6 +348,7 @@
flex-direction: column;
flex: 1;
overflow: hidden;
overflow-y: scroll;
.member_list {
flex: 1;
+1 -1
View File
@@ -146,7 +146,7 @@ export default {
this.loginInfo.email = "commiu@outlook.com";
this.loginInfo.password = "qwe123";
}
plus.navigator.closeSplashscreen();
//plus.navigator.closeSplashscreen();
},
updateEye() {
this.eying = !this.eying;
+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,
};