The paging and search functions of the modal screens of the category

page, price page, and product page have been completed
This commit is contained in:
Kana
2024-01-16 11:53:15 +09:00
parent 67b0fa90bf
commit 00398754c3
12 changed files with 501 additions and 40 deletions

View File

@@ -11,7 +11,7 @@
<div class="row">
<h1>제품 상세페이지</h1>
<div class="col-10" style="text-align: right;">
<button type="button" class="btn btn-danger" id="yes_no_modal_show_button">삭제</button>
<button type="button" class="btn btn-danger" onclick="goDelete()">삭제</button>
</div>
</div>
</div>
@@ -118,6 +118,16 @@
});
}//deletePriceFunction
function goDelete(){
yesNoModalTextDefine("제품가격 삭제", "해당 제품가격을 삭제하시겠습니까?");
$("#yesNoModalLabel").text(yesNoModal.title);
$("#yesNoModalBodyTextDiv").text(yesNoModal.body);
yesNoModal.yesFunction = deletePriceFunction;
yesNoModalBootStrap.show();
}
</script>
</body>
</html>