+
@@ -79,34 +78,24 @@ export default {
}
}
-.wrap {
+.station {
display: flex;
flex-wrap: wrap;
- width: 70%;
- margin: 0 auto;
+ width: 1072px;
min-height: calc(100vh - 520px);
- box-sizing: border-box;
-
+ padding: 30px 0;
+ margin: 0 auto;
.item {
- width: 16%;
- margin: 20px;
- text-align: center;
+ width: 256px;
+ height: 195px;
+ margin: 0 6px 4px;
cursor: pointer;
-
&:hover {
opacity: .9;
}
-
img {
- width: 100px;
- height: 100px;
- margin: 0 auto 6px;
- }
-
- .text {
- font-size: 14px;
- text-align: center;
- color: #333;
+ width: 100%;
+ height: 100%;
}
}
}
diff --git a/src/plugins/requests/index.js b/src/plugins/requests/index.js
index 98a109f..015d1a8 100644
--- a/src/plugins/requests/index.js
+++ b/src/plugins/requests/index.js
@@ -21,7 +21,7 @@ service.interceptors.request.use(config => {
util.errorMsg({
message: "退出登陆",
onClose: function() {
- router.push({ name: "/login" });
+ router.push({ name: "/index" });
}
});
return Promise.reject(err);
@@ -54,10 +54,7 @@ service.interceptors.response.use(
util.errorMsg("登录过期,请重新登录");
setTimeout(() => {
router.replace({
- path: "/login",
- query: {
- redirect: router.currentRoute.fullPath
- }
+ path: "/index"
});
}, 1000);
break;
@@ -77,10 +74,7 @@ service.interceptors.response.use(
// 跳转登录页面,并将要浏览的页面fullPath传过去,登录成功后跳转需要访问的页面
setTimeout(() => {
router.replace({
- path: "/login",
- query: {
- redirect: router.currentRoute.fullPath
- }
+ path: "/index"
});
}, 1000);
break;