
--- client/views/pages/App.vue
+++ client/views/pages/App.vue
... | ... | @@ -4,7 +4,7 @@ |
4 | 4 |
<AdminMenu /> |
5 | 5 |
<main class="main-wrap"> |
6 | 6 |
<div :class="{'content-wrap': true, 'main': this.$route.path === this.$filters.ctxPath('/adm/main.page')}"> |
7 |
- <MenuSatisfaction/> <!-- 내용 확인용 --> |
|
7 |
+ <MenuSatisfaction v-if="!$route.path.includes('/insert.page')"/> <!-- 내용 확인용 --> |
|
8 | 8 |
<router-view /> |
9 | 9 |
<!-- <MenuSatisfaction/> --> <!-- 진짜 위치 --> |
10 | 10 |
</div> |
... | ... | @@ -15,7 +15,7 @@ |
15 | 15 |
<main class="main-wrap"> |
16 | 16 |
<Breadcrumb v-if="$route.path !== this.$filters.ctxPath('/adm/main.page') && $route.path !== this.$filters.ctxPath('/main.page')" /> |
17 | 17 |
<router-view /> |
18 |
- <MenuSatisfaction/> |
|
18 |
+ <MenuSatisfaction v-if="!$route.path.includes('/insert.page')"/> |
|
19 | 19 |
</main> |
20 | 20 |
</div> |
21 | 21 |
</template> |
... | ... | @@ -25,7 +25,7 @@ |
25 | 25 |
import AdminHeader from "../layout/AdminHeader.vue"; |
26 | 26 |
import AdminMenu from "../layout/AdminMenu.vue"; |
27 | 27 |
import Breadcrumb from "../component/Breadcrumb/Breadcrumb.vue"; |
28 |
-import MenuSatisfaction from "../layout/menuSatisfaction.vue"; |
|
28 |
+import MenuSatisfaction from "../layout/MenuSatisfaction.vue"; |
|
29 | 29 |
const App = { |
30 | 30 |
data: () => { |
31 | 31 |
return { |
--- client/views/pages/AppStore.js
+++ client/views/pages/AppStore.js
... | ... | @@ -4,7 +4,7 @@ |
4 | 4 |
|
5 | 5 |
export default createStore({ |
6 | 6 |
plugins: [createPersistedState({ |
7 |
- paths: ['loginMode', 'authorization', 'mbrId', 'mbrNm', 'roles', 'contextPath', 'pageAuth'] |
|
7 |
+ paths: ['loginMode', 'authorization', 'mbrId', 'mbrNm', 'roles', 'contextPath', 'pageAuth', 'menu'] |
|
8 | 8 |
})], |
9 | 9 |
state: { |
10 | 10 |
authorization: null, |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?