com : app.vue - breadcrumb 주석

com : navbar.vue - 테마기능 삭제
func : VFlexTable 커스텀추가
fix : 계약관리, 결재함 스타일수정
This commit is contained in:
Kasi
2025-05-28 18:11:05 +09:00
parent 7340dc6299
commit d0c91e6a44
6 changed files with 694 additions and 142 deletions

View File

@@ -326,7 +326,7 @@ const onPrcsFileDownload = async (prcsNo: string, fileOrd: number, logiFnm: stri
<td>견적서확인</td>
<td colspan="9">
<slot name="status"
v-if="!params.svyYn"
v-if="params.stCd == '0100'"
>
<div style="display: flex; justify-content: flex-end; gap: 8px;">
<VButton
@@ -340,7 +340,7 @@ const onPrcsFileDownload = async (prcsNo: string, fileOrd: number, logiFnm: stri
</div>
</slot>
<div class="mt-2">
<ComVFlexTable
<VFlexTableCustomize
:key="params.prcsBizs.length"
:data="params.prcsBizs"
:columns="params.prcsBizsColumn"
@@ -373,13 +373,12 @@ const onPrcsFileDownload = async (prcsNo: string, fileOrd: number, logiFnm: stri
</template>
<!-- 나머지 컬럼만 슬롯 사용 -->
<template #body-cell="{ column, index, value, row }">
<pre>{{ row.sendYn }}</pre>
<div>
<span v-if="column.key=='num'">{{index + 1}}</span>
<span v-else>{{ value }}</span>
</div>
</template>
</ComVFlexTable>
</VFlexTableCustomize>
</div>
</td>
</tr>