mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-07 01:33:37 +09:00
날짜별 월별 통계
This commit is contained in:
@@ -51,17 +51,23 @@
|
||||
<div class="table calculate">
|
||||
<table>
|
||||
<colgroup>
|
||||
<col width="7%" />
|
||||
<col width="9.3%" />
|
||||
<col width="9.3%" />
|
||||
<col width="9.3%" />
|
||||
<col width="9.3%" />
|
||||
<col width="9.3%" />
|
||||
<col width="9.3%" />
|
||||
<col width="9.3%" />
|
||||
<col width="9.3%" />
|
||||
<col width="9.3%" />
|
||||
<col width="9.3%" />
|
||||
<col width="4%" />
|
||||
<col width="6%" />
|
||||
<col width="6%" />
|
||||
<col width="6%" />
|
||||
<col width="6%" />
|
||||
<col width="6%" />
|
||||
<col width="6%" />
|
||||
<col width="6%" />
|
||||
<col width="6%" />
|
||||
<col width="6%" />
|
||||
<col width="6%" />
|
||||
<col width="6%" />
|
||||
<col width="6%" />
|
||||
<col width="6%" />
|
||||
<col width="6%" />
|
||||
<col width="6%" />
|
||||
<col width="6%" />
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr>
|
||||
@@ -71,6 +77,9 @@
|
||||
<th colspan="2">LMS</th>
|
||||
<th colspan="2">MMS</th>
|
||||
<th colspan="2">알림톡</th>
|
||||
<th colspan="2">대체발송SMS</th>
|
||||
<th colspan="2">대체발송LMS</th>
|
||||
<th colspan="2">대체발송MMS</th>
|
||||
</tr>
|
||||
<tr class="total">
|
||||
<th>발송건수</th>
|
||||
@@ -83,6 +92,12 @@
|
||||
<th>성공건수/(%)</th>
|
||||
<th>발송건수</th>
|
||||
<th>성공건수/(%)</th>
|
||||
<th>발송건수</th>
|
||||
<th>성공건수/(%)</th>
|
||||
<th>발송건수</th>
|
||||
<th>성공건수/(%)</th>
|
||||
<th>발송건수</th>
|
||||
<th>성공건수/(%)</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@@ -106,6 +121,18 @@
|
||||
<td>
|
||||
{{ option.succCntR.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',') }}<br />({{ option.succRtR }}%)
|
||||
</td>
|
||||
<td>{{ option.fbSndCntS.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',') }}</td>
|
||||
<td>
|
||||
{{ option.fbSuccCntS.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',') }}<br />({{ option.succFbRtS }}%)
|
||||
</td>
|
||||
<td>{{ option.fbSndCntL.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',') }}</td>
|
||||
<td>
|
||||
{{ option.fbSuccCntL.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',') }}<br />({{ option.succFbRtL }}%)
|
||||
</td>
|
||||
<td>{{ option.fbSndCntM.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',') }}</td>
|
||||
<td>
|
||||
{{ option.fbSuccCntM.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',') }}<br />({{ option.succFbRtM }}%)
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
@@ -336,6 +363,27 @@ export default {
|
||||
excelData.sndCntR = this.list[i].sndCntR;
|
||||
excelData.succCntR = succCntR;
|
||||
|
||||
// 대체발송 SMS 성공 건수
|
||||
var fbSuccCntS = this.list[i].fbSuccCntS;
|
||||
var succFbRtS = this.list[i].succFbRtS;
|
||||
fbSuccCntS = fbSuccCntS + '(' + succFbRtS + '%)';
|
||||
excelData.fbSndCntS = this.list[i].fbSndCntS;
|
||||
excelData.fbSuccCntS = fbSuccCntS;
|
||||
|
||||
// 대체발송 LMS 성공 건수
|
||||
var fbSuccCntL = this.list[i].fbSuccCntL;
|
||||
var succFbRtL = this.list[i].succFbRtL;
|
||||
fbSuccCntL = fbSuccCntL + '(' + succFbRtL + '%)';
|
||||
excelData.fbSndCntL = this.list[i].fbSndCntL;
|
||||
excelData.fbSuccCntL = fbSuccCntL;
|
||||
|
||||
// 대체발송 MMS 성공 건수
|
||||
var fbSuccCntM = this.list[i].fbSuccCntM;
|
||||
var succFbRtM = this.list[i].succFbRtM;
|
||||
fbSuccCntM = fbSuccCntM + '(' + succFbRtM + '%)';
|
||||
excelData.fbSndCntM = this.list[i].fbSndCntM;
|
||||
excelData.fbSuccCntM = fbSuccCntM;
|
||||
|
||||
excelList.push(excelData);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user