리스크관리 / 발송통계 추가

This commit is contained in:
kimre
2022-06-29 17:52:26 +09:00
parent 056ccf20e1
commit 0a2e30b1c2
32 changed files with 2864 additions and 992 deletions

View File

@@ -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>

View File

@@ -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;
}
},
}
};