fix: 修复issue

This commit is contained in:
@user8949
2025-03-18 20:20:37 +08:00
parent 166a5bcdfd
commit af1ce0d1bf
6 changed files with 174 additions and 64 deletions

View File

@@ -67,6 +67,7 @@
</template>
<script setup lang="ts">
import { ref, reactive } from 'vue';
import { getDepencyList } from '@/api/jyh'
const checked = ref(false);
const showDetail = ref(false);
const table = ref(null)
@@ -216,6 +217,11 @@ const openAll = (tree) => {
const sortNumberMethod = (a, b) => {
return a.number > b.number
}
const getList = async() => {
const res = await getDepencyList('APACHE-001');
}
getList();
</script>
<style scoped lang="scss">