fix : 결재선 비고 select box 이슈로 컴포넌트 하나 더 생성

This commit is contained in:
Yesol Choi
2025-05-27 16:41:06 +09:00
parent cebc55c90b
commit 6bb34c0133
2 changed files with 88 additions and 3 deletions

View File

@@ -2,6 +2,7 @@
import {getDetailPrcs, updatePrice, getPrcsFileDown, deletePrcsFile} from '/src/service/priceApi'
import {type iPbAtt, type Person} from '/@src/utils/types'
import {formatBizNum, formatDatefromString} from "/@src/utils/common/comfunc.ts";
import VDefaultCodeSelect from "/@src/components/app-vuero/VDefaultCodeSelect.vue";
const notyf = useNotyf()
const loading = ref(false)
const router = useRouter()
@@ -39,7 +40,7 @@ const params = reactive({
{ key: 'deptNm', label: '부서' },
{ key: 'sabun', label: '사번' },
{ key: 'name', label: '이름' },
{ key: 'attendCd', label: '비고' },
{ key: 'attendCd', label: '비고'},
{ key: 'apprStat', label: '결재상태'},
{ key: 'apprDt', label: '승인일자'},
],
@@ -92,6 +93,7 @@ function getDetailList(arg){
apprDt: req.apprDt,
attendCd: req.attendCd
})) //비고 데이터 없음, 승인일자 없음 todo
console.log("apprLine.value",apprLine.value)
params.prcsAtts = arg.prcsAtts
}
@@ -564,14 +566,14 @@ const onPrcsFileDownload = async (prcsNo: string, fileOrd: number, logiFnm: stri
</span>
<span v-else-if="column.key=='attendCd'" class="column">
<VField class="pr-1">
<VCodeSelect
<VDefaultCodeSelect
placeholder="재중"
cd_grp=6
v-model="row.attendCd">
<!-- <template #code>-->
<!-- <span v-if="!row.attendCd">{{"재중"}}</span>-->
<!-- </template>-->
</VCodeSelect>
</VDefaultCodeSelect>
</VField>
</span>
<span v-else