총페이지수 와 통계건수 사이 공백제거

This commit is contained in:
itn 2023-07-31 15:35:06 +09:00
parent 7d862c1a75
commit 05601b92f4
2 changed files with 3 additions and 4 deletions

View File

@ -112,7 +112,7 @@ function getMberStopCashSum() {
if (data.isSuccess) {
try {
var sHtml = "";
sHtml = "  (" + jsonInfo.userMoneyDay + " : " + jsonInfo.userMoneyDaySum + " / " + jsonInfo.userMoneyYear + "년 누적 : " + jsonInfo.userMoneyYearSum + ")";
sHtml = "(" + jsonInfo.userMoneyDay + " : " + jsonInfo.userMoneyDaySum + " / " + jsonInfo.userMoneyYear + "년 누적 : " + jsonInfo.userMoneyYearSum + ")";
$("#mberStopCashSumArea").html(sHtml);
} catch (error) {
console.error(error);
@ -487,8 +487,7 @@ function customLinkPage(mberId){
</div>
<div class="listTop">
<p class="tType5">
총 <span class="tType4 c_456ded fwBold"><fmt:formatNumber value="${paginationInfo.totalRecordCount}" pattern="#,###" /></span>건
<span id="mberStopCashSumArea"></span>
총 <span class="tType4 c_456ded fwBold"><fmt:formatNumber value="${paginationInfo.totalRecordCount}" pattern="#,###" /></span>건<span id="mberStopCashSumArea"></span>
</p>
<div class="rightWrap">
<!-- <input type="button" class="excelBtn" onclick="javascript:userListExcelDownload();"> -->

View File

@ -58,7 +58,7 @@ function getMjonKakaoAtThisSum() {
if (data.isSuccess) {
try {
var sHtml = "";
sHtml = "&nbsp;&nbsp;(" + jsonInfo.successDay + " : " + jsonInfo.successCntDay + "건 / " + jsonInfo.successMonth + "월 누적 : " + jsonInfo.successCntMonth + "건 / " + jsonInfo.successYear + "년 누적 : " + jsonInfo.successCntYear + "건)";
sHtml = "(" + jsonInfo.successDay + " : " + jsonInfo.successCntDay + "건 / " + jsonInfo.successMonth + "월 누적 : " + jsonInfo.successCntMonth + "건 / " + jsonInfo.successYear + "년 누적 : " + jsonInfo.successCntYear + "건)";
$("#mjonKakaoAtThisSumArea").html(sHtml);
} catch (error) {
console.error(error);