하석형 하석형 06-19
250619 하석형 사용자페이지 내정보 조회 및 수정
@3756938aa18c7833260ec2ccaacf93edd67ebbac
 
client/views/pages/user/portal/myPage/myInfo/MyInfoInsert.vue (added)
+++ client/views/pages/user/portal/myPage/myInfo/MyInfoInsert.vue
@@ -0,0 +1,30 @@
+<template>
+    <div class="content pt50 pb50">
+        <div class="content w1200">
+            <div class="page-title point-font mb30">
+                <p>내 정보 관리</p>
+            </div>
+
+            <UserInfoInsert :pageId="pageId" />
+        </div>
+    </div>
+</template>
+
+<script>
+import pageAuthMixin from "../../../../../../views/common/pageAuthMixin.js";
+// COMPONENETS
+import UserInfoInsert from "../../../../../component/userInfo/UserInfoInsert.vue";
+
+export default {
+    mixins: [pageAuthMixin],
+    components: {
+        UserInfoInsert,
+    },
+    data() {
+        return {
+            pageId: this.$store.state.mbrId, // 페이지 아이디
+            // pageAuth: JSON.parse(localStorage.getItem("vuex")).pageAuth, // 페이지 권한
+        };
+    },
+};
+</script>(파일 끝에 줄바꿈 문자 없음)
 
client/views/pages/user/portal/myPage/myInfo/MyInfoView.vue (added)
+++ client/views/pages/user/portal/myPage/myInfo/MyInfoView.vue
@@ -0,0 +1,29 @@
+<template>
+    <div class="content pt50 pb50">
+        <div class=" w1400">
+            <div class="page-title point-font mb30">
+                <p>내 정보</p>
+            </div>
+
+            <UserInfoView :pageId="pageId" />
+        </div>
+    </div>
+</template>
+
+<script>
+import pageAuthMixin from "../../../../../../views/common/pageAuthMixin.js";
+// COMPONENETS
+import UserInfoView from "../../../../../component/userInfo/UserInfoView.vue";
+
+export default {
+    mixins: [pageAuthMixin],
+    components: {
+        UserInfoView,
+    },
+    data() {
+        return {
+            pageId: this.$store.state.mbrId, // 페이지 아이디
+        };
+    },
+};
+</script>(파일 끝에 줄바꿈 문자 없음)
Add a comment
List