구동 오류 수정
This commit is contained in:
BIN
WebContent/WEB-INF/lib/javax.activation-api-1.2.0.jar
Normal file
BIN
WebContent/WEB-INF/lib/javax.activation-api-1.2.0.jar
Normal file
Binary file not shown.
BIN
WebContent/WEB-INF/lib/javax.servlet-api-4.0.1.jar
Normal file
BIN
WebContent/WEB-INF/lib/javax.servlet-api-4.0.1.jar
Normal file
Binary file not shown.
@@ -1,72 +1,86 @@
|
||||
<%@page import="com.pms.common.utils.*"%>
|
||||
<%@ page language="java" contentType="text/html; charset=UTF-8"
|
||||
pageEncoding="UTF-8"%>
|
||||
<%@ page import="java.util.*, com.pms.common.utils.CommonUtils" %>
|
||||
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
||||
<%@page import="com.pms.common.utils.*"%> <%@ page language="java"
|
||||
contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ page
|
||||
import="java.util.*, com.pms.common.utils.CommonUtils" %> <%@ taglib prefix="c"
|
||||
uri="http://java.sun.com/jsp/jstl/core" %>
|
||||
<!DOCTYPE html>
|
||||
<html id="loginhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<title><%=Constants.SYSTEM_NAME %></title>
|
||||
<link rel="stylesheet" href="/css/basic.css">
|
||||
<link rel="stylesheet" href="/css/basic.css" />
|
||||
<script src="/js/jquery-2.1.4.min.js"></script>
|
||||
<script type="text/javascript" src="/js/sweetalert2.js" ></script>
|
||||
<script type="text/javascript" src="/js/sweetalert2.js"></script>
|
||||
<script>
|
||||
$(function(){
|
||||
$(document).ready(function(){
|
||||
$(function () {
|
||||
$(document).ready(function () {
|
||||
<c:if test="${!empty ERROR_REASON}">
|
||||
var errReason = "${ERROR_REASON}";
|
||||
Swal.fire(errReason);
|
||||
</c:if>
|
||||
var errReason = "${ERROR_REASON}"; Swal.fire(errReason);
|
||||
</c:if>;
|
||||
|
||||
$(".login_btn").click(function(){
|
||||
$(".login_btn").click(function () {
|
||||
//Swal.fire("userId : "+$("#userId").val()+", password : "+$("#password").val());
|
||||
login();
|
||||
});
|
||||
|
||||
$("#userId, #password").keypress(function(event){
|
||||
if(event.which == 13) login();
|
||||
$("#userId, #password").keypress(function (event) {
|
||||
if (event.which == 13) login();
|
||||
});
|
||||
|
||||
$("#userId").focus();
|
||||
|
||||
$(".loginLogo").attr("class", "loginLogo_<%=Constants.COMPANY_NAME_ENG%>");
|
||||
$(".loginLogo").attr(
|
||||
"class",
|
||||
"loginLogo_<%=Constants.COMPANY_NAME_ENG%>"
|
||||
);
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
function login(){
|
||||
function login() {
|
||||
document.loginForm.action = "/main.do";
|
||||
document.loginForm.submit();
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="loginBack_woosungse">
|
||||
<form name="loginForm" id="loginForm" method="post">
|
||||
</head>
|
||||
<body>
|
||||
<div id="loginBack_ilshin">
|
||||
<form name="loginForm" id="loginForm" method="post">
|
||||
<div class="login_layout">
|
||||
<div class="logo_slogan_box">
|
||||
<div class="slogun_box_woosungse"></div>
|
||||
</div>
|
||||
<div id="loginWrap">
|
||||
<div id="login_box">
|
||||
<a class="loginLogo_woosungse"></a>
|
||||
<label for="userId" class="userId">ID</label>
|
||||
<input type="text" id="userId" name="userId" value="" placeholder="USER ID">
|
||||
<label for="userPw" class="userPw">PWD</label>
|
||||
<input type="password" id="password" name="password" value="" placeholder="PASSWORD">
|
||||
<div style="
|
||||
display: flex;
|
||||
/* border: 1px solid #ffffff80; */
|
||||
border-radius: 5px;
|
||||
padding: 10px;
|
||||
width: 278px;
|
||||
height: 28px;
|
||||
color: #000;
|
||||
margin-top: 9px;
|
||||
" class="radio-group">
|
||||
<input type="radio" name="chk_info" value="우성에스이" checked="checked" style="
|
||||
<div class="logo_slogan_box">
|
||||
<div class="slogun_box_ilshin"></div>
|
||||
</div>
|
||||
<div id="loginWrap">
|
||||
<div id="login_box">
|
||||
<a class="loginLogo_ilshin"></a>
|
||||
<label for="userId" class="userId">ID</label>
|
||||
<input
|
||||
type="text"
|
||||
id="userId"
|
||||
name="userId"
|
||||
value=""
|
||||
placeholder="USER ID"
|
||||
/>
|
||||
<label for="userPw" class="userPw">PWD</label>
|
||||
<input
|
||||
type="password"
|
||||
id="password"
|
||||
name="password"
|
||||
value=""
|
||||
placeholder="PASSWORD"
|
||||
/>
|
||||
<div
|
||||
style="
|
||||
display: flex;
|
||||
/* border: 1px solid #ffffff80; */
|
||||
border-radius: 5px;
|
||||
padding: 10px;
|
||||
width: 278px;
|
||||
height: 28px;
|
||||
color: #000;
|
||||
margin-top: 9px;
|
||||
"
|
||||
class="radio-group"
|
||||
>
|
||||
<!-- <input type="radio" name="chk_info" value="우성에스이" checked="checked" style="
|
||||
width: 14px;
|
||||
margin-left: 6px;
|
||||
margin-top: -3px;
|
||||
@@ -84,19 +98,20 @@
|
||||
margin-top: -3px;
|
||||
margin-right: 5px;
|
||||
"><div id="radio-name">외주</div>
|
||||
</div>
|
||||
<!--
|
||||
-->
|
||||
</div>
|
||||
<!--
|
||||
<select name="lang" class="userId">
|
||||
<option value="ko">한국어</option>
|
||||
<option value="en">영어</option>
|
||||
<option value="jp">일본어</option>
|
||||
</select> -->
|
||||
|
||||
<input type="button" value="login" class="login_btn">
|
||||
</div>
|
||||
|
||||
<input type="button" value="login" class="login_btn" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -319,7 +319,7 @@ header h1 {display:flex; align-items:center; height: 100%}
|
||||
.loginLogo_new {display: block; width: 246px; height: 100px; background: url(/images/loginLogo_kumho.png) left bottom no-repeat;background-size:contain; margin-bottom:10px;margin-left:-80px;}
|
||||
.slogun_box_new {position: relative; margin:144px 0px 0px 330px; width:50%; height:640px; background:#E7E9F0; border-radius: 25px 0px 0px 25px; z-index:1;}
|
||||
.slogun_box_new2 {display: block; width:78%; height:90%; background: url(/images/Intops-loginpage_last1.png) left bottom no-repeat; background-size:contain; margin-left:7%;padding-top:0;}
|
||||
header h1 .mainLogo_new {display:block; margin-left:8px; width:180px; height:40px; background: url(/images/logo.png) center center no-repeat;
|
||||
header h1 .mainLogo_new {display:block; margin-left:8px; width:223px; height:40px; background: url(/images/logo.png) center center no-repeat;
|
||||
background-size: contain; margin-top:0px; }
|
||||
|
||||
/*로그인 페이지 (intops)
|
||||
@@ -2755,32 +2755,41 @@ a,a:visited,a:hover,a:active {
|
||||
|
||||
/* 우성SE */
|
||||
/* basic.css 에 아래 코드 추가 */
|
||||
#loginBack_woosungse { background: url(/images/loginPage_woosungse.png) no-repeat bottom; width:100%; height:100%; background-size: cover; position:absolute; top:0;}
|
||||
#loginBack_woosungse > form#loginForm {height:100%;}
|
||||
#loginBack_woosungse .login_layout {display:flex; height:100%;}
|
||||
#loginBack_woosungse .logo_slogan_box {display:flex; padding:150px 120px; flex:4; background-color:rgba(255,255,255,0);}
|
||||
#loginBack_woosungse #loginWrap {
|
||||
#loginBack_ilshin { background: url(/images/loginPage_ilshin.jpg) no-repeat bottom; width:100%; height:100%; background-size: cover; position:absolute; top:0;}
|
||||
#loginBack_ilshin > form#loginForm {height:100%;}
|
||||
#loginBack_ilshin .login_layout {display:flex; height:100%;}
|
||||
#loginBack_ilshin .logo_slogan_box {display:flex; padding:150px 120px; flex:4; background-color:rgba(255,255,255,0);}
|
||||
#loginBack_ilshin #loginWrap {
|
||||
display:flex;
|
||||
justify-content:center;
|
||||
align-items:center;
|
||||
flex: 2;
|
||||
min-width:400px;
|
||||
max-width:400px;
|
||||
background: rgb(255 255 255);
|
||||
box-shadow: 0 8px 32px 0 rgba(37, 37, 42, 0.37);
|
||||
backdrop-filter: blur( 8px );
|
||||
-webkit-backdrop-filter: blur( 8px );
|
||||
border-left: 1px solid rgba( 255, 255, 255, 0.1 );
|
||||
}
|
||||
#loginBack_woosungse #login_box {padding:0px 100px 100px 100px; display: flex; flex-direction: column; align-items: center;
|
||||
width: unset; top: unset; right: unset; position: unset; margin-top: 460px;}
|
||||
#loginBack_woosungse #login_box input[type="button"] { border-radius: 5px; border: 1px solid #0B0D33; background: #0B0D33; width:100%; display: block; color:#fff; font-size:11px; font-weight:normal; margin-top:15px; text-transform:uppercase;}
|
||||
#loginBack_woosungse input {height: 34px !important; font-size:14px !important; width: 100%}
|
||||
.loginLogo_woosungse {display: block; width: 200px; height: 100px; background: url(/images/loginLogo_woosungse.png) center center no-repeat;background-size:contain; margin-bottom:50px;}
|
||||
.slogun_box_woosungse {background: url(/images/slogan_woosungse.png) no-repeat; background-size: contain; width: 380px;}
|
||||
header h1 .mainLogo_woosungse {display:block; margin-left:18px; width:197px; height:33px; background: url(/images/mainLogo_woosungse.png) left center no-repeat; background-size: contain; margin-top:16px; }
|
||||
#loginBack_ilshin #login_box {
|
||||
padding: 0px 42px 100px 42px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
width: unset;
|
||||
top: unset;
|
||||
right: unset;
|
||||
position: unset;
|
||||
margin-top: 460px;
|
||||
}
|
||||
#loginBack_ilshin #login_box input[type="button"] { border-radius: 5px; border: 1px solid #0B0D33; background: #0B0D33; width:100%; display: block; color:#fff; font-size:11px; font-weight:normal; margin-top:15px; text-transform:uppercase;}
|
||||
#loginBack_ilshin input {height: 34px !important; font-size:14px !important; width: 100%}
|
||||
.loginLogo_ilshin {display: block;width: 312px;height: 118px;background: url(/images/loginLogo_ilshin.png) center center no-repeat;background-size: 302px;margin-bottom: 50px;position: relative;top: 9px;}
|
||||
.slogun_box_ilshin { background-size: contain; width: 380px;}
|
||||
header h1 .mainLogo_ilshin {display:block; margin-left:18px; width:197px; height:33px; background: url(/images/mainLogo_ilshin.png) left center no-repeat; background-size: contain; margin-top:16px; }
|
||||
@media screen and (max-width: 1200px) {
|
||||
#loginBack_woosungse .logo_slogan_box { display:none; }
|
||||
#loginBack_woosungse #loginWrap {
|
||||
#loginBack_ilshin .logo_slogan_box { display:none; }
|
||||
#loginBack_ilshin #loginWrap {
|
||||
padding: 100px;
|
||||
box-shadow: initial;
|
||||
justify-content: center;
|
||||
|
||||
BIN
WebContent/images/loginLogo_ilshin.png
Normal file
BIN
WebContent/images/loginLogo_ilshin.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.1 KiB |
BIN
WebContent/images/loginPage_ilshin.jpg
Normal file
BIN
WebContent/images/loginPage_ilshin.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.2 MiB |
BIN
WebContent/images/loginPage_ilshin.png
Normal file
BIN
WebContent/images/loginPage_ilshin.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.4 MiB |
Binary file not shown.
|
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 5.1 KiB |
@@ -1077,7 +1077,8 @@ function fnc_getCodeListAppend(codeId,selectboxId,selectedVal){
|
||||
for (var i = 0; i < resultList.length; i++) {
|
||||
var commonCodeId = resultList[i].CODE_ID;
|
||||
var commonCodeName = resultList[i].CODE_NAME;
|
||||
$("#"+selectboxId).append("<option value='"+commonCodeId+"'>"+commonCodeName+"</option>");
|
||||
var commonRemark = resultList[i].REMARK;
|
||||
$("#"+selectboxId).append("<option value='"+commonCodeId+"' data-text='"+commonRemark+"'>"+commonCodeName+"</option>");
|
||||
}
|
||||
$("#"+selectboxId).val(selectedVal);
|
||||
}
|
||||
|
||||
BIN
WebContent/manual/ILSHIN_USER_MANUAL.pptx
Normal file
BIN
WebContent/manual/ILSHIN_USER_MANUAL.pptx
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -19,7 +19,7 @@ docker-compose -f docker-compose.win.yml up --build --force-recreate -d
|
||||
if %errorlevel% equ 0 (
|
||||
echo.
|
||||
echo PLM started successfully!
|
||||
echo Web: http://localhost:7777
|
||||
echo Web: http://localhost:8989
|
||||
echo.
|
||||
|
||||
@REM set /p "run_git=Would you like to run git operations? (Y/N) [N]: "
|
||||
@@ -31,7 +31,7 @@ if %errorlevel% equ 0 (
|
||||
@REM )
|
||||
|
||||
timeout /t 5 /nobreak >nul
|
||||
start http://localhost:7777
|
||||
start http://localhost:8989
|
||||
) else (
|
||||
echo.
|
||||
echo PLM start failed!
|
||||
|
||||
Reference in New Issue
Block a user