db주소 변경.

vworld 인증키 변경.
비밀번호수정 버튼 오류 수정.
master
강석 최 2022-11-25 10:39:54 +09:00
parent c66f4f189d
commit 92982609a3
4 changed files with 20 additions and 24 deletions

View File

@ -18,7 +18,7 @@ Global.fileStorePath = C:/MCA/upload/
#TEST DB
Global.datasource.driverClassName=com.mysql.cj.jdbc.Driver
Global.datasource.url=jdbc:mysql://106.247.244.146:57306/gg_mobile_220214?useSSL=false&serverTimezone=Asia/Seoul
Global.datasource.url=jdbc:mysql://118.219.150.34:57306/gg_mobile_dev_db?useSSL=false&serverTimezone=Asia/Seoul
Global.datasource.username=root
Global.datasource.password=dbnt0928

View File

@ -63,18 +63,16 @@
</div>
</form:form>
<script>
$(function(){
$("#changePw").click(function(){
if($(this).is(":checked")){
$("#password").attr("disabled", false);
$("#passwordCheck").attr("disabled", false);
}else{
$("#password").attr("disabled", true);
$("#passwordCheck").attr("disabled", true);
}
});
});
$(document).on('click', '#changePw', function (){
if(this.checked){
$("#password").attr("disabled", false);
$("#passwordCheck").attr("disabled", false);
}else{
$("#password").attr("disabled", true);
$("#passwordCheck").attr("disabled", true);
}
})
function update() {
var changePw = $("#changePw").is(":checked");
var pw1 = $('#password').val();

View File

@ -185,7 +185,7 @@ function drawingObj() {
visible: true,
type: 'base',
source: new ol.source.XYZ({
url: 'http://api.vworld.kr/req/wmts/1.0.0/5616CAD1-5D79-3EE3-87D5-878A4AD0F91F/Base/{z}/{y}/{x}.png'
url: 'http://api.vworld.kr/req/wmts/1.0.0/900FAB31-26F4-337E-8A28-EC17ABCEAF8C/Base/{z}/{y}/{x}.png'
})
});

View File

@ -44,17 +44,15 @@ function confirmBtn(userid, auth) {
}
$(function () {
$("#changePw").click(function () {
if ($(this).is(":checked")) {
$("#password").attr("disabled", false);
$("#passwordCheck").attr("disabled", false);
} else {
$("#password").attr("disabled", true);
$("#passwordCheck").attr("disabled", true);
}
});
});
$(document).on('click', '#changePw', function (){
if(this.checked){
$("#password").attr("disabled", false);
$("#passwordCheck").attr("disabled", false);
}else{
$("#password").attr("disabled", true);
$("#passwordCheck").attr("disabled", true);
}
})
function update() {
const changePw = $("#changePw").is(":checked");