|
|
@@ -48,6 +48,8 @@ |
|
|
|
|
|
|
|
<script> |
|
|
|
import navFooter from "@/components/common/nav_footer"; |
|
|
|
import Cookies from "js-cookie"; |
|
|
|
|
|
|
|
export default { |
|
|
|
name: "App", |
|
|
|
components: { navFooter }, |
|
|
@@ -65,7 +67,7 @@ export default { |
|
|
|
let toName = to.name; |
|
|
|
// 判断当前页面的路由 |
|
|
|
if (toName&&toName.indexOf('CJ')>-1) { |
|
|
|
this.isCq = true; |
|
|
|
this.isCq = Cookies.get('isCq')?Cookies.get('isCq'):false; |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
@@ -77,16 +79,18 @@ export default { |
|
|
|
|
|
|
|
:root{ |
|
|
|
--transform: scale(1.15); |
|
|
|
--fontSize: 0.35rem; |
|
|
|
--fontSize: 2.2vh; |
|
|
|
/*--color:#e8041f;*/ |
|
|
|
} |
|
|
|
.nsgk-global-main { |
|
|
|
min-height: 100vh; |
|
|
|
padding-bottom: 110px; |
|
|
|
} |
|
|
|
p,span,.van-cell__title,.van-col{ |
|
|
|
/*transform: var(--transform)!important;*/ |
|
|
|
font-size: var(--fontSize)!important; |
|
|
|
.isCq{ |
|
|
|
p,span,.van-cell__title,.van-col{ |
|
|
|
/*transform: var(--transform)!important;*/ |
|
|
|
font-size: var(--fontSize)!important; |
|
|
|
} |
|
|
|
} |
|
|
|
// .fade-last-enter-active { |
|
|
|
// animation: bounce-in 0.6s; |
|
|
|