문자 재전송시 location.reload => location.href 로 변경
재전송 문자가 발송후 또 나옴
This commit is contained in:
parent
5b43d4543a
commit
83e9396be2
@ -197,6 +197,11 @@ function getMjMsgListByResend() {
|
||||
});
|
||||
}
|
||||
|
||||
//문자발송 URL Move
|
||||
function goMsgUrlMove() {
|
||||
document.location.href = "/web/mjon/msgcampain/selectMsgDataView.do";
|
||||
}
|
||||
|
||||
function listMsgDataView(){
|
||||
|
||||
var sendData = $(document.searchForm).serializeArray() ;
|
||||
@ -1459,7 +1464,8 @@ function fn_sendMsgData(){
|
||||
}else if("statusFail" == returnData.result){
|
||||
|
||||
alert(returnData.message);
|
||||
location.reload();
|
||||
//문자발송 URL Move
|
||||
goMsgUrlMove();
|
||||
return false;
|
||||
|
||||
}else{
|
||||
@ -1708,7 +1714,8 @@ function sendMsgAjax(paramSmsCnt, paramBlockCnt){
|
||||
}else if("statusFail" == returnData.result){
|
||||
|
||||
alert(returnData.message);
|
||||
location.reload();
|
||||
//문자발송 URL Move
|
||||
goMsgUrlMove();
|
||||
return false;
|
||||
|
||||
}else{
|
||||
@ -1880,7 +1887,8 @@ function fnMyMsgSearchListOrd(){
|
||||
|
||||
function msgSuccessClose(obj){
|
||||
$(obj).closest('.pop_msg_success').attr('style','');
|
||||
location.reload(true);
|
||||
//문자발송 URL Move
|
||||
goMsgUrlMove();
|
||||
$('html').scrollTop(0);
|
||||
}
|
||||
|
||||
|
||||
@ -228,6 +228,10 @@ function getMjMsgListByResend() {
|
||||
});
|
||||
}
|
||||
|
||||
// 문자발송 URL Move
|
||||
function goMsgUrlMove() {
|
||||
document.location.href = "/web/mjon/msgdata/selectMsgDataView.do";
|
||||
}
|
||||
|
||||
function listMsgDataView(){
|
||||
|
||||
@ -1668,7 +1672,8 @@ function fn_sendMsgData(){
|
||||
}else if("statusFail" == returnData.result){
|
||||
|
||||
alert(returnData.message);
|
||||
location.reload();
|
||||
//문자발송 URL Move
|
||||
goMsgUrlMove();
|
||||
return false;
|
||||
|
||||
}else{
|
||||
@ -1917,7 +1922,8 @@ function sendMsgAjax(paramSmsCnt, paramBlockCnt){
|
||||
}else if("statusFail" == returnData.result){
|
||||
|
||||
alert(returnData.message);
|
||||
location.reload();
|
||||
//문자발송 URL Move
|
||||
goMsgUrlMove();
|
||||
return false;
|
||||
|
||||
}else{
|
||||
@ -2077,7 +2083,8 @@ function fnMyMsgSearchListOrd(){
|
||||
|
||||
function msgSuccessClose(obj){
|
||||
$(obj).closest('.pop_msg_success').attr('style','');
|
||||
location.reload(true);
|
||||
//문자발송 URL Move
|
||||
goMsgUrlMove();
|
||||
$('html').scrollTop(0);
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user