mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-06 20:08:41 +09:00
엑셀 다운로드
This commit is contained in:
@@ -8,7 +8,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "채널별 발송건수",
|
"name": "채널별 발송건수",
|
||||||
"colspan": 5
|
"colspan": 8
|
||||||
}
|
}
|
||||||
|
|
||||||
],
|
],
|
||||||
@@ -31,6 +31,18 @@
|
|||||||
{
|
{
|
||||||
"key": "sndCntA",
|
"key": "sndCntA",
|
||||||
"name": "알림톡"
|
"name": "알림톡"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "fbSndCntS",
|
||||||
|
"name": "대체발송SMS"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "fbSndCntL",
|
||||||
|
"name": "대체발송LMS"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "fbSndCntM",
|
||||||
|
"name": "대체발송MMS"
|
||||||
}]
|
}]
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -350,6 +350,9 @@ export default {
|
|||||||
sndCntLTotal = sndCntLTotal + Number(data.list[i].sndCntL);
|
sndCntLTotal = sndCntLTotal + Number(data.list[i].sndCntL);
|
||||||
sndCntMTotal = sndCntMTotal + Number(data.list[i].sndCntM);
|
sndCntMTotal = sndCntMTotal + Number(data.list[i].sndCntM);
|
||||||
sndCntATotal = sndCntATotal + Number(data.list[i].sndCntA);
|
sndCntATotal = sndCntATotal + Number(data.list[i].sndCntA);
|
||||||
|
fbSndCntSTotal = fbSndCntSTotal + Number(result.data.list[i].fbSndCntS);
|
||||||
|
fbSndCntLTotal = fbSndCntLTotal + Number(result.data.list[i].fbSndCntL);
|
||||||
|
fbSndCntMTotal = fbSndCntMTotal + Number(result.data.list[i].fbSndCntM);
|
||||||
}
|
}
|
||||||
let totalRow = {
|
let totalRow = {
|
||||||
sumYm: '합계',
|
sumYm: '합계',
|
||||||
@@ -358,6 +361,9 @@ export default {
|
|||||||
sndCntL: sndCntLTotal,
|
sndCntL: sndCntLTotal,
|
||||||
sndCntM: sndCntMTotal,
|
sndCntM: sndCntMTotal,
|
||||||
sndCntS: sndCntSTotal,
|
sndCntS: sndCntSTotal,
|
||||||
|
fbSndCntS: fbSndCntSTotal,
|
||||||
|
fbSndCntL: fbSndCntLTotal,
|
||||||
|
fbSndCntM: fbSndCntMTotal
|
||||||
};
|
};
|
||||||
// 합계 데이터 추가
|
// 합계 데이터 추가
|
||||||
data.list.unshift(totalRow);
|
data.list.unshift(totalRow);
|
||||||
|
|||||||
Reference in New Issue
Block a user