Fix datepicker icon + add dash line in line chart

This commit is contained in:
Michael
2025-08-11 17:58:25 +09:00
parent bc96d2ae45
commit e59078a19c
5 changed files with 558 additions and 539 deletions

View File

@ -66,6 +66,10 @@
} }
} }
} }
.v-icon {
color: map-deep-get($config, #{$theme}, "v-icon-chevron-down") !important;
}
} }
.v-input__custom { .v-input__custom {

View File

@ -19,8 +19,11 @@
readonly readonly
outlined outlined
> >
<template #append > <!-- <template #append >
<v-icon size="20" v-show="!isRange">$icoCalendar</v-icon> <v-icon size="20" v-show="!isRange">$icoCalendar</v-icon>
</template> -->
<template v-slot:append>
<a-icon class="v-icon" type="calendar" style="width: 14px; height: 14px;" />
</template> </template>
<template #append-outer> <template #append-outer>
<div ref="startpicker-container" id="startpicker-container"></div> <div ref="startpicker-container" id="startpicker-container"></div>

View File

@ -33,7 +33,7 @@
</v-col> </v-col>
<v-col :cols="6" class="text-right"> <v-col :cols="6" class="text-right">
<!-- 조회버튼 --> <!-- 조회버튼 -->
<BtnSearch style="margin-top: 20px" size="large" @click="search" /> <BtnSearch style="margin-top: 25px" size="large" @click="search" />
</v-col> </v-col>
</v-row> </v-row>
</v-card> </v-card>

File diff suppressed because it is too large Load Diff

View File

@ -201,7 +201,6 @@ export default {
gridName: "grid01", gridName: "grid01",
enrgUseMainIdxDesc: [], enrgUseMainIdxDesc: [],
itemsPerPage: 10,
itemsPerPageArray: [10, 20, 30], itemsPerPageArray: [10, 20, 30],
limit: 10, limit: 10,
page: 1, page: 1,
@ -433,6 +432,9 @@ export default {
name: "eqpmGrpNm", name: "eqpmGrpNm",
align: "left", align: "left",
width: 200, width: 200,
},
{ header: "eqpmId", name: "eqpmId", hidden: true },
{ header: "설비명", name: "eqpmNm", align: "left", width: 200,
// Render custom button to switch page instead of double click on row // Render custom button to switch page instead of double click on row
renderer: { renderer: {
type: CustomButton, type: CustomButton,
@ -465,8 +467,6 @@ export default {
}, },
}, },
}, },
{ header: "eqpmId", name: "eqpmId", hidden: true },
{ header: "설비명", name: "eqpmNm", align: "left", width: 200 },
{ {
header: "계획량", header: "계획량",
name: "planVal", name: "planVal",