mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 01:12:30 +09:00
fix : 가격조사 상세 화면 요구사항 반영 - > 견적요청 쪽
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user