mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-07 09:34:38 +09:00
수정건 수정
This commit is contained in:
@@ -1,23 +1,17 @@
|
||||
<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>
|
||||
|
||||
<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="#" @click="backGo()">이전 페이지로</a><a href="#" @click="goMain()">메인으로</a>
|
||||
</p>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
@@ -38,8 +32,15 @@
|
||||
this.$store.commit("login/isErrorPage", false);
|
||||
},
|
||||
methods: {
|
||||
// 이전 페이지
|
||||
backGo() {
|
||||
this.$store.commit("login/isErrorPage", false);
|
||||
this.$router.go(-1);
|
||||
},
|
||||
// 메인 페이지
|
||||
goMain(){
|
||||
this.$store.commit("login/isErrorPage", false);
|
||||
this.$router.push({ path: '/' });
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user