Merge pull request #185 from seeoya/master

프론트 버그 신고 내역 처리
This commit is contained in:
thisgun
2022-07-04 17:37:40 +09:00
committed by GitHub
3 changed files with 34 additions and 37 deletions

View File

@ -876,20 +876,6 @@ strong.sodr_nonpay {display:block;padding:5px 0;text-align:right}
.sbn_img {text-align:center} .sbn_img {text-align:center}
.sbn_image {display:none;margin:0 0 10px;text-align:left} .sbn_image {display:none;margin:0 0 10px;text-align:left}
/* SMS문자전송 */
#sms_send {padding-bottom:100px;zoom:1}
#sms_send:after {display:block;visibility:hidden;clear:both;content:""}
#sms_frm {float:left;width:650px}
#sms_frm table {margin:0 0 30px}
#sms_frm textarea {height:70px}
#sms_sm {position:relative;float:left;width:229px;height:418px;background:url('../shop_admin/img/mobilebg.jpg') no-repeat}
#sms_sm_text {position:absolute;top:75px;left:27px;width:180px;color:#fff;font-size:2em;word-break:break-all}
#sms_sm p {position:absolute;bottom:-70px;left:0;font-size:0.95em;letter-spacing:-0.1em}
#sms_send .local_desc01 {min-width:320px}
/* 가격비교사이트 */ /* 가격비교사이트 */
#anc_pricecompare_info li {margin:5px 0 5px -1px} #anc_pricecompare_info li {margin:5px 0 5px -1px}

View File

@ -176,13 +176,13 @@ $cart_count = sql_num_rows($result);
<?php } ?> <?php } ?>
<div id="sod_bsk_act" class="btn_confirm"> <div id="sod_bsk_act" class="btn_confirm">
<div class="total">총계 <strong class="total_cnt"><?php echo number_format($tot_price); ?>원</strong> <div class="total">총계 <strong class="total_cnt"><?php echo number_format($tot_price); ?>원</strong></div>
</div>
<input type="hidden" name="url" value="<?php echo G5_SHOP_URL; ?>/orderform.php"> <input type="hidden" name="url" value="<?php echo G5_SHOP_URL; ?>/orderform.php">
<input type="hidden" name="act" value=""> <input type="hidden" name="act" value="">
<input type="hidden" name="records" value="<?php echo $i; ?>"> <input type="hidden" name="records" value="<?php echo $i; ?>">
<button type="button" onclick="return form_check('buy');" class="btn_submit">주문하기</button> <button type="button" onclick="return form_check('buy');" class="btn_submit">주문하기</button>
</div> </div>
</div>
<?php } ?> <?php } ?>
<?php if ($naverpay_button_js) { ?> <?php if ($naverpay_button_js) { ?>
<div class="naverpay-cart"><?php echo $naverpay_request_js.$naverpay_button_js; ?></div> <div class="naverpay-cart"><?php echo $naverpay_request_js.$naverpay_button_js; ?></div>

View File

@ -25,6 +25,12 @@ function m_Completepayment( FormOrJson, closeEvent )
/********************************************************************/ /********************************************************************/
GetField( frm, FormOrJson ); GetField( frm, FormOrJson );
$("body").css({
"position": "",
"width": "",
"top" : ""
});
if( frm.res_cd.value == "0000" ) if( frm.res_cd.value == "0000" )
{ {
document.getElementById("display_pay_button").style.display = "none" ; document.getElementById("display_pay_button").style.display = "none" ;
@ -49,6 +55,11 @@ function jsf__pay( form )
try try
{ {
KCP_Pay_Execute( form ); KCP_Pay_Execute( form );
$("body").css({
"position": "fixed",
"width": "100%",
"top" : "0"
});
} }
catch (e) catch (e)
{ {