This commit is contained in:
sungsu
2024-01-19 09:54:32 +09:00
parent 2b61691f65
commit 98de984f58
9 changed files with 125 additions and 10 deletions

View File

@@ -115,6 +115,14 @@
form.submit();
});
$("#downlodeExcelList").on("click",function(){
var form = document.createElement("form");
form.action = "/vendor/downlodeExcelList";
form.method = "GET";
document.body.appendChild(form);
form.submit();
});
//POST방식으로 create폼화면 출력
$("#createButton").on("click",function(){
var form = document.createElement("form");