Commit 32d8e7c0 authored by youjie's avatar youjie

no message

parent 2350ee27
...@@ -434,7 +434,7 @@ export default { ...@@ -434,7 +434,7 @@ export default {
.productQuerybottomLayer { .productQuerybottomLayer {
overflow: auto; overflow: auto;
position: fixed; position: fixed;
max-height: 300px; /* max-height: 300px; */
z-index: 50; z-index: 50;
bottom: 0; bottom: 0;
left: 0; left: 0;
......
...@@ -473,7 +473,7 @@ export default { ...@@ -473,7 +473,7 @@ export default {
.productQuerybottomLayer { .productQuerybottomLayer {
overflow: auto; overflow: auto;
position: fixed; position: fixed;
max-height: 300px; /* max-height: 300px; */
z-index: 50; z-index: 50;
bottom: 0; bottom: 0;
left: 0; left: 0;
......
...@@ -317,7 +317,7 @@ ...@@ -317,7 +317,7 @@
.productQuerybottomLayer { .productQuerybottomLayer {
overflow: auto; overflow: auto;
position: fixed; position: fixed;
max-height: 300px; /* max-height: 300px; */
z-index: 50; z-index: 50;
bottom: 0; bottom: 0;
left: 0; left: 0;
......
...@@ -180,7 +180,7 @@ ...@@ -180,7 +180,7 @@
.productQuerybottomLayer { .productQuerybottomLayer {
overflow: auto; overflow: auto;
position: fixed; position: fixed;
max-height: 300px; /* max-height: 300px; */
z-index: 50; z-index: 50;
bottom: 0; bottom: 0;
left: 0; left: 0;
......
...@@ -174,7 +174,7 @@ ...@@ -174,7 +174,7 @@
.productQuerybottomLayer { .productQuerybottomLayer {
overflow: auto; overflow: auto;
position: fixed; position: fixed;
max-height: 300px; /* max-height: 300px; */
z-index: 50; z-index: 50;
bottom: 0; bottom: 0;
left: 0; left: 0;
...@@ -1103,7 +1103,8 @@ ...@@ -1103,7 +1103,8 @@
</el-form> </el-form>
</div> </div>
<!-- 其他类型的修改信息2 --> <!-- 其他类型的修改信息2 -->
<div class="productQuerybottomLayer ownScrollbarStyle" v-show="isShowLayer"> <div class="productQuerybottomLayer ownScrollbarStyle" v-show="isShowLayer"
:style="{ height: ScreenHeight }">
<p> <p>
修改 修改
<span class="fr"> <span class="fr">
...@@ -3198,6 +3199,9 @@ ...@@ -3198,6 +3199,9 @@
export default { export default {
data() { data() {
return { return {
timer: false,
fullHeight: document.documentElement.clientHeight,
ScreenHeight: 0,
S_UpdateOrderMoney: false, S_UpdateOrderMoney: false,
isShowTip: false, isShowTip: false,
TipObj: {}, TipObj: {},
...@@ -3581,6 +3585,21 @@ ...@@ -3581,6 +3585,21 @@
updateSalesMan: updateSalesMan, updateSalesMan: updateSalesMan,
}, },
watch: { watch: {
fullHeight(val) {
if (!this.timer) {
this.fullHeight = val;
this.timer = true;
let that = this;
setTimeout(function () {
that.timer = false;
}, 400);
}
if (this.fullHeight > 700) {
this.ScreenHeight = "600px";
} else {
this.ScreenHeight = "300px";
}
},
SQcheckdAll(val) { SQcheckdAll(val) {
this.checkdAll(val); this.checkdAll(val);
}, },
...@@ -5905,6 +5924,18 @@ ...@@ -5905,6 +5924,18 @@
}, },
}, },
mounted() { mounted() {
const that = this;
window.onresize = () => {
return (() => {
window.fullHeight = document.documentElement.clientHeight;
that.fullHeight = window.fullHeight;
})();
};
if (this.fullHeight > 700) {
this.ScreenHeight = "600px";
} else {
this.ScreenHeight = "300px";
}
this.qjGroupId = this.QjGroupId(); this.qjGroupId = this.QjGroupId();
this.GetLookOrderAuth(); this.GetLookOrderAuth();
this.GetSupperOrderEditAuth(); this.GetSupperOrderEditAuth();
......
...@@ -176,7 +176,7 @@ ...@@ -176,7 +176,7 @@
.productQuerybottomLayer { .productQuerybottomLayer {
overflow: auto; overflow: auto;
position: fixed; position: fixed;
max-height: 300px; /* max-height: 300px; */
z-index: 50; z-index: 50;
bottom: 0; bottom: 0;
left: 0; left: 0;
...@@ -997,7 +997,8 @@ ...@@ -997,7 +997,8 @@
</el-form> </el-form>
</div> </div>
<!-- 其他类型的修改信息2 --> <!-- 其他类型的修改信息2 -->
<div class="productQuerybottomLayer ownScrollbarStyle" v-if="isShowLayer"> <div class="productQuerybottomLayer ownScrollbarStyle" v-if="isShowLayer"
:style="{ height: ScreenHeight }">
<p>修改 <p>修改
<span class="fr"> <span class="fr">
<input type="button" class="hollowFixedBtn" value="取消" @click="cancelSubmit()" /> <input type="button" class="hollowFixedBtn" value="取消" @click="cancelSubmit()" />
...@@ -2319,6 +2320,9 @@ ...@@ -2319,6 +2320,9 @@
export default { export default {
data() { data() {
return { return {
timer: false,
fullHeight: document.documentElement.clientHeight,
ScreenHeight: 0,
IsSupperOrderEdit: false, //获取总经理副总经理超级修改权限 IsSupperOrderEdit: false, //获取总经理副总经理超级修改权限
IsLookOrder: false, //出纳查看订单权限 IsLookOrder: false, //出纳查看订单权限
//修改订单业务员权限 //修改订单业务员权限
...@@ -2780,6 +2784,23 @@ ...@@ -2780,6 +2784,23 @@
payurlItem1: payURL1, payurlItem1: payURL1,
tripDownLoadCommon: tripDownLoadCommon, tripDownLoadCommon: tripDownLoadCommon,
updateSalesMan: updateSalesMan updateSalesMan: updateSalesMan
},
watch: {
fullHeight(val) {
if (!this.timer) {
this.fullHeight = val;
this.timer = true;
let that = this;
setTimeout(function () {
that.timer = false;
}, 400);
}
if (this.fullHeight > 700) {
this.ScreenHeight = "600px";
} else {
this.ScreenHeight = "300px";
}
},
}, },
filters: { filters: {
priceFormat(value) { priceFormat(value) {
...@@ -4738,6 +4759,18 @@ ...@@ -4738,6 +4759,18 @@
}, },
}, },
mounted() { mounted() {
const that = this;
window.onresize = () => {
return (() => {
window.fullHeight = document.documentElement.clientHeight;
that.fullHeight = window.fullHeight;
})();
};
if (this.fullHeight > 700) {
this.ScreenHeight = "600px";
} else {
this.ScreenHeight = "300px";
}
this.GetLookOrderAuth(); this.GetLookOrderAuth();
this.GetSupperOrderEditAuth(); this.GetSupperOrderEditAuth();
this.GetEditOrderCreateByAuth(); this.GetEditOrderCreateByAuth();
......
...@@ -180,7 +180,7 @@ ...@@ -180,7 +180,7 @@
.productQuerybottomLayer { .productQuerybottomLayer {
overflow: auto; overflow: auto;
position: fixed; position: fixed;
max-height: 300px; /* max-height: 300px; */
z-index: 50; z-index: 50;
bottom: 0; bottom: 0;
left: 0; left: 0;
...@@ -769,7 +769,8 @@ ...@@ -769,7 +769,8 @@
<template> <template>
<div class="flexOne groupts" style="min-width: 1200px;"> <div class="flexOne groupts" style="min-width: 1200px;">
<!-- 修改信息 --> <!-- 修改信息 -->
<div class="productQuerybottomLayer ownScrollbarStyle" v-if="isShowLayer"> <div class="productQuerybottomLayer ownScrollbarStyle" v-if="isShowLayer"
:style="{ height: ScreenHeight }">
<p>{{$t('pub.updateMsg')}} <p>{{$t('pub.updateMsg')}}
<span class="fr"> <span class="fr">
<input type="button" class="hollowFixedBtn" :value="$t('pub.cancelBtn')" @click="cancelSubmit()" /> <input type="button" class="hollowFixedBtn" :value="$t('pub.cancelBtn')" @click="cancelSubmit()" />
...@@ -1863,6 +1864,9 @@ ...@@ -1863,6 +1864,9 @@
export default { export default {
data() { data() {
return { return {
timer: false,
fullHeight: document.documentElement.clientHeight,
ScreenHeight: 0,
// 修改应收总额 // 修改应收总额
Ysze: false, Ysze: false,
addMsg_form: {}, addMsg_form: {},
...@@ -2235,6 +2239,23 @@ ...@@ -2235,6 +2239,23 @@
tripDownLoadCommon: tripDownLoadCommon, tripDownLoadCommon: tripDownLoadCommon,
updateSalesMan: updateSalesMan, updateSalesMan: updateSalesMan,
commissionDialog commissionDialog
},
watch: {
fullHeight(val) {
if (!this.timer) {
this.fullHeight = val;
this.timer = true;
let that = this;
setTimeout(function () {
that.timer = false;
}, 400);
}
if (this.fullHeight > 700) {
this.ScreenHeight = "600px";
} else {
this.ScreenHeight = "300px";
}
},
}, },
filters: { filters: {
priceFormat(value) { priceFormat(value) {
...@@ -4073,6 +4094,18 @@ ...@@ -4073,6 +4094,18 @@
}, },
}, },
mounted() { mounted() {
const that = this;
window.onresize = () => {
return (() => {
window.fullHeight = document.documentElement.clientHeight;
that.fullHeight = window.fullHeight;
})();
};
if (this.fullHeight > 700) {
this.ScreenHeight = "600px";
} else {
this.ScreenHeight = "300px";
}
this.GetEditOrderCreateByAuth(); this.GetEditOrderCreateByAuth();
let userInfo = this.getLocalStorage(); let userInfo = this.getLocalStorage();
let userMenuCode = ',' + userInfo.ActionMenuCode + ','; let userMenuCode = ',' + userInfo.ActionMenuCode + ',';
......
...@@ -146,7 +146,7 @@ ...@@ -146,7 +146,7 @@
.productQuerybottomLayer { .productQuerybottomLayer {
overflow: auto; overflow: auto;
position: fixed; position: fixed;
max-height: 300px; /* max-height: 300px; */
z-index: 50; z-index: 50;
bottom: 0; bottom: 0;
left: 0; left: 0;
...@@ -508,7 +508,8 @@ ...@@ -508,7 +508,8 @@
<template> <template>
<div class="flexOne" style="min-width: 1200px;"> <div class="flexOne" style="min-width: 1200px;">
<!-- 修改信息 --> <!-- 修改信息 -->
<div class="planeTicketEdit ownScrollbarStyle" v-show="isShowLayer" > <div class="planeTicketEdit ownScrollbarStyle" v-show="isShowLayer"
:style="{ height: ScreenHeight }">
<p>{{$t('pub.updateMsg')}} <p>{{$t('pub.updateMsg')}}
<span class="fr"> <span class="fr">
<input type="button" class="hollowFixedBtn" :value="$t('pub.cancelBtn')" @click="cancelSubmit()"/> <input type="button" class="hollowFixedBtn" :value="$t('pub.cancelBtn')" @click="cancelSubmit()"/>
...@@ -1401,6 +1402,9 @@ import payURL1 from "../commonPage/payURL1.vue"; ...@@ -1401,6 +1402,9 @@ import payURL1 from "../commonPage/payURL1.vue";
export default { export default {
data() { data() {
return { return {
timer: false,
fullHeight: document.documentElement.clientHeight,
ScreenHeight: 0,
userInfo:{}, userInfo:{},
qjGroupId:-1, qjGroupId:-1,
F_Finance_Create:false,//制单 F_Finance_Create:false,//制单
...@@ -1618,6 +1622,23 @@ export default { ...@@ -1618,6 +1622,23 @@ export default {
payurlItem: payURL, payurlItem: payURL,
payurlItem1: payURL1 payurlItem1: payURL1
}, },
watch: {
fullHeight(val) {
if (!this.timer) {
this.fullHeight = val;
this.timer = true;
let that = this;
setTimeout(function () {
that.timer = false;
}, 400);
}
if (this.fullHeight > 700) {
this.ScreenHeight = "600px";
} else {
this.ScreenHeight = "300px";
}
},
},
filters: { filters: {
priceFormat(value) { priceFormat(value) {
let nStr = value.toFixed(2); let nStr = value.toFixed(2);
...@@ -2598,6 +2619,18 @@ export default { ...@@ -2598,6 +2619,18 @@ export default {
} }
}, },
mounted() { mounted() {
const that = this;
window.onresize = () => {
return (() => {
window.fullHeight = document.documentElement.clientHeight;
that.fullHeight = window.fullHeight;
})();
};
if (this.fullHeight > 700) {
this.ScreenHeight = "600px";
} else {
this.ScreenHeight = "300px";
}
this.qjGroupId=this.QjGroupId(); this.qjGroupId=this.QjGroupId();
this.userInfo=this.getLocalStorage(); this.userInfo=this.getLocalStorage();
this.userId = this.getLocalStorage().EmployeeId; this.userId = this.getLocalStorage().EmployeeId;
......
...@@ -88,7 +88,7 @@ ...@@ -88,7 +88,7 @@
.productQuerybottomLayer { .productQuerybottomLayer {
overflow: auto; overflow: auto;
position: fixed; position: fixed;
max-height: 300px; /* max-height: 300px; */
z-index: 50; z-index: 50;
bottom: 0; bottom: 0;
left: 0; left: 0;
......
...@@ -400,7 +400,7 @@ ...@@ -400,7 +400,7 @@
.productQuerybottomLayer { .productQuerybottomLayer {
overflow: auto; overflow: auto;
position: fixed; position: fixed;
max-height: 300px; /* max-height: 300px; */
z-index: 50; z-index: 50;
bottom: 0; bottom: 0;
left: 0; left: 0;
...@@ -545,7 +545,8 @@ ...@@ -545,7 +545,8 @@
</style> </style>
<template> <template>
<div class="flexOne"> <div class="flexOne">
<div class="productQuerybottomLayer ownScrollbarStyle" v-show="isShowLayer"> <div class="productQuerybottomLayer ownScrollbarStyle" v-show="isShowLayer"
:style="{ height: ScreenHeight }">
<p> <p>
{{ $t("salesModule.SignImdi") }} {{ $t("salesModule.SignImdi") }}
<span v-if="crmOrderObj"> <span v-if="crmOrderObj">
...@@ -2659,6 +2660,9 @@ import commonHotelInfo from "../commonPage/commonHotelInfo.vue"; ...@@ -2659,6 +2660,9 @@ import commonHotelInfo from "../commonPage/commonHotelInfo.vue";
export default { export default {
data() { data() {
return { return {
timer: false,
fullHeight: document.documentElement.clientHeight,
ScreenHeight: 0,
pickerOptions0: { pickerOptions0: {
disabledDate: (time) => { disabledDate: (time) => {
let starTime = new Date(this.starTime); let starTime = new Date(this.starTime);
...@@ -2913,6 +2917,23 @@ export default { ...@@ -2913,6 +2917,23 @@ export default {
carousel: carousel, carousel: carousel,
commonHotelInfo: commonHotelInfo, commonHotelInfo: commonHotelInfo,
}, },
watch: {
fullHeight(val) {
if (!this.timer) {
this.fullHeight = val;
this.timer = true;
let that = this;
setTimeout(function () {
that.timer = false;
}, 400);
}
if (this.fullHeight > 700) {
this.ScreenHeight = "600px";
} else {
this.ScreenHeight = "300px";
}
},
},
filters: { filters: {
priceFormat(value) { priceFormat(value) {
if (value == null) { if (value == null) {
...@@ -4609,6 +4630,18 @@ export default { ...@@ -4609,6 +4630,18 @@ export default {
}, },
}, },
mounted() { mounted() {
const that = this;
window.onresize = () => {
return (() => {
window.fullHeight = document.documentElement.clientHeight;
that.fullHeight = window.fullHeight;
})();
};
if (this.fullHeight > 700) {
this.ScreenHeight = "600px";
} else {
this.ScreenHeight = "300px";
}
// crm自动登陆传过来的参数 // crm自动登陆传过来的参数
if (this.$route.query.crmOrderObj) { if (this.$route.query.crmOrderObj) {
this.crmOrderObj = JSON.parse(this.$route.query.crmOrderObj); this.crmOrderObj = JSON.parse(this.$route.query.crmOrderObj);
......
...@@ -88,7 +88,7 @@ ...@@ -88,7 +88,7 @@
.productQuerybottomLayer { .productQuerybottomLayer {
overflow: auto; overflow: auto;
position: fixed; position: fixed;
max-height: 300px; /* max-height: 300px; */
z-index: 50; z-index: 50;
bottom: 0; bottom: 0;
left: 0; left: 0;
......
...@@ -88,7 +88,7 @@ ...@@ -88,7 +88,7 @@
.productQuerybottomLayer { .productQuerybottomLayer {
overflow: auto; overflow: auto;
position: fixed; position: fixed;
max-height: 300px; /* max-height: 300px; */
z-index: 50; z-index: 50;
bottom: 0; bottom: 0;
left: 0; left: 0;
......
...@@ -176,7 +176,7 @@ ...@@ -176,7 +176,7 @@
.productQuerybottomLayer { .productQuerybottomLayer {
overflow: auto; overflow: auto;
position: absolute; position: absolute;
max-height: 300px; /* max-height: 300px; */
z-index: 50; z-index: 50;
bottom: 0; bottom: 0;
left: 0; left: 0;
......
...@@ -549,7 +549,7 @@ export default { ...@@ -549,7 +549,7 @@ export default {
.productQuerybottomLayer { .productQuerybottomLayer {
overflow: auto; overflow: auto;
position: fixed; position: fixed;
max-height: 300px; /* max-height: 300px; */
z-index: 50; z-index: 50;
bottom: 0; bottom: 0;
left: 0; left: 0;
......
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