mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-07 09:05:16 +09:00
웹취약점, 모의해킹 조치
This commit is contained in:
@@ -80,8 +80,6 @@ export default {
|
||||
},
|
||||
methods :{
|
||||
alertModalOpen(props){
|
||||
console.log('>>>>>>>>>> alertModalOpen');
|
||||
console.log(props.msg1);
|
||||
this.title = props.title;
|
||||
this.msg1 = props.msg1;
|
||||
this.msg2 = props.msg2;
|
||||
|
||||
@@ -242,11 +242,9 @@ export default {
|
||||
},
|
||||
methods: {
|
||||
async getLiveSendSttus(){
|
||||
console.log('getLiveSendSttus Start');
|
||||
try {
|
||||
const response = await mntrngApi.liveSendSttus();
|
||||
const result = response.data;
|
||||
console.log(result);
|
||||
if (result != null && result.retCode == "0000") {
|
||||
|
||||
this.startTimeM = result.data.startTimeM;
|
||||
@@ -294,15 +292,12 @@ export default {
|
||||
this.succesCntAlmtD = result.data.succesCntAlmtD;
|
||||
this.succesRtAlmtD = result.data.succesRtAlmtD;
|
||||
} else {
|
||||
alert("조회정보가 없습니다.");
|
||||
}
|
||||
} catch(err) {
|
||||
alert("실패 하였습니다.");
|
||||
}
|
||||
},
|
||||
switchSelect: function(event) {
|
||||
this.selectedKey = event.target.value;
|
||||
console.log('>>>>>>>>>>>> [selectedKey]:'+this.selectedKey)
|
||||
this.changeAutoUpdate();
|
||||
},
|
||||
cancelAutoUpdate () {
|
||||
@@ -311,7 +306,6 @@ export default {
|
||||
changeAutoUpdate () {
|
||||
clearInterval(this.timer)
|
||||
this.timer = setInterval(this.getLiveSendSttus, this.selectedKey * 1000 * 60)
|
||||
console.log('>>>>>>>>>>>> [changeAutoUpdate()_selectTime]:'+this.selectedKey * 1000 * 60)
|
||||
}
|
||||
|
||||
},
|
||||
|
||||
@@ -223,7 +223,6 @@ export default {
|
||||
let page = 1;
|
||||
// 페이지 정보 및 검색 조건
|
||||
const getCondition = this.$store.getters['searchcondition/getSearchCondition'];
|
||||
console.log('getCondition : ' + getCondition);
|
||||
|
||||
// store에 저장된 페이지 정보 및 검색 조건을 불러오기
|
||||
let isKeep = false;
|
||||
@@ -238,7 +237,6 @@ export default {
|
||||
beforeRouteLeave(to, from, next) {
|
||||
|
||||
const getP = this.$refs.table.getPagination();
|
||||
console.log("==========getP : " + getP._currentPage);
|
||||
this.$store.commit('searchcondition/updateSearchCondition', {
|
||||
page: getP._currentPage,
|
||||
perPage: this.perPageCnt,
|
||||
@@ -259,7 +257,6 @@ export default {
|
||||
this.grid.params.phone = this.grid.params.searchText1;
|
||||
this.grid.params.callbackNumber = this.grid.params.searchText2;
|
||||
this.grid.params.custNm = this.grid.params.searchText3;
|
||||
console.log(this.grid.params);
|
||||
}
|
||||
}
|
||||
this.$refs.table.search(this.grid.params, isKeep);
|
||||
@@ -283,8 +280,7 @@ export default {
|
||||
if (this.startDate > this.endDate) {
|
||||
this.startDate = this.endDate;
|
||||
}
|
||||
// console.log(this.disabledSDate)
|
||||
// this.grid.params.startDt = day
|
||||
|
||||
},
|
||||
selectedEndDate(day) {
|
||||
if (day != undefined && day != null) {
|
||||
@@ -317,7 +313,6 @@ export default {
|
||||
},
|
||||
sendStoreData: function () {
|
||||
const getP = this.$refs.table.getPagination();
|
||||
console.log("==========getP : " + getP._currentPage);
|
||||
this.$store.commit('searchcondition/updateSearchCondition', {
|
||||
page: getP._currentPage,
|
||||
perPage: this.perPageCnt,
|
||||
@@ -325,7 +320,6 @@ export default {
|
||||
});
|
||||
|
||||
const getCondition = this.$store.getters['searchcondition/getSearchCondition'];
|
||||
console.log("getCondition : " + getCondition.perPage);
|
||||
},
|
||||
doValidate() {
|
||||
// 발송일자 필수입력체크
|
||||
|
||||
Reference in New Issue
Block a user