Update 1908

This commit is contained in:
dev
2025-08-20 10:17:23 +09:00
parent 08637f6321
commit 7baa87df12
6 changed files with 198 additions and 75 deletions

View File

@ -60,20 +60,21 @@
</v-col>
</v-row>
<v-row ref="contents" class="pt-3">
<v-col :cols="12" >
<v-card class="pb-5">
<v-col :cols="12" style="height: 100%">
<v-card class="pb-3">
<div class="d-flex align-center justify-space-between pa-4">
<v-card-title class="pa-0">설비별 현황 리스트</v-card-title>
</div>
<div class="px-4" >
<div class="px-4" style="height:calc(100% - 120px)">
<div ref="gridParent" class="w100 h100 enrg-effc">
<component :ref="gridName" :is="loadGrid ? 'Grid' : null" :gridName="gridName"
:parentPrgmId="myPrgmId" :columnClickEventFlag="true" @columnClick="columnClick" />
<div class="d-flex align-center justify-center pa-5 pb-0" v-if="loadGrid && totalCount > 0">
</div>
<div class="d-flex align-center justify-center pa-5 pb-0" v-if="loadGrid && totalCount > 0">
<pagination id="pagination" :total-count="totalCount" :page-num="page" :limit="limit"
@loadData="changeGrid" />
</div>
</div>
</div>