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:
@@ -221,8 +221,6 @@ export default {
|
||||
AdminNmPop,
|
||||
},
|
||||
created() {
|
||||
console.log(this.$route.params.userSeq);
|
||||
//this.$store.commit("login/isLogin", true);
|
||||
this.getExcelHeader();
|
||||
if(this.$route.params.userSeq != null){ //리스트에서 상세 호출
|
||||
this.loginId = this.$route.params.loginId;
|
||||
@@ -246,7 +244,6 @@ export default {
|
||||
try {
|
||||
const response = await channelMgtApi.channelDetail(this.row);
|
||||
const result = response.data;
|
||||
console.log(result);
|
||||
var sndCntTotal = 0;
|
||||
var sndCntSTotal = 0;
|
||||
var sndCntLTotal = 0;
|
||||
@@ -256,7 +253,6 @@ export default {
|
||||
//데이터값이 널이면 오류처리
|
||||
|
||||
for (var i = 0; i < result.data.list.length; i++) {
|
||||
console.log('[succCnt]:' + result.data.list[i].succCnt);
|
||||
sndCntTotal = sndCntTotal + Number(result.data.list[i].sndCnt);
|
||||
sndCntSTotal = sndCntSTotal + Number(result.data.list[i].sndCntS)
|
||||
sndCntLTotal = sndCntLTotal + Number(result.data.list[i].sndCntL)
|
||||
@@ -324,14 +320,13 @@ export default {
|
||||
return false;
|
||||
}
|
||||
let today = moment().format('YYYYMMDDHHmmss');
|
||||
const saveFileName = `유치고객발송건수_${today}.xlsx`;
|
||||
const saveFileName = `유치고객발송건수_${today}.xls`;
|
||||
const data = await this.getExcelDataDown();
|
||||
let options = {
|
||||
|
||||
header: this.excelHeader,
|
||||
dataOrder: 'header'
|
||||
};
|
||||
// console.log(data);
|
||||
xlsx.export(data.list, saveFileName, options).then(() => {
|
||||
});
|
||||
},
|
||||
@@ -364,7 +359,6 @@ export default {
|
||||
this.$router.push({name: 'channelList'});
|
||||
},
|
||||
searchIDPopOpen: function () {
|
||||
console.log('>>> serviceId:' + this.serviceId);
|
||||
var params = {
|
||||
"serviceId": this.serviceId,
|
||||
"serviceSeq": this.row.userSeq,
|
||||
|
||||
Reference in New Issue
Block a user