hmkim 04-03
25030403 김혜민 BreadCrumb 홈 추가
@17d1670909abc4eaec0acd37b0ee4b0ff36346b4
client/views/component/Breadcrumb/Breadcrumb.vue
--- client/views/component/Breadcrumb/Breadcrumb.vue
+++ client/views/component/Breadcrumb/Breadcrumb.vue
@@ -1,6 +1,7 @@
 <template>
   <div v-if="breadcrumbList.length > 0">
-   <span v-for="(crumb, index) in breadcrumbList" :key="index">
+    <span><router-link :to="{path : '/adm/main.page'}">홈</router-link> &gt; </span>
+    <span v-for="(crumb, index) in breadcrumbList" :key="index">
       {{ crumb.menuNm }}
       <span v-if="index < breadcrumbList.length - 1"> &gt; </span>
     </span>
client/views/pages/adm/system/LoginPolicy/LoginPolicy.vue
--- client/views/pages/adm/system/LoginPolicy/LoginPolicy.vue
+++ client/views/pages/adm/system/LoginPolicy/LoginPolicy.vue
@@ -41,9 +41,9 @@
                     <label for="loginModeS">SESSION 방식</label>
                   </div>
                 </div>
-                <span class="ml10 gray">
+                <!-- <span class="ml10 gray">
                   현재 로그인 방식은 <strong>{{ loginModeLabel }}</strong> 입니다.
-                </span>
+                </span> -->
               </div>
             </div>
             <div>
@@ -68,7 +68,7 @@
 </template>
 
 <script>
-import { findAllByLoginPolicy, saveByLoginPolicy, findAllByLoginMode, saveByLoginMode } from '../../../../../resources/api/loginPolicy';
+import { findAllByLoginPolicy, saveByLoginPolicy, findAllByLoginMode, saveByLoginMode } from '../../../../../resources/api/loginPolicy.js';
 import { getCntxtPth, saveCntxtPth } from '../../../../../resources/api/cntxtPth';
 import { cacheReSet } from "../../../../../resources/api/cacheReSet";
 import store from "../../../../../views/pages/AppStore";
@@ -91,9 +91,9 @@
   mounted() {
   },
   computed: {
-    loginModeLabel() {
-      return this.lgnMode === 'J' ? 'JWT' : 'SESSION';
-    }
+    // loginModeLabel() {
+    //   return this.lgnMode === 'J' ? 'JWT' : 'SESSION';
+    // }
   },
   methods: {
     async findAll() {
Add a comment
List