田源
2024-08-15 7407f7fd5b9d8e52edf4d1398eae710a0dd08ce9
Source/plt-web/plt-web-ui/src/views/modelingMenu/modeling/versioning/index.vue
@@ -14,7 +14,7 @@
            </el-button>
            <el-button icon="el-icon-upload2" plain size="small" type="primary" @click="uploadClickHandler">导入
            </el-button>
            <el-button plain size="small" style="width: 100px;text-align: center" type="primary"
            <el-button class="smallBtn" plain size="small" type="primary"
                       @click="checkViewClickHandler">查看使用范围
            </el-button>
          </div>
@@ -305,7 +305,6 @@
    //左侧树查询
    getTreeList() {
      getVersionRuleAllList().then(res => {
        console.log(res);
        const data = res.data.data;
        this.treeData = data;
      }).catch(err => {
@@ -442,7 +441,7 @@
      }
      ;
      this.checkViewData = this.checkViewData.filter(item => {
      this.checkViewData = this.checkViewDataSearch.filter(item => {
        return item.source && item.source.includes(source);
      });
@@ -463,6 +462,13 @@
  .el-scrollbar__wrap {
    overflow: auto !important;
  }
  .headerCon {
    .el-button {
      width: 82px;
    }
  }
}
.headerCon {
@@ -487,4 +493,10 @@
  margin-left: 0;
}
.smallBtn {
  width: 82px;
  text-align: center;
  padding-left: 4.5px;
}
</style>