diff --git a/odcs2.com/src/App.vue b/odcs2.com/src/App.vue
index 67ac99c..c884371 100644
--- a/odcs2.com/src/App.vue
+++ b/odcs2.com/src/App.vue
@@ -1,7 +1,7 @@
-
+
@@ -12,7 +12,7 @@
-
+
@@ -77,8 +77,8 @@ export default {
window.history.back();
}
}
- let aa = document.getElementById("headerTop").offsetHeight;
- let bb = document.getElementById("bottomUser").offsetHeight;
+ let aa = document.getElementById("headerTop") ? document.getElementById("headerTop").offsetHeight : 0;
+ let bb = document.getElementById("bottomUser") ? document.getElementById("bottomUser").offsetHeight : 0;
this.he = aa + bb;
this.getToken();
@@ -215,9 +215,8 @@ export default {
.appview {
overflow-y: scroll;
position: relative;
- height: calc(100vh - 8rem);
- padding-bottom: 4rem !important;
- // padding-bottom: 200px;
+ height: 100vh;
+ padding-bottom: 0 !important;
}
@media (max-width: 550px) {
.appview {
diff --git a/odcs2.com/src/components/headerTop.vue b/odcs2.com/src/components/headerTop.vue
index ccaad62..1f9ead7 100644
--- a/odcs2.com/src/components/headerTop.vue
+++ b/odcs2.com/src/components/headerTop.vue
@@ -73,7 +73,7 @@
-->
-
+
diff --git a/odcs2.com/src/router/index.js b/odcs2.com/src/router/index.js
index 7cd16d7..5143a0e 100644
--- a/odcs2.com/src/router/index.js
+++ b/odcs2.com/src/router/index.js
@@ -149,6 +149,7 @@ const routes = [
path: "/rolldetial",
name: "rolldetial",
component: () => import("../views/rollHome/common/rolldetial.vue"),
+ meta: { hideHeader: true },
},
{
path: "/index2",
diff --git a/odcs2.com/src/views/Home/common/login.vue b/odcs2.com/src/views/Home/common/login.vue
index 2cfb955..560dd3c 100644
--- a/odcs2.com/src/views/Home/common/login.vue
+++ b/odcs2.com/src/views/Home/common/login.vue
@@ -13,10 +13,10 @@