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

@ -156,32 +156,32 @@ $cart_count = sql_num_rows($result);
<div class="go_shopping"><a href="<?php echo G5_SHOP_URL; ?>/" class="btn01">쇼핑 계속하기</a></div> <div class="go_shopping"><a href="<?php echo G5_SHOP_URL; ?>/" class="btn01">쇼핑 계속하기</a></div>
<?php } else { ?> <?php } else { ?>
<div class="sod_ta_wr"> <div class="sod_ta_wr">
<?php <?php
$tot_price = $tot_sell_price + $send_cost; // 총계 = 주문상품금액합계 + 배송비 $tot_price = $tot_sell_price + $send_cost; // 총계 = 주문상품금액합계 + 배송비
if ($tot_price > 0 || $send_cost > 0) { if ($tot_price > 0 || $send_cost > 0) {
?> ?>
<dl id="m_sod_bsk_tot"> <dl id="m_sod_bsk_tot">
<?php if ($send_cost > 0) { // 배송비가 0 보다 크다면 (있다면) ?> <?php if ($send_cost > 0) { // 배송비가 0 보다 크다면 (있다면) ?>
<dt class="sod_bsk_dvr">배송비</dt> <dt class="sod_bsk_dvr">배송비</dt>
<dd class="sod_bsk_dvr"><strong><?php echo number_format($send_cost); ?> 원</strong></dd> <dd class="sod_bsk_dvr"><strong><?php echo number_format($send_cost); ?> 원</strong></dd>
<?php } ?>
<?php if ($tot_price > 0) { ?>
<dt>포인트</dt>
<dd><strong><?php echo number_format($tot_point); ?> 점</strong></dd>
<dt class="sod_bsk_cnt">총계</dt>
<dd class="sod_bsk_cnt"><strong><?php echo number_format($tot_price); ?></strong> 원</dd>
<?php } ?>
</dl>
<?php } ?> <?php } ?>
<?php if ($tot_price > 0) { ?> <div id="sod_bsk_act" class="btn_confirm">
<dt>포인트</dt> <div class="total">총계 <strong class="total_cnt"><?php echo number_format($tot_price); ?>원</strong></div>
<dd><strong><?php echo number_format($tot_point); ?> 점</strong></dd> <input type="hidden" name="url" value="<?php echo G5_SHOP_URL; ?>/orderform.php">
<dt class="sod_bsk_cnt">총계</dt> <input type="hidden" name="act" value="">
<dd class="sod_bsk_cnt"><strong><?php echo number_format($tot_price); ?></strong> 원</dd> <input type="hidden" name="records" value="<?php echo $i; ?>">
<?php } ?> <button type="button" onclick="return form_check('buy');" class="btn_submit">주문하기</button>
</dl>
<?php } ?>
<div id="sod_bsk_act" class="btn_confirm">
<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="act" value="">
<input type="hidden" name="records" value="<?php echo $i; ?>">
<button type="button" onclick="return form_check('buy');" class="btn_submit">주문하기</button>
</div> </div>
<?php } ?> <?php } ?>
<?php if ($naverpay_button_js) { ?> <?php if ($naverpay_button_js) { ?>

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)
{ {