可信代码库-编程语言接口对接

This commit is contained in:
付民康
2025-06-13 18:01:31 +08:00
parent b3c1e9f159
commit 0cd5d14245
5 changed files with 21 additions and 12 deletions

View File

@@ -102,7 +102,8 @@ const props = defineProps({
}
});
const emit = defineEmits(['submit', 'cancel', 'update:modelValue']);
const languageList = ref([]);
// const languageList = ref([]);
const languageList = globalInfo.languageList;
const formData = ref({ ...props.modelValue });
@@ -152,7 +153,7 @@ const getLanguageList = async () => {
languageList.value = res.data.data;
}
};
getLanguageList();
// getLanguageList();
onMounted(() => {
const _searchForm = localStorage.getItem('searchForm');