田源
2023-12-27 82e18ec922efbc258060dc2e54874cb6a77477ea
Source/UBCS-WEB/src/views/integration/integrationIndex.vue
@@ -268,7 +268,7 @@
    // 接口获取集团分类树
    async referTree(oid, checked) {
      this.groupTreeData = []
      const response = await referTree({'conditionMap[codeclsfid]': oid, parentOid: null})
      const response = await referTree({'conditionMap[codeclsfid]': oid, parentOid: '0'})
      if (response.status === 200) {
        if (checked) {
          let items = response.data.map(item => {
@@ -425,28 +425,27 @@
}
</script>
<style lang="scss" scoped>
.setstyle {
  min-height: 200px;
  padding: 0 !important;
  margin: 0;
  overflow: auto;
  cursor: default !important;
}
  .setstyle {
    min-height: 200px;
    padding: 0 !important;
    margin: 0;
    overflow: auto;
    cursor: default !important;
  }
::v-deep(.el-transfer-panel__list) {
  width: 100%;
  height: 370px;
}
::v-deep(.el-transfer-panel__body) {
  height: 370px;
}
::v-deep(.el-input) {
  width: auto;
}
::v-deep(.el-transfer-panel) {
  width: 270px;
}
  ::v-deep{
    .el-transfer-panel__list {
      width: 100%;
      height: 370px;
    }
    .el-transfer-panel__body {
      height: 370px;
    }
    .el-input {
      width: auto;
    }
    .el-transfer-panel {
      width: 270px;
    }
  }
</style>