Commit e39275c0 authored by 罗超's avatar 罗超

新增修改手续费

parent 0185e47a
...@@ -19,20 +19,26 @@ ...@@ -19,20 +19,26 @@
<script> <script>
var sUserAgent = navigator.userAgent; 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) { 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.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 { clearInterval } from "timers";
export default { export default {
name: 'App', name: "App",
components: { components: {
chosenOpenMode, chosenOpenMode,
mycareer mycareer
...@@ -41,167 +47,190 @@ export default { ...@@ -41,167 +47,190 @@ export default {
//注册禁止后退,并且不做卸载 //注册禁止后退,并且不做卸载
// history.go(-1) // history.go(-1)
// history.forward(-1) // history.forward(-1)
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) {}
} }
}
}, },
data () { data() {
return { return {
images:[], images: [],
imageOptions:{ imageOptions: {
navbar:false, navbar: false,
title:false title: false
}, },
dataShow:false, dataShow: false,
haveOpenMode:false, haveOpenMode: false,
settingSys: false, settingSys: false,
timer:null, timer: null,
useTime:0, useTime: 0,
showCareer:false, showCareer: false,
careerId:0, careerId: 0,
isRed:false isRed: false
// sessionStorage.getItem("mazip") ? sessionStorage.getItem("mazip") : true // sessionStorage.getItem("mazip") ? sessionStorage.getItem("mazip") : true
} };
}, },
methods: { methods: {
inited (viewer){ inited(viewer) {
this.$viewer = viewer this.$viewer = viewer;
}, },
closeCareer(){ closeCareer() {
this.showCareer=false this.showCareer = false;
}, },
show (data) { show(data) {
this.$set(this.images,data) this.$set(this.images, data);
this.$viewer.show() this.$viewer.show();
}, },
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
} };
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() };
}
}, },
timekeeper(){ timekeeper() {
if(!this.timer){ if (!this.timer) {
this.timer=window.setInterval(() => { this.timer = window.setInterval(() => {
this.useTime+=0.1 this.useTime += 0.1;
}, 1000*6); }, 1000 * 6);
} }
}, },
plaus() { plaus() {
if(this.timer){ if (this.timer) {
window.clearInterval(this.timer); window.clearInterval(this.timer);
this.timer=null this.timer = null;
} }
} }
}, },
mounted() { mounted() {
if (!this.getLocalStorage() && document.URL.indexOf("SupplierLogin")==-1&& document.URL.indexOf("clientConfirm")==-1&& document.URL.indexOf("TravelContractConfirm")==-1&& document.URL.indexOf("ViittoContractConfirm")==-1) { if (
!this.getLocalStorage() &&
document.URL.indexOf("SupplierLogin") == -1 &&
document.URL.indexOf("clientConfirm") == -1 &&
document.URL.indexOf("TravelContractConfirm") == -1 &&
document.URL.indexOf("ViittoContractConfirm") == -1
) {
this.$router.push({ this.$router.push({
path: '/login' path: "/login"
}) });
}else{ } else {
if(document.URL.indexOf("clientConfirm")!=-1||document.URL.indexOf("TravelContractConfirm")!=-1||document.URL.indexOf("ViittoContractConfirm")!=-1){ if (
localStorage.openMode=0 document.URL.indexOf("clientConfirm") != -1 ||
}else{ document.URL.indexOf("TravelContractConfirm") != -1 ||
document.URL.indexOf("ViittoContractConfirm") != -1
) {
localStorage.openMode = 0;
} else {
} }
this.timekeeper() this.timekeeper();
this.listeneruser() this.listeneruser();
} }
this.haveOpenMode=!localStorage.openMode this.haveOpenMode = !localStorage.openMode;
this.MsgBus.$on('imgpreviewoverflow',content=>{ this.MsgBus.$on("imgpreviewoverflow", content => {
this.show(content) this.show(content);
}) });
this.MsgBus.$on('imgpreviewshow',content=>{ this.MsgBus.$on("imgpreviewshow", content => {
this.$viewer.show() this.$viewer.show();
}) });
this.MsgBus.$on('imgpreviewshowindex',content=>{ this.MsgBus.$on("imgpreviewshowindex", content => {
this.$viewer.view(this.images.indexOf(content)) this.$viewer.view(this.images.indexOf(content));
this.$viewer.show() this.$viewer.show();
}) });
this.MsgBus.$on('settingOpen',content=>{ this.MsgBus.$on("settingOpen", content => {
this.haveOpenMode = true; this.haveOpenMode = true;
this.settingSys = true; this.settingSys = true;
}) });
this.MsgBus.$on('settingClose',content=>{ this.MsgBus.$on("settingClose", content => {
this.haveOpenMode = false; this.haveOpenMode = false;
this.settingSys = false; this.settingSys = false;
}) });
this.MsgBus.$on('imgprevpush',content=>{ this.MsgBus.$on("imgprevpush", content => {
let isExsit=false let isExsit = false;
this.images.forEach(x=>{ this.images.forEach(x => {
if(x==content) if (x == content) isExsit = true;
isExsit=true });
}) if (!isExsit) this.images.push(content);
if(!isExsit) });
this.images.push(content) this.MsgBus.$on("imgprevclear", content => {
}) this.images = [];
this.MsgBus.$on('imgprevclear',content=>{ });
this.images=[] this.MsgBus.$on("showCareer", empId => {
}) this.careerId = empId;
this.MsgBus.$on('showCareer',empId=>{ this.showCareer = true;
this.careerId=empId });
this.showCareer=true this.MsgBus.$on("hideCareer", content => {
}) this.careerId = 0;
this.MsgBus.$on('hideCareer',content=>{ this.showCareer = false;
this.careerId=0 });
this.showCareer=false this.MsgBus.$on("changeTheme", t => {
}) this.isRed = t == 1;
this.MsgBus.$on("changeTheme",t=>{ });
this.isRed=t==1; }
}) };
}
}
</script> </script>
<style> <style>
@import "//at.alicdn.com/t/font_635492_63x5920i6sn.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,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%;} html,
#app{height: 100%;} body {
#app>div{display: flex; flex-direction: column; height: 100%;} margin: 0;
.BMap_cpyCtrl {display: none;} padding: 0;
.anchorBL {display: none;} background: #f9f9f9 url(assets/img/img-bg.png) no-repeat bottom left/100% auto;
.viewer{display: none !important;} height: 100%;
.showMyCareer{ }
#app {
height: 100%;
}
#app > div {
display: flex;
flex-direction: column;
height: 100%;
}
.BMap_cpyCtrl {
display: none;
}
.anchorBL {
display: none;
}
.viewer {
display: none !important;
}
.showMyCareer {
position: absolute; position: absolute;
top: 0; top: 0;
bottom: 0; bottom: 0;
right: 0; right: 0;
left: 0; left: 0;
background: rgba(0,0,0,.3); background: rgba(0, 0, 0, 0.3);
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, Helvetica Neue, Arial, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji, MicrosoftJhengHeiBoldFix, "\5FAE\8EDF\6B63\9ED1\9AD4", Microsoft JhengHei; 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> </style>
...@@ -117,7 +117,7 @@ export default { ...@@ -117,7 +117,7 @@ export default {
let mallUrl = ""; //商城API let mallUrl = ""; //商城API
let lxymallUrl = '';//国内游api let lxymallUrl = '';//国内游api
let locationName = window.location.hostname; let locationName = window.location.hostname;
domainUrl="http://192.168.10.2:8083"; domainUrl ="http://192.168.10.36:8083";
let javaUrldo = ""; let javaUrldo = "";
javaUrldo = locationName.indexOf('oytour') !== -1 || locationName.indexOf('viitto') !== -1 ? (locationName.indexOf('oytour') !== -1 ? "http://efficient.oytour.com" : "http://47.96.12.235:9001") : "http://192.168.2.215:9000"; javaUrldo = locationName.indexOf('oytour') !== -1 || locationName.indexOf('viitto') !== -1 ? (locationName.indexOf('oytour') !== -1 ? "http://efficient.oytour.com" : "http://47.96.12.235:9001") : "http://192.168.2.215:9000";
//商城API //商城API
......
This diff is collapsed.
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