Compare commits

..

No commits in common. "588fcfbe908ee00cfcb3f877dba104e3013d67f9" and "ff2c12638253c156dc83bcb7d0bd087ebdd07b2c" have entirely different histories.

1 changed files with 1 additions and 11 deletions

View File

@ -86,7 +86,7 @@
다운로드
</a>
</td>
<td>{{ item.nickname }}<br>{{ formatPhoneNumber(item.phoneNumber) }}</td>
<td>{{ item.nickname }}</td>
<td>
<vuetify-audio
:file="item.voiceUrl"
@ -173,16 +173,6 @@ export default {
}
},
formatPhoneNumber(phoneNumber) {
//
if (phoneNumber.length === 11 && /^\d+$/.test(phoneNumber)) {
//
return `${phoneNumber.slice(0, 3)}-${phoneNumber.slice(3, 7)}-${phoneNumber.slice(7)}`;
} else {
return phoneNumber;
}
},
async getAuditionRoleDetail() {
try {
const res = await api.getAuditionRoleDetail(this.audition_role_id)