mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-19 21:05:06 +09:00
fix : 가격조사 상세 화면 요구사항 반영 - > 견적요청 쪽
This commit is contained in:
@@ -213,7 +213,7 @@ const onChangeFinal = async () => {
|
||||
<td colspan="2">
|
||||
<VButton
|
||||
color='success'
|
||||
icon="fas fa-plus"
|
||||
icon="fas"
|
||||
elevated
|
||||
@click="detailActionsOpen = true"
|
||||
>
|
||||
@@ -344,24 +344,24 @@ const onChangeFinal = async () => {
|
||||
<td>견적요청</td>
|
||||
<td colspan="6">
|
||||
<div style="display: flex; justify-content: flex-end; gap: 8px;">
|
||||
<!-- <VButton-->
|
||||
<!-- color="primary"-->
|
||||
<!-- icon="fas"-->
|
||||
<!-- elevated-->
|
||||
<!-- @click="showTable = !showTable"-->
|
||||
<!-- >-->
|
||||
<!-- 견적사 확인-->
|
||||
<!-- </VButton>-->
|
||||
<VButton
|
||||
color="primary"
|
||||
icon="fas fa-plus"
|
||||
elevated
|
||||
@click="showTable = !showTable"
|
||||
>
|
||||
견적사 확인
|
||||
</VButton>
|
||||
<VButton
|
||||
color="primary"
|
||||
icon="fas fa-plus"
|
||||
icon="fas fa-circle"
|
||||
elevated
|
||||
@click="onChangeFinal"
|
||||
>
|
||||
가격조사 완료
|
||||
</VButton>
|
||||
</div>
|
||||
<div v-if="showTable" class="mt-2">
|
||||
<div class="mt-2">
|
||||
<ComVFlexTable
|
||||
:key="params.prcsBizs.length"
|
||||
:data="params.prcsBizs"
|
||||
@@ -372,14 +372,7 @@ const onChangeFinal = async () => {
|
||||
>
|
||||
<template #body-cell="{ row, column, index, value }">
|
||||
<div>
|
||||
<!-- 다른 editable 컬럼은 input -->
|
||||
<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>
|
||||
<span v-if="column.key=='num'">{{index + 1}}</span>
|
||||
<!-- readonly 출력 -->
|
||||
<span v-else>{{ value }}</span>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user