mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-07 04:27:21 +09:00
206 lines
6.2 KiB
Vue
206 lines
6.2 KiB
Vue
<template>
|
|
<!-- <div class="wrap bg-wrap"> -->
|
|
<div>
|
|
<div class="dimmed" @click="ModalClose();"></div>
|
|
<div class="popup-wrap">
|
|
<!-- 메시지 차단 신규 등록 -->
|
|
<div class="popup popup_form modal57">
|
|
<div class="pop-head">
|
|
<h3 class="pop-tit">메시지 차단 신규 등록</h3>
|
|
</div>
|
|
<form autocomplete="off">
|
|
<table>
|
|
<tbody>
|
|
<tr>
|
|
<th>차단문구</th>
|
|
<td class="input_add">
|
|
<input v-model="word" ref="_word">
|
|
<button type="button" class="button white add" @click="doAdd"></button>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2" class="registration" value="">
|
|
<ul>
|
|
<li v-for="(item, i) in msgBlckwordList" v-bind:key="item.word">
|
|
<span> {{ item.word }}<a href="#" @click="doDel(item, i)"><img src="@/assets/images/icon-del.png"/></a> </span>
|
|
<!-- <button type="button" @click="doDel(item, i)">x</button> -->
|
|
</li>
|
|
</ul>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>조건</th>
|
|
<td>
|
|
<input type="radio" name="state" value="01" id="popup_radio3" v-model="blckContCd" >
|
|
<label for="popup_radio3">AND</label>
|
|
<input type="radio" name="state" value="02" id="popup_radio4" v-model="blckContCd">
|
|
<label for="popup_radio4">OR</label>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>차단사유</th>
|
|
<td>
|
|
<div>
|
|
<select name="" id="" v-model.trim="blckRsnCd" ref="blckRsnCd">
|
|
<option v-for="(option, i) in rsnType"
|
|
:value="blckRsnCd"
|
|
v-bind:key="i"
|
|
:selected="blckRsnCd === option.code">
|
|
{{ option.codeNm }}
|
|
</option>
|
|
</select>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>메모</th>
|
|
<td class="sender"><textarea class="memo_text" v-model.trim="memo" ref="memo"></textarea></td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
</table>
|
|
</form>
|
|
<div class="popup-btn2">
|
|
<button class="btn-pcolor" @click="doInsert">저장</button>
|
|
<button class="btn-default" @click="ModalClose();">취소</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import api from '@/service/api';
|
|
import riskMgtApi from '../service/riskMgtApi';
|
|
import lodash from "lodash";
|
|
import { utils_mixin, chkPattern2 } from '../service/mixins';
|
|
export default {
|
|
mixins: [utils_mixin, chkPattern2],
|
|
data(){
|
|
return{
|
|
|
|
row: {},
|
|
// msgBlckword: {
|
|
// word:'',
|
|
// },
|
|
msgBlckwordList: [
|
|
{ seqNo: '' , word : '도박'},
|
|
// { word : '스팸'},
|
|
],
|
|
rsnType: [],
|
|
tpType: [],
|
|
// seqNo: '', // 일련번호
|
|
word: '', // 차단문구
|
|
blckSndrno:'',
|
|
sndblckTpCd:'',
|
|
blckRsnCd: '', // 차단사유
|
|
blckYn:'',
|
|
blckContCd:'', //차단 조건
|
|
chgDt:'',
|
|
regId: '',
|
|
regDt: '',
|
|
memo: '', // 메모
|
|
|
|
}
|
|
},
|
|
created(){
|
|
this.formReset();
|
|
},
|
|
|
|
methods :{
|
|
ModalOpen(){
|
|
this.formReset();
|
|
var dimmed = document.getElementsByClassName('dimmed');
|
|
dimmed[0].style.display = 'block';
|
|
var wrap = document.getElementsByClassName('popup-wrap');
|
|
wrap[0].style.display = 'block';
|
|
var obj = document.getElementsByClassName('modal57');
|
|
obj[0].style.display = 'block';
|
|
this.setCodeDate();
|
|
},
|
|
// 모달 끄기
|
|
ModalClose(){
|
|
//this.formReset();
|
|
var dimmed = document.getElementsByClassName('dimmed');
|
|
dimmed[0].style.display = 'none';
|
|
var wrap = document.getElementsByClassName('popup-wrap');
|
|
wrap[0].style.display = 'none';
|
|
var popup = document.getElementsByClassName('modal57');
|
|
popup[0].style.display = 'none';
|
|
|
|
},
|
|
|
|
setCodeDate(){
|
|
// 발송타입
|
|
api.commCode({'grpCd' : 'SNDBLCK_TP_CD'}).then(response => {
|
|
this.tpType = response.data.data.list;
|
|
});
|
|
api.commCode({'grpCd' : 'SNDBLCK_RSN_CD'}).then(response => {
|
|
this.rsnType = response.data.data.list;
|
|
});
|
|
},
|
|
|
|
async doInsert(){
|
|
if(this.doValidate() && window.confirm('등록 하시겠습니까?')){
|
|
try {
|
|
const response = await riskMgtApi.msgIntrcpList(this.row);
|
|
const result = response.data;
|
|
if (result != null && result.retCode == "0000") {
|
|
alert('저장 하였습니다.');
|
|
}
|
|
this.toComplete();
|
|
} catch(err) {
|
|
alert("실패 하였습니다.");
|
|
}
|
|
}
|
|
},
|
|
|
|
doValidate(){
|
|
if(this.isNull(this.word)){
|
|
this.$refs._word.focus();
|
|
return false;
|
|
}
|
|
|
|
this.row.blckRsnCd = this.blckRsnCd;
|
|
this.row.blckContCd = this.blckContCd;
|
|
this.row.memo = this.memo;
|
|
this.row.blckYn = this.blckYn;
|
|
this.row.list = this.msgBlckwordList
|
|
return true;
|
|
|
|
},
|
|
|
|
toComplete(){
|
|
this.$parent.$refs.table.reloadData();
|
|
this.ModalClose();
|
|
},
|
|
//신규등록 팝업에서 문구 추가 버튼
|
|
doAdd: function() {
|
|
if(this.msgBlckwordList.length < 10){
|
|
this.msgBlckwordList.push({
|
|
//seqNo: '',
|
|
word: this.word
|
|
});
|
|
this.word = '';
|
|
}
|
|
},
|
|
//신규등록 팝업에서 문구 삭제 버튼
|
|
doDel(item, i){
|
|
localStorage.removeItem(item);
|
|
this.msgBlckwordList.splice(i, 1);
|
|
},
|
|
formReset(){
|
|
var type= this.insertType;
|
|
Object.assign(this.$data, this.$options.data());
|
|
this.insertType = type;
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
}
|
|
</script> |