Browse Source

问题修复

master
si@aidatagov.com 2 weeks ago
parent
commit
1e7c70ef03
  1. 7
      vue-fastapi-frontend/src/views/dataAsset/directory/components/FormDialog.vue

7
vue-fastapi-frontend/src/views/dataAsset/directory/components/FormDialog.vue

@ -55,7 +55,7 @@
<template #default="{ data }">
<div class="custom-tree-node">
<span>{{
data.dataAssetCatalogName || data.dataAssetSysName
data.dataAssetCatalogName || getNameById(data.dataAssetSysName)
}}</span>
</div>
</template>
@ -84,6 +84,8 @@
<script setup>
import { computed, nextTick } from 'vue'
import { getNameById, getIdByName } from '@/utils/dsSysUtils';
import {
getDirectory,
addDirectory,
@ -179,7 +181,8 @@ const filterAssetTree = (tree) => {
if (node.children) {
node.children = filterAssetTree(node.children) //
}
return node.rel_status !== 1 || hasAsset(node.dataAssetCatalogAstno)
// return node.rel_status !== 1 || hasAsset(node.dataAssetCatalogAstno)
return true
})
}

Loading…
Cancel
Save