Source/UBCS-WEB/src/components/Theme/ClassifyAuthDialog.vue
@@ -118,7 +118,7 @@
    return {
      // 对话框显示控制
      isShowDialog: this.visible,
      isLoading: false,
      isLoading: true,
      tableHeight: "calc(100vh - 550px)",
      classifyAuthData: [],
      //列头
@@ -374,6 +374,7 @@
    // 加载授权列表
    loadAuthPage() {
      return new Promise((resolve, reject) => {
        this.isLoading = true;
        getButtonByParentCode({ code: "classifyTree" })
          .then((res) => {
            // 记录按钮数据
@@ -441,6 +442,7 @@
            });
          }
        });
        this.isLoading = false;
      });
    },
  },