删除debuger
This commit is contained in:
@@ -320,7 +320,6 @@ function confirmCreateOrganizationBtnClick() {
|
||||
}
|
||||
|
||||
async function createOrganization() {
|
||||
debugger
|
||||
const params = {
|
||||
groupName: createFormData.organizationName,
|
||||
groupDesc: createFormData.organizationProfile
|
||||
|
||||
@@ -548,7 +548,6 @@ const exportResult = async () => {
|
||||
// size: pager.value.pageSize
|
||||
});
|
||||
if (data && !error) {
|
||||
debugger
|
||||
// 方法1:如果后端返回的是文件流(Blob)
|
||||
const blob = new Blob([data.data]);
|
||||
const downloadUrl = window.URL.createObjectURL(blob);
|
||||
|
||||
@@ -208,7 +208,6 @@ async function getMalwareList() {
|
||||
try {
|
||||
const res = await getMalwareListApi(params);
|
||||
if (res.data?.code === 200) {
|
||||
debugger
|
||||
tableData.value = res.data.data.records.map((item) => {
|
||||
return { ...item, threatLevel: ThreatLevelEnum.HIGH, confidenceCoefficient: ConfidenceCoefficientEnum.HIGH };
|
||||
});
|
||||
|
||||
@@ -381,7 +381,6 @@ const securityInfoList = computed(() => {
|
||||
|
||||
const vulnDisclosureUrl = computed(() => {
|
||||
if(ReleaseInfo.value.softwareSecurityAIGenerateInfo) {
|
||||
debugger
|
||||
const _vulnDisclosureUrl: any = JSON.parse(ReleaseInfo?.value.softwareSecurityAIGenerateInfo[0]?.vulnDisclosureUrl || '[]');
|
||||
return _vulnDisclosureUrl || [];
|
||||
} else {
|
||||
|
||||
@@ -112,7 +112,6 @@ const getReleaseInfo = async(versionId) => {
|
||||
|
||||
const getAlertIsSubscribe = async(versionId) => {
|
||||
const { data, error } = await alertIsSubscribe({ softwareId: versionId });
|
||||
debugger
|
||||
if (!error) {
|
||||
if (data.data) {
|
||||
isSub.value = data.data.data
|
||||
|
||||
Reference in New Issue
Block a user