diff --git a/babylon-vue-4.0.0/src/layout/AppBreadcrumb.vue b/babylon-vue-4.0.0/src/layout/AppBreadcrumb.vue index f57fd0c..fc491f9 100644 --- a/babylon-vue-4.0.0/src/layout/AppBreadcrumb.vue +++ b/babylon-vue-4.0.0/src/layout/AppBreadcrumb.vue @@ -5,24 +5,44 @@
  • + +
  • /
  • +
  • {{ breadcrumb[0].parent }}
  • + +
    + + diff --git a/babylon-vue-4.0.0/src/layout/AppTopbar.vue b/babylon-vue-4.0.0/src/layout/AppTopbar.vue index f7b37fb..c8bee96 100644 --- a/babylon-vue-4.0.0/src/layout/AppTopbar.vue +++ b/babylon-vue-4.0.0/src/layout/AppTopbar.vue @@ -28,9 +28,9 @@
  • -
  • @@ -114,6 +114,11 @@ export default { togeulSamples(event) { let blnSamples = !this.store.state.samplePages; this.store.commit("setSamplePages", blnSamples); + }, + logout(event) { + router.push({ + path: "/logout", + }); } }, computed: { diff --git a/babylon-vue-4.0.0/src/router/index.js b/babylon-vue-4.0.0/src/router/index.js index 844acf2..f437f58 100644 --- a/babylon-vue-4.0.0/src/router/index.js +++ b/babylon-vue-4.0.0/src/router/index.js @@ -177,7 +177,11 @@ const routes = [ path: '/samples/menu/payment', component: () => import('@/views/samples/uikit/menu/PaymentDemo.vue'), meta: { - breadcrumb: [{ parent: 'UI Kit(Samples)', label: 'PaymentDemo' }], + breadcrumb: [ + { parent: 'UI Kit(Samples)1', label: 'UI Kit(Samples)2' }, + { label: 'UI Kit(Samples)3' }, + { label: 'PaymentDemo' } + ], }, }, { diff --git a/babylon-vue-4.0.0/src/service/AgGridService.js b/babylon-vue-4.0.0/src/service/AgGridService.js index cea408b..17a40ee 100644 --- a/babylon-vue-4.0.0/src/service/AgGridService.js +++ b/babylon-vue-4.0.0/src/service/AgGridService.js @@ -102,6 +102,22 @@ const agGridService = { }); return res; + }, + + /** + * 디폴트 셀 스타일 적용 + * @param {*} pGridApi + * @returns + */ + agGridDefaultCellStyle: (params) => { + console.log("agGridDefaultCellStyle"); + // 셀이 읽기 전용인 경우 배경색을 회색으로 변경 + if (params.node && params.node.rowPinned) { + return { background: "lightgray" }; + } else { + return null; + } } + } export default agGridService; \ No newline at end of file diff --git a/babylon-vue-4.0.0/src/service/MenuDataService.js b/babylon-vue-4.0.0/src/service/MenuDataService.js index ab6082c..c2c5d31 100644 --- a/babylon-vue-4.0.0/src/service/MenuDataService.js +++ b/babylon-vue-4.0.0/src/service/MenuDataService.js @@ -65,7 +65,7 @@ export const menuSamples = { label: 'File', icon: 'pi pi-fw pi-file', to: '/samples/file', authrity: 'CURD', ord: 14 }, { label: 'Chart', icon: 'pi pi-fw pi-chart-bar', to: '/samples/chart', authrity: 'CURD', ord: 15 }, { label: 'Misc', icon: 'pi pi-fw pi-circle-off', to: '/samples/misc', authrity: 'CURD', ord: 16 }, - { label: 'Misc', icon: 'pi pi-fw pi-circle-off', to: '/samples/menu/payment', authrity: 'CURD', ord: 16 }, + { label: 'menus', icon: 'pi pi-fw pi-circle-off', to: '/samples/menu/payment', authrity: 'CURD', ord: 16 }, ], }, { diff --git a/babylon-vue-4.0.0/src/views/common/Login.vue b/babylon-vue-4.0.0/src/views/common/Login.vue index 8e7fbda..e464d05 100644 --- a/babylon-vue-4.0.0/src/views/common/Login.vue +++ b/babylon-vue-4.0.0/src/views/common/Login.vue @@ -1,39 +1,26 @@