田源
2023-12-06 f74c2fd43150311e0aa8b1eb8eb715ac20ca21cf
Source/UBCS-WEB/src/views/MasterData/items.vue
@@ -1,5 +1,5 @@
<template>
  <el-container>
  <el-container v-loading="isLoading">
    <el-aside style="width:250px">
      <basic-container>
        <!--          树组件-->
@@ -10,13 +10,14 @@
          @Treedata="TreedataList"
          @codeClassifyOid="codeClassifyOidList"
          @coderuleoid="coderuleoidList"
          @nodeClick="nodeClick"
          @nodeClickTemplateOids="nodeClickTem"
          @tableDataArray="tableDataArrays"
          @tableHeadBttoms="tableHeadBttoms"
          @tableHeadDataFateher="tableHeadDatas"
          @tableHeadFindData="tableHeadFindDatas"
          @nodeClickList="nodeClickLists"
          @total="totals"
          :isLoading="isLoading"
        >
        </master-tree>
      </basic-container>
@@ -80,7 +81,7 @@
      this.nodeClickList=val;
    },
    TreeValueEmit(val) {
      this.TreeValue = val
      this.TreeValue = val;
    },
    codeClassifyOidList(val) {
      this.codeClassifyOid = val;
@@ -89,35 +90,31 @@
      this.coderuleoid = val;
    },
    TreedataList(val) {
      this.Treedata = val
      this.Treedata = val;
    },
    pageSizes(val) {
      this.pageSize = val
      this.pageSize = val;
    },
    currentPages(val) {
      this.currentPage = val
      this.currentPage = val;
    },
    tableDataArrays(val) {
      this.tableDataArray = val
      this.tableDataArray = val;
    },
    totals(val) {
      this.total = val
      this.total = val;
    },
    tableHeadDatas(val) {
      this.tableHeadDataFateher = val
      this.tableHeadDataFateher = val;
    },
    tableHeadFindDatas(val) {
      this.tableHeadFindData = val
      this.tableHeadFindData = val;
    },
    nodeClick(val) {
    nodeClickTem(val) {
      this.templateOid = val;
      this.isLoading = true;
      setTimeout(() => {
        this.isLoading = false;
      }, 2000);
    },
    tableHeadBttoms(val) {
      this.masterVrBtnList = val
      this.masterVrBtnList = val;
    },
  }
}