ludc
2023-12-06 28a9dc3f52b879053c79feb216fa868be906cd02
Source/UBCS-WEB/src/components/Master/MasterTree.vue
@@ -47,7 +47,6 @@
      CloneTreeAvueform: {},
      loading: false,
      Treedata: [],
      isLoading: false,
      nodeClickList: "",
      Treeoption: {
        addBtn: false,
@@ -148,14 +147,16 @@
    },
    //表格刷新
    TableRend() {
      this.isLoading = true;
      this.loading = true;
      this.$emit('loading', this.loading)
      TableData({
        templateOid: this.templateOids,
        codeClassifyOid: this.nodeClickList.oid,
        page: this.currentPage,
        limit: this.pageSize,
      }).then(res => {
        this.isLoading = false;
        this.loading = false;
        this.$emit('loading', this.loading)
        this.tableDataArray = res.data.data;
        this.$emit('tableDataArray', this.tableDataArray)
        this.$emit('total', res.data.total)