style : UI 맞추기 및 요구사항 반영

This commit is contained in:
Yesol Choi
2025-06-02 08:30:53 +09:00
parent 7cbaee5385
commit a9f603c1e9
2 changed files with 13 additions and 9 deletions

View File

@@ -244,7 +244,7 @@ function onInput(row, column){
</colgroup>
<tbody>
<tr>
<td>분야</td>
<td>분야<span style="color: red">*</span></td>
<td colspan="2">
<span class="column is-7">
<VField class="pr-2">
@@ -255,7 +255,7 @@ function onInput(row, column){
</VField>
</span>
</td>
<td>제목</td>
<td>제목<span style="color: red">*</span></td>
<td colspan="6">
<div class="column is-fullhd">
<VField class="pr-2">
@@ -272,7 +272,7 @@ function onInput(row, column){
</td>
</tr>
<tr>
<td>내용</td>
<td>내용<span style="color: red">*</span></td>
<td colspan="10">
<div class="column is-fullhd">
<VField class="pr-2">
@@ -290,7 +290,7 @@ function onInput(row, column){
</td>
</tr>
<tr>
<td>견적요청</td>
<td>견적요청<span style="color: red">*</span></td>
<td colspan="9">
<VButton
color="primary"
@@ -342,7 +342,7 @@ function onInput(row, column){
</td>
</tr>
<tr>
<td>규격입력</td>
<td>규격입력<span style="color: red">*</span></td>
<td colspan="2">
<VButton
color="primary"
@@ -403,7 +403,7 @@ function onInput(row, column){
</template>
</VModal>
</td>
<td>등록기간</td>
<td>등록기간<span style="color: red">*</span></td>
<td colspan="6">
<div class="columns">
<div class="column is-4">
@@ -427,7 +427,7 @@ function onInput(row, column){
</template>
</VDatePicker>
</div>
<div style="transform: translateY(15px)">~</div>
<div class="column is-1" style="text-align: center; line-height: 2rem;">~</div>
<div class="column is-4">
<VDatePicker
v-model="generalParams.regEdat"

View File

@@ -651,8 +651,8 @@ const moveDown = (index: number) => {
</VField>
</span>
<span v-else-if="column.key === 'actions'" class="flex gap-1">
<VCustomButton v-if="index != 1" @click="moveUp(index)" icon="lucide:chevron-up" />
<VCustomButton @click="moveDown(index)" icon="lucide:chevron-down" />
<VCustomButton v-if="index != 1" @click="moveUp(index)" icon="lucide:arrow-up" />
<VCustomButton @click="moveDown(index)" icon="lucide:arrow-down" />
<VCustomButton @click="onPriceDelete(index)">{{"삭제"}}</VCustomButton>
</span>
<span v-else>{{value}}</span>
@@ -745,4 +745,8 @@ const moveDown = (index: number) => {
background-color: var(--primary);
}
}
.iconify {
font-size: 16px; /* 크기 조절 */
}
</style>