Merge branch 'master' into kakaoFT
This commit is contained in:
commit
5740b3e1bc
@ -1467,14 +1467,15 @@ public class FaxAddrController {
|
||||
else {
|
||||
addrVO.setBookmark("N");
|
||||
}
|
||||
|
||||
|
||||
// 2024.01.24 10만건 -> 50만건으로 증설 요청으로 인한 증설
|
||||
List<FaxAddrVO> addrDataInfo = new ArrayList<FaxAddrVO>();
|
||||
if(addrBefCnt < 100000) { // 기존 등록된 주소록이 10만건 미만이면
|
||||
if(addrBefCnt < 500000) { // 기존 등록된 주소록이 10만건 미만이면
|
||||
|
||||
//받는사람 리스트 건수 체크해주기
|
||||
if(sumAddrCnt > 100000) {
|
||||
if(sumAddrCnt > 500000) {
|
||||
isSuccess = false;
|
||||
msg = "주소록은 총 10만개까지만 등록이 가능합니다.";
|
||||
msg = "주소록은 총 50만개까지만 등록이 가능합니다.";
|
||||
}
|
||||
else {
|
||||
for(int i=0; i < addrNewCnt; i++) {
|
||||
@ -1590,7 +1591,7 @@ public class FaxAddrController {
|
||||
}
|
||||
else {
|
||||
isSuccess = false;
|
||||
msg = "주소록은 총 10만개까지만 등록이 가능합니다.";
|
||||
msg = "주소록은 총 50만개까지만 등록이 가능합니다.";
|
||||
}
|
||||
}
|
||||
catch(Exception e) {
|
||||
|
||||
@ -1753,13 +1753,14 @@ public class AddrController {
|
||||
addrVO.setBookmark("N");
|
||||
}
|
||||
|
||||
// 2024.01.24 10만건 -> 50만건으로 증설 요청으로 인한 증설
|
||||
List<AddrVO> addrDataInfo = new ArrayList<AddrVO>();
|
||||
if(addrBefCnt < 100000) { // 기존 등록된 주소록이 10만건 미만이면
|
||||
if(addrBefCnt < 500000) { // 기존 등록된 주소록이 10만건 미만이면
|
||||
|
||||
//받는사람 리스트 건수 체크해주기
|
||||
if(sumAddrCnt > 100000) {
|
||||
if(sumAddrCnt > 500000) {
|
||||
isSuccess = false;
|
||||
msg = "주소록은 총 10만개까지만 등록이 가능합니다.";
|
||||
msg = "주소록은 총 50만개까지만 등록이 가능합니다.";
|
||||
}
|
||||
else {
|
||||
for(int i=0; i < addrNewCnt; i++) {
|
||||
@ -1964,7 +1965,7 @@ public class AddrController {
|
||||
}
|
||||
else {
|
||||
isSuccess = false;
|
||||
msg = "주소록은 총 10만개까지만 등록이 가능합니다.";
|
||||
msg = "주소록은 총 50만개까지만 등록이 가능합니다.";
|
||||
}
|
||||
}
|
||||
catch(Exception e) {
|
||||
|
||||
@ -5069,12 +5069,13 @@ public class MjonMsgDataController {
|
||||
|
||||
List<AddrVO> addrDataInfo = new ArrayList<AddrVO>();
|
||||
|
||||
if(addrBefCnt < 100000) { // 기존 등록된 주소록이 10만건 미만이면
|
||||
// 2024.01.24 10만건 -> 50만건으로 증설 요청으로 인한 증설
|
||||
if(addrBefCnt < 500000) { // 기존 등록된 주소록이 10만건 미만이면
|
||||
|
||||
//받는사람 리스트 건수 체크해주기
|
||||
if(sumAddrCnt > 100000) {
|
||||
if(sumAddrCnt > 500000) {
|
||||
|
||||
modelAndView.addObject("message", "주소록은 총 10만개까지만 등록이 가능합니다.");
|
||||
modelAndView.addObject("message", "주소록은 총 50만개까지만 등록이 가능합니다.");
|
||||
modelAndView.addObject("result", "addrTotFail");
|
||||
return modelAndView;
|
||||
|
||||
@ -5167,7 +5168,7 @@ public class MjonMsgDataController {
|
||||
|
||||
}else {
|
||||
|
||||
modelAndView.addObject("message", "주소록은 총 10만개까지만 등록이 가능합니다.");
|
||||
modelAndView.addObject("message", "주소록은 총 50만개까지만 등록이 가능합니다.");
|
||||
modelAndView.addObject("result", "addrTotFail");
|
||||
|
||||
}
|
||||
|
||||
@ -102,4 +102,4 @@ Globals.pay.kgm.bank.raSvcid=230510133362
|
||||
Globals.pay.kgm.bank.payMode=10
|
||||
#MOBILE
|
||||
Globals.pay.kgm.mobile.mcSvcid=220613125202
|
||||
Globals.pay.kgm.mobile.payMode=10
|
||||
Globals.pay.kgm.mobile.payMode=10
|
||||
@ -677,7 +677,7 @@ function listAddrTransHistAjax(pageNo) {
|
||||
<label for="groupAll" class="label">전체 선택</label>
|
||||
<input type="checkbox" name="groupAll" id="groupAll" value="1" onClick="fnCheckAll();">
|
||||
</div>
|
||||
<p class="open" onclick="openThisGroup('');"><img src="/publish/images/content/open_folder.png" alt="폴더 열림">전체[<span class="c_002c9a fwMd" id="addrTotCnt"></span>/최대 100,000]</p>
|
||||
<p class="open" onclick="openThisGroup('');"><img src="/publish/images/content/open_folder.png" alt="폴더 열림">전체[<span class="c_002c9a fwMd" id="addrTotCnt"></span>/최대 500,000]</p>
|
||||
</div>
|
||||
<div class="adr1_btnWrap">
|
||||
<div>
|
||||
|
||||
@ -599,7 +599,7 @@ function listAddrTransHistAjax(pageNo) {
|
||||
<label for="groupAll" class="label">전체 선택</label>
|
||||
<input type="checkbox" name="groupAll" id="groupAll" value="1" onClick="fnCheckAll();">
|
||||
</div>
|
||||
<p class="open" onclick="openThisGroup('');"><img src="/publish/images/content/open_folder.png" alt="폴더 열림">전체[<span class="c_002c9a fwMd"><fmt:formatNumber value="${addrTotalCount}" pattern="#,###"/></span>/최대 100,000]</p>
|
||||
<p class="open" onclick="openThisGroup('');"><img src="/publish/images/content/open_folder.png" alt="폴더 열림">전체[<span class="c_002c9a fwMd"><fmt:formatNumber value="${addrTotalCount}" pattern="#,###"/></span>/최대 500,000]</p>
|
||||
</div>
|
||||
<div class="adr1_btnWrap">
|
||||
<div>
|
||||
|
||||
@ -74,7 +74,7 @@ $(document).ready(function(){
|
||||
</div>
|
||||
<div class="area_img_text">
|
||||
<c:out value="${photoList.letterSj}"/>
|
||||
<p class="sub_text"><c:out value="${msgKeywordSample}"/></p>
|
||||
<!--<p class="sub_text"><c:out value="${msgKeywordSample}"/></p>-->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -265,7 +265,7 @@
|
||||
<c:choose>
|
||||
<c:when test="${pageType == 'selectAddrList'}">
|
||||
<ul class="info_list">
|
||||
<li>연락처를 그룹별로 분류하여 간편하고 편리하게 관리할 수 있습니다(최대 100,000개까지 등록 가능)</li>
|
||||
<li>연락처를 그룹별로 분류하여 간편하고 편리하게 관리할 수 있습니다(최대 500,000개까지 등록 가능)</li>
|
||||
<li>그룹은 그룹 간 이동, 병합 및 복사가 가능합니다.</li>
|
||||
<li>주소록은 중복검사가 가능하며 중복된 연락처를 삭제할 수 있습니다. 단, 데이터 양에 따라 시간이 소요될 수 있습니다.</li>
|
||||
<li>주소록 관리에서 그룹 또는 연락처를 선택하여 문자를 바로 발송할 수 있습니다.</li>
|
||||
|
||||
@ -116,7 +116,7 @@
|
||||
.msg_photo .swiper-slide .slide_area:hover div.btn_more{display: block; width: 54px; height: 54px; background-color: rgba(0,0,0,0.4); border-radius: 100%; line-height: 48px; position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);}
|
||||
.msg_photo .area_img{display:flex;height:365px; border-radius: 16px 16px 0 0; overflow: hidden;align-items:center;}
|
||||
.msg_photo .area_img img{width: 100%; height: auto;}
|
||||
.msg_photo .area_img_text{font-size: 17px;padding: 12px 10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
|
||||
.msg_photo .area_img_text{font-size: 17px;padding: 18px 10px 0 10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
|
||||
.msg_photo .area_img_text .sub_text{display: block; font-size: 14px; color: #777; margin: 5px auto;}
|
||||
.msg_photo_wrap .swiper-button-prev {margin:0;background-image:url(/publish/images/main/btn_prev.png);background-size:12px 21px;}
|
||||
.msg_photo_wrap .swiper-button-next {margin:0;background-image:url(/publish/images/main/btn_next.png);background-size:12px 21px;}
|
||||
|
||||
@ -52,12 +52,27 @@ footer ul li a{color: #fff;}
|
||||
footer ul li:last-child{margin: 0 auto;}
|
||||
footer .iten{padding: 22px 0 40px 0; font-size: 26px; font-weight: 300; opacity: 40%;}
|
||||
|
||||
/*intro_03 내용 수정*/
|
||||
.visual .banner_con ul{padding: 50px 20px;}
|
||||
.visual .banner_con ul li{width:calc((100% - 15px)/2)}
|
||||
.visual .banner_con ul .wrap{border: none;}
|
||||
.visual .banner_con ul .wrap .inner_text{border-radius: 8px; font-weight: 700; padding: 15px 7px; line-height: 1.1; box-shadow: 0 0 20px rgba(0,0,0,0.3 );}
|
||||
.visual .banner_con ul .wrap .inner_text span{font-size: 20px;}
|
||||
.con .add_wrap .text .inner_sub{font-size: 30px; font-weight: 300;}
|
||||
|
||||
/*미디어쿼리_640x*/
|
||||
@media screen and (max-width:640px){
|
||||
.visual{background-image: url(/publish/publish_m/img/main_bg.png);}
|
||||
}
|
||||
|
||||
/*미디어쿼리_500x*/
|
||||
/*미디어쿼리_585px*/
|
||||
@media screen and (max-width:585px){
|
||||
/*intro_03 내용 수정*/
|
||||
.visual .banner_con ul .wrap .inner_text{font-size: 18px;}
|
||||
.visual .banner_con ul .wrap .inner_text span{font-size: 14px;}
|
||||
}
|
||||
|
||||
/*미디어쿼리_500px*/
|
||||
@media screen and (max-width:500px){
|
||||
/*header*/
|
||||
header .inner{border-radius: 0 0 20px 0; padding: 3px 20px;}
|
||||
@ -91,11 +106,29 @@ footer .iten{padding: 22px 0 40px 0; font-size: 26px; font-weight: 300; opacity:
|
||||
footer .title p{margin: 0 0 0 10px;}
|
||||
footer ul li{width: 210px; margin: 0 auto 8px auto; border-radius: 8px; font-size: 22px; padding: 8px 0 5px 0;}
|
||||
footer .iten{padding: 12px 0 20px 0; font-size: 13px;}
|
||||
|
||||
/*intro_03 내용 수정*/
|
||||
.visual .banner_con ul .wrap{border: none;}
|
||||
.visual .banner_con ul .wrap .inner_text{font-size: 18px; border-radius: 8px; font-weight: 700; font-size: 18px; padding: 15px 7px 13px 7px; line-height: 1.1; box-shadow: 0 0 20px rgba(0,0,0,0.3 );}
|
||||
.visual .banner_con ul .wrap .inner_text span{font-size: 14px;}
|
||||
.con .add_wrap .text .inner_sub{font-size: 15px;}
|
||||
}
|
||||
|
||||
/*미디어쿼리_460pxx*/
|
||||
/*미디어쿼리_460px*/
|
||||
@media screen and (max-width:460px){
|
||||
.visual{background-image: url(/publish//publish_m/img/main_bg_small_01.png);}
|
||||
/*intro_03 내용 수정*/
|
||||
.visual .banner_con ul .wrap .inner_text{font-size: 16px;}
|
||||
}
|
||||
|
||||
/*미디어쿼리_383px*/
|
||||
@media screen and (max-width:383px){
|
||||
.visual .banner_con ul .wrap .second_te{padding: 15px 6px 13px 6px;}
|
||||
}
|
||||
|
||||
/*미디어쿼리_382px*/
|
||||
@media screen and (max-width:382px){
|
||||
.visual .banner_con ul .wrap .second_te{padding: 15px 7px 13px 7px;}
|
||||
}
|
||||
|
||||
/*미디어쿼리_360x*/
|
||||
@ -107,10 +140,19 @@ footer .iten{padding: 22px 0 40px 0; font-size: 26px; font-weight: 300; opacity:
|
||||
@media screen and (max-width:340px){
|
||||
.visual .price ul .wrap .title{font-size: 13px;}
|
||||
.visual .price ul{padding: 0 15px;}
|
||||
/*intro_03 내용 수정*/
|
||||
.visual .banner_con ul{padding: 40px 15px;}
|
||||
}
|
||||
|
||||
/*미디어쿼리_310x*/
|
||||
@media screen and (max-width:310px){
|
||||
.visual .price ul .wrap .title{font-size: 12px;}
|
||||
.visual .price ul{padding: 0 9px;}
|
||||
/*intro_03 내용 수정*/
|
||||
.visual .banner_con ul{padding: 40px 15px;}
|
||||
}
|
||||
/*미디어쿼리_310x*/
|
||||
@media screen and (max-width:300px){
|
||||
/*intro_03 내용 수정*/
|
||||
.visual .banner_con ul .wrap .inner_text{font-size: 15px;}
|
||||
}
|
||||
146
src/main/webapp/publish/publish_m/munjaon_intro_03.html
Normal file
146
src/main/webapp/publish/publish_m/munjaon_intro_03.html
Normal file
@ -0,0 +1,146 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ko">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>프리미엄 문자 발송 서비스 문자온</title>
|
||||
<meta property="og:title" content="프리미엄 문자 발송 서비스 문자온">
|
||||
<meta property="og:image" content="https://www.munjaon.co.kr/publish/publish_m/img/preview_logo.png">
|
||||
|
||||
<link rel="apple-touch-icon" sizes="57x57" href="/publish/images/favicon/apple-icon-57x57.png">
|
||||
<link rel="apple-touch-icon" sizes="60x60" href="/publish/images/favicon/apple-icon-60x60.png">
|
||||
<link rel="apple-touch-icon" sizes="72x72" href="/publish/images/favicon/apple-icon-72x72.png">
|
||||
<link rel="apple-touch-icon" sizes="76x76" href="/publish/images/favicon/apple-icon-76x76.png">
|
||||
<link rel="apple-touch-icon" sizes="114x114" href="/publish/images/favicon/apple-icon-114x114.png">
|
||||
<link rel="apple-touch-icon" sizes="120x120" href="/publish/images/favicon/apple-icon-120x120.png">
|
||||
<link rel="apple-touch-icon" sizes="144x144" href="/publish/images/favicon/apple-icon-144x144.png">
|
||||
<link rel="apple-touch-icon" sizes="152x152" href="/publish/images/favicon/apple-icon-152x152.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/publish/images/favicon/apple-icon-180x180.png">
|
||||
<link rel="icon" type="image/png" sizes="192x192" href="/publish/images/favicon/android-icon-192x192.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/publish/images/favicon/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="96x96" href="/publish/images/favicon/favicon-96x96.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/publish/images/favicon/favicon-16x16.png">
|
||||
<link rel="manifest" href="/publish/images/favicon/manifest.json">
|
||||
|
||||
<link rel="stylesheet" href="/publish/publish_m/css/reset.css">
|
||||
<link rel="stylesheet" href="/publish/publish_m/css/style.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="con_wrap">
|
||||
<header>
|
||||
<div class="inner">
|
||||
<a href="https://www.munjaon.co.kr">
|
||||
<h1><img src="/publish/publish_m/img/header_logo.png" alt="문자온 로고"></h1>
|
||||
<p>munjaon.co.kr</p>
|
||||
</a>
|
||||
</div>
|
||||
</header>
|
||||
<div class="visual">
|
||||
<div class="inner">
|
||||
<h2><span>프리미엄</span> 문자<br>발송 서비스</h2>
|
||||
<div class="button">
|
||||
<a href="https://www.munjaon.co.kr">
|
||||
<p>문자온 바로가기 <span>(클릭)</span></p>
|
||||
</a>
|
||||
</div>
|
||||
<div class="price banner_con">
|
||||
<ul>
|
||||
<li>
|
||||
<div class="wrap">
|
||||
<p class="inner_text">최저가 요금<span>(후불제 가능)</span></p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<div class="wrap">
|
||||
<p class="inner_text second_te">편리한 선거문자 시스템</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<section>
|
||||
<div class="con">
|
||||
<div class="title">
|
||||
<p class="num">1</p>
|
||||
<p>특장점</p>
|
||||
</div>
|
||||
<div class="text_wrap add_wrap">
|
||||
<div class="text">
|
||||
<p class="te">편리한 20건 선거문자 발송</p>
|
||||
<p class="inner_sub">(자동분류, 전체선택 가능)</p>
|
||||
</div>
|
||||
<div class="text">
|
||||
<p class="te">업계 최저가 요금</p>
|
||||
<p class="inner_sub">(현 요금보다 저렴하게 제공)</p>
|
||||
</div>
|
||||
<div class="text">
|
||||
<p class="te">단문<span class="inner_sub">(SMS)</span>, 장문<span class="inner_sub">(LMS)</span>, 그림문자<span class="inner_sub">(MMS)</span>, 카카오 알림톡, 팩스 발송 기능 제공</p>
|
||||
</div>
|
||||
<div class="text">
|
||||
<p class="te">최신 트렌드 반영 서비스 제공</p>
|
||||
<div class="text_sub">
|
||||
<p>- 주소록 입력 대행(무료)</p>
|
||||
<p>- 예약발송 기능 제공(분 단위)</p>
|
||||
<p>- 문자메시지 지도‧약도 자동 첨부 가능</p>
|
||||
<p>- 그림문자 주문제작 서비스 제공</p>
|
||||
<p>- 다양한 결제수단 제공(신용카드, 휴대폰 결제, 전용계좌, 즉시이체, 간편결제 등)</p>
|
||||
<p>- 무제한 발송량 제공</p>
|
||||
<p>- 특정 공통문구(이름, 일시, 비용 등) 일괄 변경 기능 제공</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="text">
|
||||
<p class="te">기업‧단체‧공공기관 B2B 전용라인 제공</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section>
|
||||
<div class="con">
|
||||
<div class="title">
|
||||
<p class="num">2</p>
|
||||
<p>이용고객</p>
|
||||
</div>
|
||||
<div class="text_wrap add_wrap">
|
||||
<div class="text">
|
||||
<p class="te">개인<span class="inner_sub">(사업자)</span></p>
|
||||
<div class="text_sub">
|
||||
<p>- 동호회, 동문회, 향우회, 병원, 부동산, 음식점, 마트, 대리점, 숙박업, 전문직 사무실, 소셜커머스 사업자, 교육시설(학원, 학교, 유치원, 어린이집), 스포츠시설(골프장, 피트니스) 등</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="text">
|
||||
<p class="te">기업‧협회‧단체</p>
|
||||
<div class="text_sub">
|
||||
<p>- 기업(대‧중‧소기업), 협회, 조합, 비영리단체, 종교단체(교회, 사찰), 은행, 카드사, 쇼핑몰, 택배사, 보험사, 리서치사 등</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="text">
|
||||
<p class="te">공공</p>
|
||||
<div class="text_sub">
|
||||
<p>- 정부, 지방자치단체, 국회, 지방의회, 법원, 공공기관, 공직유관단체, 도서관, 미술관, 전시관, 공연시설, 영화관 등</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<footer>
|
||||
<div class="title">
|
||||
<img src="/publish/publish_m/img/tel_icon.png" alt="고객센터 아이콘">
|
||||
<p>고객센터</p>
|
||||
</div>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="tel:010-8432-9333">010-8432-9333</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="tel:010-2290-4789">010-2290-4789</a>
|
||||
</li>
|
||||
</ul>
|
||||
<p class="iten">주식회사 아이티앤</p>
|
||||
</footer>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Reference in New Issue
Block a user