mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-07 06:54:16 +09:00
리스크관리 / 발송통계 추가
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
|
||||
<article id="content" class="content error_page">
|
||||
<article id="content" class="content error_page">
|
||||
<div class="error_wrap center">
|
||||
<div class="title_area rcs_icon icon_error404">
|
||||
<h2 class="h2_title">죄송합니다.<br>요청하신 페이지를 찾을 수 없습니다. (404 Error)</h2><span class="h2_desc mar_t20">존재하지 않는 주소를 입력하셨거나 기술적인 문제로 일시적으로 접속되지 않았습니다.<br>잠시 후 다시 이용 부탁드리며 이용에 불편을 드려 사과드립니다.</span>
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
<div class="wrap" v-bind:class="{'main_wrap': (isLogin && isAuthChk), 'login-wrap': (!isLogin && !isAuthChk), 'bg-wrap': (isLogin && !isAuthChk) }" >
|
||||
<hub-web-header v-if="isAuthChk == true"></hub-web-header>
|
||||
<nav-bar v-if="isAuthChk == true"></nav-bar>
|
||||
<router-view :key="$route.fullPath"></router-view>
|
||||
<hub-web-footer v-if="isAuthChk == false"></hub-web-footer>
|
||||
<router-view :key="$route.fullPath"></router-view>
|
||||
<hub-web-footer v-if="isAuthChk == false"></hub-web-footer>
|
||||
</div>
|
||||
</body>
|
||||
</template>
|
||||
@@ -29,7 +29,7 @@ export default {
|
||||
NavBar,
|
||||
// vuejsDatepicker,
|
||||
HubWebHeader,
|
||||
HubWebFooter,
|
||||
HubWebFooter,
|
||||
},
|
||||
data(){
|
||||
return{
|
||||
@@ -38,12 +38,12 @@ export default {
|
||||
isAuthChk: false,
|
||||
}
|
||||
},
|
||||
created() {
|
||||
created() {
|
||||
this.getLogin;
|
||||
this.getAuthChk;
|
||||
},
|
||||
mounted() {
|
||||
|
||||
|
||||
}
|
||||
,computed: {
|
||||
...mapGetters({
|
||||
@@ -55,10 +55,10 @@ export default {
|
||||
watch: {
|
||||
getLogin(data) {
|
||||
if (data != null && data != '' && data == true) {
|
||||
this.isLogin = true;
|
||||
this.isLogin = true;
|
||||
} else {
|
||||
this.isLogin = false;
|
||||
}
|
||||
this.isLogin = false;
|
||||
}
|
||||
},
|
||||
getErrorPage(data) {
|
||||
if (data != null && data != '' && data == true) {
|
||||
@@ -67,12 +67,12 @@ export default {
|
||||
this.isErrPage = false;
|
||||
}
|
||||
},
|
||||
getAuthChk(data) {
|
||||
getAuthChk(data) {
|
||||
if (data != null && data != '' && data == true) {
|
||||
this.isAuthChk = true;
|
||||
this.isAuthChk = true;
|
||||
} else {
|
||||
this.isAuthChk = false;
|
||||
}
|
||||
this.isAuthChk = false;
|
||||
}
|
||||
},
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user