diff --git a/Frontend/_graphManagement.html b/Frontend/_graphManagement.html index 9fcbbcf..c47404a 100644 --- a/Frontend/_graphManagement.html +++ b/Frontend/_graphManagement.html @@ -128,7 +128,7 @@ @@ -183,7 +183,7 @@ @@ -245,8 +245,9 @@ onEvent('click', '#accManSendBtn', function () { let url = baseApiUrl + "/GraphManage/SaveGraMan"; - + var myCode = (+new Date()); let fd = new FormData(); + fd.append("code", myCode); fd.append("main_system_tag", $("#upSelMain").val()); fd.append("sub_system_tag", $("#upSelSub").val()); fd.append("name", $("#upPicName").val()); @@ -266,9 +267,8 @@ beforeSend: function (xhr) { xhr.setRequestHeader('Authorization', "Bearer " + localStorage.getItem("JWT-Authorization")) }, success: function (res) { if (!res || res.code != "0000" || !res.data) { - } else { - console.log("ERROR: POST fd"); + // console.log("ERROR: ", res.data, res.code); } } });