mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 07:23:50 +09:00
fix : 사업자번호 mask 처리 완료
This commit is contained in:
@@ -410,14 +410,25 @@ const moveDown = (index: number) => {
|
||||
<div class="control" :class="column.key === 'actions' ? 'text-center' : ''">
|
||||
<!-- 다른 editable 컬럼은 input -->
|
||||
<input
|
||||
v-if="column.editable"
|
||||
v-if="column.key=='email'"
|
||||
v-model="row[column.key]"
|
||||
class="input custom-text-filter"
|
||||
ref="prcsBizsRef"
|
||||
@blur="onInput(row, column)"
|
||||
/>
|
||||
<VIMaskInput
|
||||
v-if="column.key=='bizNo'"
|
||||
v-model="row[column.key]"
|
||||
autocomplete="cc-csc"
|
||||
class="input"
|
||||
:options="{
|
||||
mask: '000-00-0000',
|
||||
}"
|
||||
placeholder="000-00-0000"
|
||||
/>
|
||||
<span v-else-if="column.key=='num'">{{index + 1}}</span>
|
||||
<!-- readonly 출력 -->
|
||||
<span v-else class="lnil lnil-close"
|
||||
<span v-else-if="column.key=='actions'" class="lnil lnil-close"
|
||||
@click="onDelete(index)">{{ value }}</span>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user