Browse Source

提交房间管理

wangming 1 month ago
parent
commit
408c9849e2
1 changed files with 4 additions and 0 deletions
  1. 4 0
      src/pagesA/homeManage/homeManage.vue

+ 4 - 0
src/pagesA/homeManage/homeManage.vue

@@ -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;
                     }