Commit db2b568f authored by 黄奎's avatar 黄奎

页面修改

parent 1e6af53a
<template> <template>
<div id="app" :class="{'red-theme':isRed}"> <div id="app" :class="{'red-theme':isRed}">
<keep-alive> <keep-alive>
<router-view v-if="$route.meta.keepAlive"/> <router-view v-if="$route.meta.keepAlive" />
</keep-alive> </keep-alive>
<router-view v-if="!$route.meta.keepAlive"/> <router-view v-if="!$route.meta.keepAlive" />
<viewer :images="images" :options='imageOptions' @inited="inited" class="viewer" ref="viewer"> <viewer :images="images" :options='imageOptions' @inited="inited" class="viewer" ref="viewer">
<img v-for="src in images" :src="src" :key="src"> <img v-for="src in images" :src="src" :key="src">
</viewer> </viewer>
...@@ -18,26 +17,28 @@ ...@@ -18,26 +17,28 @@
<script> <script>
var sUserAgent = navigator.userAgent; var sUserAgent = navigator.userAgent;
if ( if (
sUserAgent.indexOf("Android") > -1 || sUserAgent.indexOf("Android") > -1 ||
sUserAgent.indexOf("iPhone") > -1 || sUserAgent.indexOf("iPhone") > -1 ||
sUserAgent.indexOf("iPad") > -1 || sUserAgent.indexOf("iPad") > -1 ||
sUserAgent.indexOf("iPod") > -1 || sUserAgent.indexOf("iPod") > -1 ||
sUserAgent.indexOf("Symbian") > -1 sUserAgent.indexOf("Symbian") > -1
) { ) {
// document.body.style.minWidth = '100%' // document.body.style.minWidth = '100%'
// document.body.style.maxWidth = '100%' // document.body.style.maxWidth = '100%'
// document.body.style.overflow = 'hidden' // document.body.style.overflow = 'hidden'
// document.html.style.minWidth = '100%' // document.html.style.minWidth = '100%'
} else { } else {
document.body.style.minWidth = "1366px"; document.body.style.minWidth = "1366px";
// document.html.style.minWidth = '1366px' // document.html.style.minWidth = '1366px'
} }
import chosenOpenMode from "./components/commonPage/chosenOpenMode"; import chosenOpenMode from "./components/commonPage/chosenOpenMode";
import mycareer from "./components/champion/mycareer"; import mycareer from "./components/champion/mycareer";
import { clearInterval } from "timers"; import {
export default { clearInterval
} from "timers";
export default {
name: "App", name: "App",
components: { components: {
chosenOpenMode, chosenOpenMode,
...@@ -50,7 +51,7 @@ export default { ...@@ -50,7 +51,7 @@ export default {
if (localStorage.openMode && localStorage.openMode == 1) { if (localStorage.openMode && localStorage.openMode == 1) {
try { try {
history.pushState(null, null, document.URL); history.pushState(null, null, document.URL);
window.addEventListener("popstate", function() { window.addEventListener("popstate", function () {
history.pushState(null, null, document.URL); history.pushState(null, null, document.URL);
}); });
} catch (err) {} } catch (err) {}
...@@ -87,21 +88,23 @@ export default { ...@@ -87,21 +88,23 @@ export default {
}, },
listeneruser() { listeneruser() {
let that = this; let that = this;
window.onblur = function() { window.onblur = function () {
that.plaus(); that.plaus();
if (that.useTime) { if (that.useTime) {
let params = { let params = {
CreateBy: that.getLocalStorage().EmployeeId, CreateBy: that.getLocalStorage().EmployeeId,
UsedTime: that.useTime UsedTime: that.useTime
}; };
if (params.CreateBy && params.CreateBy > 0) {
that.apipost("user_set_user_usederplog", params, r => { that.apipost("user_set_user_usederplog", params, r => {
if (r.data.resultCode == 1) { if (r.data.resultCode == 1) {
that.UsedTime = 0; that.UsedTime = 0;
} }
}); });
} }
}
}; };
window.onfocus = function() { window.onfocus = function () {
that.timekeeper(); that.timekeeper();
}; };
}, },
...@@ -137,8 +140,7 @@ export default { ...@@ -137,8 +140,7 @@ export default {
document.URL.indexOf("ViittoContractConfirm") != -1 document.URL.indexOf("ViittoContractConfirm") != -1
) { ) {
localStorage.openMode = 0; localStorage.openMode = 0;
} else { } else {}
}
this.timekeeper(); this.timekeeper();
this.listeneruser(); this.listeneruser();
} }
...@@ -184,39 +186,46 @@ export default { ...@@ -184,39 +186,46 @@ export default {
this.isRed = t == 1; this.isRed = t == 1;
}); });
} }
}; };
</script> </script>
<style> <style>
@import "//at.alicdn.com/t/font_635492_wcd7pw1105.css"; @import "//at.alicdn.com/t/font_635492_wcd7pw1105.css";
@import "./assets/css/Semibold.css"; @import "./assets/css/Semibold.css";
@import "./assets/css/global/config.css"; @import "./assets/css/global/config.css";
@import "./assets/css/fileIcon.css"; @import "./assets/css/fileIcon.css";
/* html,body{height: 100%; min-width: 1366px; } */
html, /* html,body{height: 100%; min-width: 1366px; } */
body { html,
body {
margin: 0; margin: 0;
padding: 0; padding: 0;
background: #f9f9f9 url(assets/img/img-bg.png) no-repeat bottom left/100% auto; background: #f9f9f9 url(assets/img/img-bg.png) no-repeat bottom left/100% auto;
height: 100%; height: 100%;
} }
#app {
#app {
height: 100%; height: 100%;
} }
#app > div {
#app>div {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
height: 100%; height: 100%;
} }
.BMap_cpyCtrl {
.BMap_cpyCtrl {
display: none; display: none;
} }
.anchorBL {
.anchorBL {
display: none; display: none;
} }
.viewer {
.viewer {
display: none !important; display: none !important;
} }
.showMyCareer {
.showMyCareer {
position: absolute; position: absolute;
top: 0; top: 0;
bottom: 0; bottom: 0;
...@@ -226,11 +235,12 @@ body { ...@@ -226,11 +235,12 @@ body {
align-items: center; align-items: center;
justify-content: center; justify-content: center;
z-index: 999999999999999; z-index: 999999999999999;
} }
.red-theme {
.red-theme {
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
Helvetica Neue, Arial, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Helvetica Neue, Arial, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol,
Noto Color Emoji, MicrosoftJhengHeiBoldFix, "\5FAE\8EDF\6B63\9ED1\9AD4", Noto Color Emoji, MicrosoftJhengHeiBoldFix, "\5FAE\8EDF\6B63\9ED1\9AD4",
Microsoft JhengHei; Microsoft JhengHei;
} }
</style> </style>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment