mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 07:13:44 +09:00
style : input box 스타일 변경 완료
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
import {deletePrcsFile, getPrcsFileDown, savePrice} from '/src/service/priceApi'
|
||||
import {type iPbAtt, Person} from '/@src/utils/types'
|
||||
import {formatBizNum,formatDatefromString} from "/@src/utils/common/comfunc.ts";
|
||||
import Control from "/@src/pages/components/forms/control.vue";
|
||||
|
||||
const notyf = useNotyf()
|
||||
const showTable = ref(false)
|
||||
@@ -204,9 +205,11 @@ const onFileChange = (e: any) => {
|
||||
}
|
||||
|
||||
const onFilDelete = async ( index: number, fileOrd: number) => {
|
||||
notyf.dismissAll()
|
||||
const confirmed = confirm('삭제하시겠습니까?')
|
||||
if (index) {
|
||||
pbAtts.value.splice(index, 1)
|
||||
if (confirmed){
|
||||
pbAtts.value.splice(index, 1)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -308,7 +311,7 @@ function onInput(row, column){
|
||||
<VControl>
|
||||
<input
|
||||
v-model="row[column.key]"
|
||||
class="editable-input"
|
||||
class="input custom-text-filter"
|
||||
ref="prcsBizsRef"
|
||||
@blur="onInput(row, column)"
|
||||
/>
|
||||
@@ -353,7 +356,9 @@ function onInput(row, column){
|
||||
@close="detailActionsOpen = false"
|
||||
>
|
||||
<template #content>
|
||||
<div class="form-label">
|
||||
<VButton color="success">일괄업로드</VButton>
|
||||
</div>
|
||||
<ComVFlexTable
|
||||
:key="params.dtlSpecs.length"
|
||||
:data="params.dtlSpecs"
|
||||
@@ -368,7 +373,7 @@ function onInput(row, column){
|
||||
<input
|
||||
v-if="column.editable"
|
||||
v-model="row[column.key]"
|
||||
class="editable-input"
|
||||
class="input custom-text-filter"
|
||||
/>
|
||||
<span v-else-if="column.key=='num'">{{index+1}}</span>
|
||||
<span v-else-if="column.key=='delete'" class="lnil lnil-close"
|
||||
|
||||
Reference in New Issue
Block a user