fix: fix issue

This commit is contained in:
@user8949
2025-03-18 22:01:02 +08:00
parent 1658890895
commit e3b6b57be7
5 changed files with 58 additions and 12 deletions

View File

@@ -68,6 +68,7 @@
import { ref } from 'vue';
import Panel from '@/components/AIRepair/Panel.vue';
import Table from '@/components/AIRepair/Table.vue';
import { getRepairInfo } from '@/api/jyh';
const infoList = ref([
'当前代码主要风险为易受常见的注入攻击包括命令注入、SQL注入、表达式注入针对每种攻击应提供相应的防范措施如数据校验、使用安全函数和限制程序权限。',
@@ -200,6 +201,10 @@ const list = ref([
}
])
const getInfo = async() => {
const res = await getRepairInfo();
}
getInfo();
</script>