mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-07 05:12:34 +09:00
수정건 수정
This commit is contained in:
@@ -51,6 +51,7 @@
|
||||
<input type="text" placeholder="발신번호명" v-model="numberInput.sendNm" maxlength="20">
|
||||
<input type="text" placeholder="발신번호(숫자만입력)" v-model="numberInput.sendNum" @keypress="onlyNum"
|
||||
@input="onlyNum" maxlength="11">
|
||||
<button class="button white" @click="delNumberInput">삭제</button>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
@@ -272,11 +273,15 @@ export default {
|
||||
this.custSeq = data.custSeq
|
||||
},
|
||||
addNumberInput() {
|
||||
if(this.numberInputs.length == 9){
|
||||
return false;
|
||||
}
|
||||
this.numberInputs.push({
|
||||
sendNm: '',
|
||||
sendNum: ''
|
||||
})
|
||||
},
|
||||
|
||||
delNumberInput(index) {
|
||||
this.numberInputs.splice(index, 1)
|
||||
},
|
||||
@@ -742,6 +747,8 @@ export default {
|
||||
}
|
||||
this.otherBusinessFile = null;
|
||||
},
|
||||
|
||||
/** 저장 */
|
||||
async saveSendNum() {
|
||||
this.saveSendNums = []
|
||||
this.saveSendNums.push({
|
||||
@@ -797,6 +804,7 @@ export default {
|
||||
}
|
||||
|
||||
} else if (this.nmineeDivCd === '02') {
|
||||
// 타사업자
|
||||
const response = await sendNumMgtApi.insertNumber2(this.communicationFile, this.delegationFile, this.attorneyFile, this.otherBusinessFile ,this.delegatedIdentificationFile, this.delegateCertificateFile, this.delegatedBusinessFile, this.authorizedBusinessFile, this.corporateCertificateFile, this.identificationCardFile, this.identificationEvidenceFile, this.adminId, this.custNm, this.bRegNo, this.nmineeDivCd, this.saveSendNums, this.bizrAuthYn, this.custSeq, this.bRegNo)
|
||||
|
||||
const result = response.data;
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
<div class="contents">
|
||||
<div class="contents_wrap">
|
||||
<div class="top_wrap">
|
||||
<h3 class="title">문자 발신 번호 목록 조회</h3>
|
||||
<p class="breadcrumb">발신번호관리 > 문자 발신 번호 목록 조회</p>
|
||||
<h3 class="title">문자 발신 번호 관리</h3>
|
||||
<p class="breadcrumb">발신번호관리 > 문자 발신 번호 관리</p>
|
||||
</div>
|
||||
<div class="search_wrap">
|
||||
<div class="group">
|
||||
|
||||
Reference in New Issue
Block a user