수정건 수정

This commit is contained in:
USER
2022-09-01 16:54:21 +09:00
parent 648a16ad4f
commit 8dcd9365b6
15 changed files with 216 additions and 33 deletions

View File

@@ -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;