This commit is contained in:
cansnow
2026-01-09 09:15:59 +08:00
parent 78386d4cc1
commit 7913a63a39
51 changed files with 1048 additions and 449 deletions
+2 -6
View File
@@ -53,9 +53,6 @@ const mutations = {
const actions = {
async getFriendList({commit }) {
//#ifndef APP
return [];
//#endif
let offset = 0;
let friendInfoList = [];
let initialFetch = true;
@@ -73,14 +70,12 @@ const actions = {
initialFetch = false;
} catch (error) {
console.error("getFriendListPage error",error);
break;
}
}
commit("SET_FRIEND_LIST", friendInfoList);
},
async getGrouplist({commit}) {
//#ifndef APP
return [];
//#endif
let offset = 0;
let groupList = [];
while (true) {
@@ -101,6 +96,7 @@ const actions = {
console.error("getGrouplist error");
}
}
//console.log(groupList);
commit("SET_GROUP_LIST", groupList);
},
getBlacklist({commit}) {