fix : 가격조사 상세 화면 요구사항 반영 - > 견적요청 쪽

This commit is contained in:
Yesol Choi
2025-05-26 14:15:16 +09:00
parent 7edc101ade
commit 41e23c2b0b

View File

@@ -213,7 +213,7 @@ const onChangeFinal = async () => {
<td colspan="2"> <td colspan="2">
<VButton <VButton
color='success' color='success'
icon="fas fa-plus" icon="fas"
elevated elevated
@click="detailActionsOpen = true" @click="detailActionsOpen = true"
> >
@@ -344,24 +344,24 @@ const onChangeFinal = async () => {
<td>견적요청</td> <td>견적요청</td>
<td colspan="6"> <td colspan="6">
<div style="display: flex; justify-content: flex-end; gap: 8px;"> <div style="display: flex; justify-content: flex-end; gap: 8px;">
<!-- <VButton-->
<!-- color="primary"-->
<!-- icon="fas"-->
<!-- elevated-->
<!-- @click="showTable = !showTable"-->
<!-- >-->
<!-- 견적사 확인-->
<!-- </VButton>-->
<VButton <VButton
color="primary" color="primary"
icon="fas fa-plus" icon="fas fa-circle"
elevated
@click="showTable = !showTable"
>
견적사 확인
</VButton>
<VButton
color="primary"
icon="fas fa-plus"
elevated elevated
@click="onChangeFinal" @click="onChangeFinal"
> >
가격조사 완료 가격조사 완료
</VButton> </VButton>
</div> </div>
<div v-if="showTable" class="mt-2"> <div class="mt-2">
<ComVFlexTable <ComVFlexTable
:key="params.prcsBizs.length" :key="params.prcsBizs.length"
:data="params.prcsBizs" :data="params.prcsBizs"
@@ -372,14 +372,7 @@ const onChangeFinal = async () => {
> >
<template #body-cell="{ row, column, index, value }"> <template #body-cell="{ row, column, index, value }">
<div> <div>
<!-- 다른 editable 컬럼은 input --> <span v-if="column.key=='num'">{{index + 1}}</span>
<input
:readonly=true
v-if="column.editable"
v-model="row[column.key]"
class="editable-input"
/>
<span v-else-if="column.key=='num'">{{index + 1}}</span>
<!-- readonly 출력 --> <!-- readonly 출력 -->
<span v-else>{{ value }}</span> <span v-else>{{ value }}</span>
</div> </div>