Compare commits
12 Commits
f35924aac8
...
dev-nghian
Author | SHA1 | Date | |
---|---|---|---|
9eaad1a2e4 | |||
7ece26bdfb | |||
3702c59f20 | |||
b2a0f1cde2 | |||
d4c39c577f | |||
ac5bb1eb6e | |||
70aa21c78d | |||
39502ae8fb | |||
bcea171273 | |||
08d2918a6d | |||
2dde396442 | |||
4a20707c62 |
@ -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;
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
.v-select__custom {
|
.v-select__custom {
|
||||||
padding: 0.125rem;
|
// padding: 0.125rem;
|
||||||
|
|
||||||
&.v-text-field.v-text-field--solo:not(.v-text-field--solo-flat)>.v-input__control>.v-input__slot {
|
&.v-text-field.v-text-field--solo:not(.v-text-field--solo-flat)>.v-input__control>.v-input__slot {
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
|
@ -22,6 +22,10 @@
|
|||||||
background-color: transparent !important;
|
background-color: transparent !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.ant-pagination-item-ellipsis {
|
||||||
|
color: map-deep-get($config, #{$theme}, "paging-text") !important;
|
||||||
|
}
|
||||||
|
|
||||||
.ant-pagination-item,
|
.ant-pagination-item,
|
||||||
.ant-pagination-prev,
|
.ant-pagination-prev,
|
||||||
.ant-pagination-next {
|
.ant-pagination-next {
|
||||||
|
@ -69,7 +69,7 @@ export default {
|
|||||||
},
|
},
|
||||||
limit: {
|
limit: {
|
||||||
type: Number,
|
type: Number,
|
||||||
default: 0,
|
default: 10,
|
||||||
},
|
},
|
||||||
itemsPerPageArray: {
|
itemsPerPageArray: {
|
||||||
type: Array,
|
type: Array,
|
||||||
|
@ -43,16 +43,16 @@
|
|||||||
<!-- </div>-->
|
<!-- </div>-->
|
||||||
<!-- </v-list-item>-->
|
<!-- </v-list-item>-->
|
||||||
<v-list-item>
|
<v-list-item>
|
||||||
<v-btn @click="pswdChange" small elevation="0">
|
<v-list-item-title @click="pswdChange" class="body-2">
|
||||||
<v-icon class="mr-1" size="20">mdi-account-outline</v-icon>
|
<v-icon class="mr-1" size="20">mdi-account-outline</v-icon>
|
||||||
<span class="body-2">비밀번호 변경</span>
|
<span class="body-2">비밀번호 변경</span>
|
||||||
</v-btn>
|
</v-list-item-title>
|
||||||
</v-list-item>
|
</v-list-item>
|
||||||
<v-list-item>
|
<v-list-item>
|
||||||
<v-btn @click="logout" small elevation="0">
|
<v-list-item-title @click="logout" class="body-2">
|
||||||
<v-icon class="mr-1" size="20">mdi-logout</v-icon>
|
<v-icon class="mr-1" size="20">mdi-logout</v-icon>
|
||||||
<span class="body-2">로그아웃</span>
|
<span class="body-2">로그아웃</span>
|
||||||
</v-btn>
|
</v-list-item-title>
|
||||||
</v-list-item>
|
</v-list-item>
|
||||||
</v-list>
|
</v-list>
|
||||||
</v-menu>
|
</v-menu>
|
||||||
@ -105,7 +105,7 @@ export default {
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
pswdChange() {
|
pswdChange() {
|
||||||
this.$parent.$parent.$parent.$parent.$refs['changePswdPop'].dialog = true;
|
this.$parent.$parent.$parent.$refs['changePswdPop'].dialog = true;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
mounted() {},
|
mounted() {},
|
||||||
|
@ -34,7 +34,7 @@ export default {
|
|||||||
},
|
},
|
||||||
itemsPerPageArray: {
|
itemsPerPageArray: {
|
||||||
type: Array,
|
type: Array,
|
||||||
default: () => [20, 50, 100],
|
default: () => [10, 20, 50],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
|
@ -104,7 +104,6 @@ export default {
|
|||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
async chkDialog(val) {
|
async chkDialog(val) {
|
||||||
//console.log("watch : ", val)
|
|
||||||
if (val) {
|
if (val) {
|
||||||
this.openDialog();
|
this.openDialog();
|
||||||
|
|
||||||
|
@ -53,7 +53,7 @@
|
|||||||
</v-col>
|
</v-col>
|
||||||
</v-row>
|
</v-row>
|
||||||
<!-- <div :style="'height: calc(65vh)'"> -->
|
<!-- <div :style="'height: calc(65vh)'"> -->
|
||||||
<div :style="'height: 600px'" class="px-5">
|
<div :style="'height: 620px'" class="px-5">
|
||||||
<!-- <div :style="{ height: 'calc(100% - 213px)' }"> -->
|
<!-- <div :style="{ height: 'calc(100% - 213px)' }"> -->
|
||||||
<div ref="modalGridParent" class="h100 py-3">
|
<div ref="modalGridParent" class="h100 py-3">
|
||||||
<!-- :is="loadGrid && dialog ? 'Grid' : null" -->
|
<!-- :is="loadGrid && dialog ? 'Grid' : null" -->
|
||||||
|
@ -102,7 +102,7 @@ export default {
|
|||||||
this.gridInit();
|
this.gridInit();
|
||||||
},
|
},
|
||||||
gridInit() {
|
gridInit() {
|
||||||
const gridHeight = this.$refs.gridParent.offsetHeight - 31;
|
const gridHeight = this.$refs.gridParent.offsetHeight;
|
||||||
|
|
||||||
const myOptions = {
|
const myOptions = {
|
||||||
columnOptions: {
|
columnOptions: {
|
||||||
@ -122,7 +122,6 @@ export default {
|
|||||||
gridKey: this.gridName,
|
gridKey: this.gridName,
|
||||||
value: myOptions,
|
value: myOptions,
|
||||||
});
|
});
|
||||||
|
|
||||||
const _this = this;
|
const _this = this;
|
||||||
let useFgSelectList = [];
|
let useFgSelectList = [];
|
||||||
this.pageData.useFgList.forEach(item => {
|
this.pageData.useFgList.forEach(item => {
|
||||||
|
@ -61,7 +61,9 @@
|
|||||||
</v-list-item>
|
</v-list-item>
|
||||||
</v-list>
|
</v-list>
|
||||||
</v-menu>
|
</v-menu>
|
||||||
<a-button id="removeBm" class="btn-header" @click="removeBookMark" v-if="bookmarkBtn == 1">
|
<a-button id="removeBm" :style="{
|
||||||
|
display: 'flex',
|
||||||
|
alignItems: 'center'}" class="btn-header" @click="removeBookMark" v-if="bookmarkBtn == 1">
|
||||||
<span class="material-icons" style="font-size: 17px">star</span>
|
<span class="material-icons" style="font-size: 17px">star</span>
|
||||||
</a-button>
|
</a-button>
|
||||||
<a-button id="addBm" class="btn-header" :style="{
|
<a-button id="addBm" class="btn-header" :style="{
|
||||||
|
@ -117,8 +117,8 @@ export default {
|
|||||||
// rowGridOrigin: [],
|
// rowGridOrigin: [],
|
||||||
detailList: myDetail,
|
detailList: myDetail,
|
||||||
itemsPerPage: 20,
|
itemsPerPage: 20,
|
||||||
itemsPerPageArray: [10, 20, 30],
|
itemsPerPageArray: [10, 20, 50],
|
||||||
limit: 20,
|
limit: 10,
|
||||||
page: 1,
|
page: 1,
|
||||||
totalCount: 0,
|
totalCount: 0,
|
||||||
};
|
};
|
||||||
|
@ -295,8 +295,8 @@ export default {
|
|||||||
selectedRowKey: null,
|
selectedRowKey: null,
|
||||||
selectedRowData: null,
|
selectedRowData: null,
|
||||||
itemsPerPage: 10,
|
itemsPerPage: 10,
|
||||||
itemsPerPageArray: [10, 20, 30],
|
itemsPerPageArray: [10, 20, 50],
|
||||||
limit: 20,
|
limit: 10,
|
||||||
page: 1,
|
page: 1,
|
||||||
totalCount: 0,
|
totalCount: 0,
|
||||||
writeActionData: {
|
writeActionData: {
|
||||||
|
@ -134,8 +134,8 @@ export default {
|
|||||||
// rowGridOrigin: [],
|
// rowGridOrigin: [],
|
||||||
detailList: myDetail,
|
detailList: myDetail,
|
||||||
itemsPerPage: 10,
|
itemsPerPage: 10,
|
||||||
itemsPerPageArray: [10, 20, 30],
|
itemsPerPageArray: [10, 20, 50],
|
||||||
limit: 20,
|
limit: 10,
|
||||||
page: 1,
|
page: 1,
|
||||||
totalCount: 0,
|
totalCount: 0,
|
||||||
};
|
};
|
||||||
|
@ -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>
|
||||||
@ -117,8 +117,8 @@ export default {
|
|||||||
formFg: false,
|
formFg: false,
|
||||||
},
|
},
|
||||||
itemsPerPage: 10,
|
itemsPerPage: 10,
|
||||||
itemsPerPageArray: [10, 20, 30],
|
itemsPerPageArray: [10, 20, 50],
|
||||||
limit: 20,
|
limit: 10,
|
||||||
page: 1,
|
page: 1,
|
||||||
totalCount: 0,
|
totalCount: 0,
|
||||||
};
|
};
|
||||||
|
@ -167,8 +167,8 @@ export default {
|
|||||||
gridName: "rowGrid",
|
gridName: "rowGrid",
|
||||||
loadGrid: false,
|
loadGrid: false,
|
||||||
itemsPerPage: 10,
|
itemsPerPage: 10,
|
||||||
itemsPerPageArray: [10, 20, 30],
|
itemsPerPageArray: [10, 20, 50],
|
||||||
limit: 20,
|
limit: 10,
|
||||||
page: 1,
|
page: 1,
|
||||||
totalCount: 0,
|
totalCount: 0,
|
||||||
};
|
};
|
||||||
|
@ -153,8 +153,8 @@ export default {
|
|||||||
detailList: myDetail,
|
detailList: myDetail,
|
||||||
alrmFg: null,
|
alrmFg: null,
|
||||||
itemsPerPage: 10,
|
itemsPerPage: 10,
|
||||||
itemsPerPageArray: [10, 20, 30],
|
itemsPerPageArray: [10, 20, 50],
|
||||||
limit: 20,
|
limit: 10,
|
||||||
page: 1,
|
page: 1,
|
||||||
totalCount: 0,
|
totalCount: 0,
|
||||||
};
|
};
|
||||||
|
@ -783,5 +783,8 @@ const dataPathDataExample = getPathDataExample({
|
|||||||
.v-window {
|
.v-window {
|
||||||
overflow: visible;
|
overflow: visible;
|
||||||
}
|
}
|
||||||
|
.ant-checkbox-inner {
|
||||||
|
padding: 8px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -159,8 +159,8 @@ export default {
|
|||||||
eqpmGdIdxFlag: false,
|
eqpmGdIdxFlag: false,
|
||||||
fabFlag: false,
|
fabFlag: false,
|
||||||
itemsPerPage: 10,
|
itemsPerPage: 10,
|
||||||
itemsPerPageArray: [10, 20, 30],
|
itemsPerPageArray: [10, 20, 50],
|
||||||
limit: 20,
|
limit: 10,
|
||||||
page: 1,
|
page: 1,
|
||||||
routeData: {},
|
routeData: {},
|
||||||
totalCount: 0,
|
totalCount: 0,
|
||||||
|
@ -110,8 +110,8 @@ export default {
|
|||||||
rowKey: null,
|
rowKey: null,
|
||||||
edtingFinishFlag: 'Y',
|
edtingFinishFlag: 'Y',
|
||||||
itemsPerPage: 10,
|
itemsPerPage: 10,
|
||||||
itemsPerPageArray: [10, 20, 30],
|
itemsPerPageArray: [10, 20, 50],
|
||||||
limit: 20,
|
limit: 10,
|
||||||
page: 1,
|
page: 1,
|
||||||
totalCount: 0,
|
totalCount: 0,
|
||||||
};
|
};
|
||||||
|
@ -327,6 +327,10 @@ export class NewCustomEditor {
|
|||||||
} else {
|
} else {
|
||||||
el.checked = false;
|
el.checked = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
divEl.style.position = 'relative';
|
||||||
|
divEl.style.top = rowKey === 0 ? '1px' : '3px';
|
||||||
|
|
||||||
el.addEventListener('change', (ev) => {
|
el.addEventListener('change', (ev) => {
|
||||||
// console.log('props: %o', ev);
|
// console.log('props: %o', ev);
|
||||||
if (ev.target.checked) {
|
if (ev.target.checked) {
|
||||||
|
Reference in New Issue
Block a user