@@ -146,9 +146,13 @@ export default {
},
getgroupList() {
+ uni.showLoading({
+ title: "加载中",
+ });
this.$http
.get(`wap/group/groupList`, { user_id: this.userId })
.then((res) => {
+ uni.hideLoading();
if (res.data.data) {
this.groupList = res.data.data;
}