Commit db2b568f authored by 黄奎's avatar 黄奎

页面修改

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