Fix: admin CSS -> BootStrap, register, upgrade page
This commit is contained in:
@@ -1,13 +1,10 @@
|
||||
<html>
|
||||
|
||||
|
||||
<head>
|
||||
<title>마우스 타자 관리자 페이지</title>
|
||||
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
|
||||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
|
||||
<link rel="stylesheet" type="text/css" href="./../css/module.css">
|
||||
<link rel="stylesheet" type="text/css" href="./../css/color_button.css">
|
||||
<link rel="stylesheet" type="text/css" href="./../css/admin.css">
|
||||
<link href="../../../resources/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
||||
|
||||
<script type="text/javascript" src="./../../../resources/jquery/jquery-3.3.1.min.js"></script>
|
||||
<script type="text/javascript" src="./../js/main.js"></script>
|
||||
@@ -17,13 +14,14 @@
|
||||
$("#header").load("admin_header.html");
|
||||
|
||||
loadMaestroList("");
|
||||
|
||||
});
|
||||
|
||||
function searchMaestro() {
|
||||
let maestroName = $("#search_name").val();
|
||||
var maestroName = $("#search_name").val();
|
||||
|
||||
if(maestroName.length === 0) {
|
||||
$("#error_message").text("마에스트로 아이디를 입력하세요.");
|
||||
showErrorMessage("검색할 마에스트로 아이디를 입력하세요.", "error");
|
||||
$("#search_name").focus();
|
||||
}
|
||||
|
||||
@@ -40,9 +38,7 @@
|
||||
},
|
||||
|
||||
function(errorMessage, errorCode) {
|
||||
if($("#error_message").length) {
|
||||
$("#error_message").text(errorMessage);
|
||||
}
|
||||
showErrorMessage(errorMessag, "error");
|
||||
}
|
||||
|
||||
);
|
||||
@@ -50,59 +46,58 @@
|
||||
|
||||
function updateMaestroList(jsonList) {
|
||||
$("#maestro_list_result_contents").empty();
|
||||
printHeader();
|
||||
printContents(jsonList);
|
||||
printFooter();
|
||||
}
|
||||
|
||||
function printHeader() {
|
||||
$("#maestro_list_result_contents").append(
|
||||
"<ul id='search_maestro_list' class='maestro_list'>"
|
||||
+ " <li>"
|
||||
+ " <span class='maestro_name'>이름</span>"
|
||||
+ " <span class='maestro_account_type'>금액</span>"
|
||||
+ " </li>"
|
||||
);
|
||||
}
|
||||
|
||||
function printContents(jsonList) {
|
||||
console.log(jsonList);
|
||||
if(jsonList === undefined || jsonList.length === 0)
|
||||
return;
|
||||
|
||||
for(let i = 0; i < jsonList.length; i++) {
|
||||
if(jsonList === undefined || jsonList.length === 0) {
|
||||
$("#maestro_list_result_contents").append(
|
||||
"<li class='search_result_list'>"
|
||||
+ " <span class='maestro_id hide'>" + jsonList[i].maestroID + "</span>"
|
||||
+ " <input type='text' value='" + jsonList[i].maestroName + "' class='maestro_name'>"
|
||||
+ " <input type='text' value='" + jsonList[i].accountType + "' class='maestro_account_type'>"
|
||||
+ " <input type='button' class='maestro_register' value='등록' onClick='register(this)'>"
|
||||
+ "</li>"
|
||||
"<div class='alert alert-danger text-center' role='alert'>"
|
||||
+ "마에스트로 계정 정보가 없습니다."
|
||||
+ "</div>"
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
for(var i = 0; i < jsonList.length; i++) {
|
||||
$("#maestro_list_result_contents").append(
|
||||
"<div class='form-group player-list row mx-2 mb-1'>"
|
||||
+ " <input type='text' class='maestro_id d-none' value='" + jsonList[i].maestroID + "'>"
|
||||
+ " <input type='text' class='col-sm' value='" + jsonList[i].maestroName + "'>"
|
||||
+ " <input type='text' class='col-sm' value='" + jsonList[i].accountType + "'>"
|
||||
+ " <input type='button' class='col-sm-1' value='+' onClick='register(this)'>"
|
||||
+ " <input type='button' class='col-sm-1' disabled value='-'>"
|
||||
+ "</div>"
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
function printFooter() {
|
||||
$("#maestro_list_result_contents").append("</ul>");
|
||||
}
|
||||
|
||||
function register(inputButton) {
|
||||
let id = $(inputButton).siblings(".maestro_id");
|
||||
let maestroID = id.text();
|
||||
// var id = $(inputButton).siblings(".maestro_id d-none");
|
||||
// var maestroID = id.text();
|
||||
|
||||
var children = inputButton.parentElement.childNodes;
|
||||
var maestroID = "";
|
||||
for (var i=0; i < children.length; i++) {
|
||||
// console.log(children);
|
||||
if (children[i].className == "maestro_id d-none") {
|
||||
maestroID = children[i].value;
|
||||
break;
|
||||
}
|
||||
}
|
||||
// console.log(maestroID);
|
||||
|
||||
sendRequestServer( //url, sendParams, onSuccess, onFail, isDebugMode);
|
||||
"./../server/admin/register_maestro.php",
|
||||
"maestro_id=" + maestroID,
|
||||
|
||||
function(jsonData) {
|
||||
showErrorMessage("마에스트로 계정이 정상적으로 등록되었습니다.", "success");
|
||||
loadMaestroList("");
|
||||
$("#error_message").text("마에스트로 계정이 정상적으로 등록되었습니다.");
|
||||
},
|
||||
|
||||
function(errorMessage, errorCode) {
|
||||
if($("#error_message").length) {
|
||||
$("#error_message").text(errorMessage);
|
||||
}
|
||||
showErrorMessage(errorMessage, "error");
|
||||
}
|
||||
|
||||
);
|
||||
@@ -115,32 +110,53 @@
|
||||
|
||||
<body bgcolor="white">
|
||||
|
||||
<div id="wrapper">
|
||||
<header id="header"></header>
|
||||
|
||||
<header id="header">
|
||||
</header>
|
||||
<div class="container mt-3">
|
||||
<div class="row mx-1">
|
||||
<h3 class="my-3">신규 마에스트로 등록 목록</h3>
|
||||
</div>
|
||||
|
||||
<section id="section">
|
||||
<div>
|
||||
<span id="search_maestro_name">
|
||||
<h1>검색</h1>
|
||||
<div id="message_box"></div>
|
||||
|
||||
마에스트로 아이디
|
||||
<input type="text" id="search_name"><input type="submit" name="찾기" onClick="searchMaestro()"><br/>
|
||||
<br/>
|
||||
</span>
|
||||
|
||||
<span id="search_result">
|
||||
검색 결과
|
||||
<div id="maestro_list_result_contents">
|
||||
<div class="row mx-1">
|
||||
<div class="col-4">
|
||||
<h5 class="my-3">마에스트로 검색</h5>
|
||||
<form class="mx-2">
|
||||
<div class="form-group row">
|
||||
<label for="search_name" class="col-sm-5 col-form-label">마에스트로 아이디</label>
|
||||
<div class="col-sm-7">
|
||||
<input type="text" class="form-control" id="search_name" placeholder="이름 입력">
|
||||
<!-- <small class="form-text text-muted">1~8 글자 / [ 한글,영문,숫자,-,_ ]</small> -->
|
||||
</div>
|
||||
</div>
|
||||
</span>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
</div>
|
||||
<div class="form-group row">
|
||||
<div class="offset-sm-3 col-sm-9 mt-3">
|
||||
<button type="button" class="col-sm-7 btn btn-primary btn-lg" onClick="searchMaestro()">검색</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div class="col-8 border border-warning rounded" style="background-color: #ffeab6">
|
||||
<h5 class="my-3">검색 결과</h5>
|
||||
|
||||
<form id="search_player_list">
|
||||
<div class="form-group row mx-2 mb-0 font-weight-bold">
|
||||
<label class="col-form-label d-none">ID</label>
|
||||
<label class="col-form-label col-sm text-center">마에스트로 아이디</label>
|
||||
<label class="col-form-label col-sm text-center">계정 타입</label>
|
||||
<label class="col-form-label col-sm-1 text-center"></label>
|
||||
<label class="col-form-label col-sm-1 text-center"></label>
|
||||
</div>
|
||||
<div id="maestro_list_result_contents"></div>
|
||||
</form>
|
||||
</div> <!-- 학생 목록 -->
|
||||
</div>
|
||||
|
||||
</div> <!-- container -->
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user