Commit 32d8e7c0 authored by youjie's avatar youjie

no message

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