Compare commits

...

2 Commits

5 changed files with 17 additions and 7 deletions

View File

@ -92,6 +92,15 @@
background-color: #36383f; background-color: #36383f;
} }
.toastui-editor-dark .toastui-editor-popup-add-heading h1,
.toastui-editor-dark .toastui-editor-popup-add-heading h2,
.toastui-editor-dark .toastui-editor-popup-add-heading h3,
.toastui-editor-dark .toastui-editor-popup-add-heading h4,
.toastui-editor-dark .toastui-editor-popup-add-heading h5,
.toastui-editor-dark .toastui-editor-popup-add-heading h6 {
color: #eee;
}
.toastui-editor-dark .toastui-editor-popup-body label { .toastui-editor-dark .toastui-editor-popup-body label {
color: #9a9da3; color: #9a9da3;
} }

View File

@ -174,8 +174,9 @@ export default {
this.gridScrollTop = e.target.scrollTop; this.gridScrollTop = e.target.scrollTop;
this.gridScrollLeft = e.target.scrollLeft; this.gridScrollLeft = e.target.scrollLeft;
}); });
if (this.scrollBody.scrollHeight > this.scrollBody.clientHeight) {
if (!(this.scrollBody.scrollHeight > this.scrollBody.clientHeight)) { this.gridInstance.$el.getElementsByClassName('tui-grid-content-area')[0].classList.remove('tui-grid-no-scroll-y');
} else {
this.gridInstance.$el.getElementsByClassName('tui-grid-content-area')[0].classList.add('tui-grid-no-scroll-y'); this.gridInstance.$el.getElementsByClassName('tui-grid-content-area')[0].classList.add('tui-grid-no-scroll-y');
} }
} }

View File

@ -509,7 +509,7 @@ export default {
this.loadGrid = false; this.loadGrid = false;
const res = await this.postApiReturn({ const res = await this.postApiReturn({
apiKey: 'selectPostPage', apiKey: 'selectPostData',
resKey: 'postPage', resKey: 'postPage',
sendParam: params, sendParam: params,
}); });

View File

@ -12,7 +12,7 @@
</v-col> </v-col>
<v-col :cols="3"> <v-col :cols="3">
<component :is="'EvtObjPop'" :parentPrgmId="myPrgmId" :item="evtObjPopItem" <component :is="'EvtObjPop'" :parentPrgmId="myPrgmId" :item="evtObjPopItem"
class="no-gutters" customClass="select-large" /> class="no-gutters" customClass="select-large pa-0" />
</v-col> </v-col>
<v-col :cols="3"> <v-col :cols="3">
<!-- 대상일 --> <!-- 대상일 -->
@ -30,8 +30,8 @@
</v-row> </v-row>
<v-row ref="contents"> <v-row ref="contents">
<v-col :cols="12" class="h100"> <v-col :cols="12" class="h100">
<v-card class="px-5 py-5"> <v-card class="pa-5 pb-0">
<div ref="gridParent" class="px-5" style="height:calc(100% - 40px)"> <div ref="gridParent" class="px-5" style="height:calc(100% - 70px)">
<component ref="myGrid" :is="loadGrid ? 'Grid' : null" :gridName="gridName" <component ref="myGrid" :is="loadGrid ? 'Grid' : null" :gridName="gridName"
:parentPrgmId="myPrgmId" /> :parentPrgmId="myPrgmId" />
</div> </div>

View File

@ -514,7 +514,7 @@ const INIT_URL_STATE = {
// prgmId: "PRG0003" 공지사항 // prgmId: "PRG0003" 공지사항
selectPostList: 'comm/base/NoticeMngCtr/selectPostList', selectPostList: 'comm/base/NoticeMngCtr/selectPostList',
selectPostPage: 'comm/base/NoticeMngCtr/selectPostPage', selectPostData: 'comm/base/NoticeMngCtr/selectPostData',
selectPostPageTotal: 'comm/base/NoticeMngCtr/selectPostPageTotal', selectPostPageTotal: 'comm/base/NoticeMngCtr/selectPostPageTotal',
deletePostList: 'comm/base/NoticeMngCtr/deletePost', deletePostList: 'comm/base/NoticeMngCtr/deletePost',