fix : 삭제 기능 정리

This commit is contained in:
Yesol Choi
2025-05-26 13:32:08 +09:00
parent 0f4272ed48
commit 7a5c491554
2 changed files with 20 additions and 18 deletions

View File

@@ -67,14 +67,13 @@ const params = reactive({
{ key: 'qty', label: '수량', editable: true },
{ key: '', label: '단가(VAT별도)', editable: false },
{ key: '', label: '금액(VAT별도)', editable: false },
{ key: '', label: '삭제', editable: false },
{ key: 'delete', label: '삭제', editable: false },
],
dtlSpecs: [], //상세 규격 입력 데이터
btnChangeFlag: false
})
function getDetailList(arg){
console.log("arg",arg)
params.prcsNo = arg.prcsNo
params.stCd = arg.stCd
params.cateSelect = arg.cateCd
@@ -366,7 +365,7 @@ function onInput(row, column){
class="editable-input"
/>
<span v-else-if="column.key=='num'">{{index+1}}</span>
<span v-else class="lnil lnil-close"
<span v-else-if="column.key=='delete'" class="lnil lnil-close"
@click="onDetailDelete(index)">{{ value }}</span>
</div>
</template>