浏览代码

Tody up a little bit

Pitu 6 年之前
父节点
当前提交
a248f69947
共有 2 个文件被更改,包括 8 次插入25 次删除
  1. 7 23
      src/site/layouts/default.vue
  2. 1 2
      src/site/pages/faq.vue

+ 7 - 23
src/site/layouts/default.vue

@@ -14,38 +14,22 @@ export default {
 	},
 	created() {
 		Vue.prototype.$onPromiseError = (error, logout = false) => {
-			this.processCatch(error, logout);
+			if (error.response && error.response.data && error.response.data.message) {
+				this.showToast(error.response.data.message, true, 5000);
+			} else {
+				console.error(error);
+				this.showToast('Something went wrong, please check the console :(', true, 5000);
+			}
 		};
 
 		Vue.prototype.$showToast = (text, error, duration) => {
-			this.showToast(text, error, duration);
-		};
-	},
-	methods: {
-		showToast(text, error, duration) {
 			this.$toast.open({
 				duration: duration || 2500,
 				message: text,
 				position: 'is-bottom',
 				type: error ? 'is-danger' : 'is-success'
 			});
-		},
-		processCatch(error, logout) {
-			if (error.response && error.response.data && error.response.data.message) {
-				this.showToast(error.response.data.message, true, 5000);
-				/*
-				if (error.response.status === 429) return;
-				if (error.response.status === 502) return;
-				if (error.response.data.message === 'Token expired') {
-					this.$logOut();
-					setTimeout(() => this.$router.push('/'), 3000);
-				}
-				*/
-			} else {
-				console.error(error);
-				this.showToast('Something went wrong, please check the console :(', true, 5000);
-			}
-		}
+		};
 	}
 };
 </script>

+ 1 - 2
src/site/pages/faq.vue

@@ -5,10 +5,9 @@
 <template>
 	<section id="login"
 		class="hero is-fullheight">
-		<Navbar/>
+		<Navbar />
 		<div class="hero-body">
 			<div class="container has-text-left">
-
 				<h2 class="subtitle">What is lolisafe?</h2>
 				<article class="message">
 					<div class="message-body">