mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-06 20:24:30 +09:00
46 lines
1.0 KiB
Vue
46 lines
1.0 KiB
Vue
<template>
|
|
|
|
<article id="content" class="content error_page">
|
|
<div class="error-wrap">
|
|
<div class="error-body">
|
|
<img src="@/assets/images/error_message_system.png">
|
|
|
|
<p class="header">시스템 오류</p>
|
|
<span class="message">이용에 불편을 드려 죄송합니다.<br>
|
|
일시적인 오류가 발생하였습니다. <br>
|
|
잠시 후 이용하여 주시기 바랍니다.
|
|
</span>
|
|
|
|
<p class="error-btns">
|
|
<a href="#">이전 페이지로</a><a href="#">메인으로</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</article>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
data: function() {
|
|
return {
|
|
|
|
};
|
|
},
|
|
created() {
|
|
this.$store.commit("login/isErrorPage", true);
|
|
},
|
|
mounted() {
|
|
|
|
},
|
|
destroyed() {
|
|
this.$store.commit("login/isErrorPage", false);
|
|
},
|
|
methods: {
|
|
backGo() {
|
|
this.$router.go(-1);
|
|
}
|
|
}
|
|
};
|
|
</script> |