Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
罗超
SuperMan
Commits
2f149ca3
Commit
2f149ca3
authored
May 08, 2023
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
5a123c67
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
103 additions
and
7 deletions
+103
-7
RegistrationList.vue
src/components/TravelManager/TravelList/RegistrationList.vue
+39
-3
order-form.vue
src/components/orderCommon/order-form.vue
+32
-2
order-form2.vue
src/components/orderCommon/order-form2.vue
+32
-2
No files found.
src/components/TravelManager/TravelList/RegistrationList.vue
View file @
2f149ca3
...
...
@@ -178,7 +178,7 @@
.productQuerybottomLayer
{
overflow
:
auto
;
position
:
fixed
;
max-height
:
300px
;
/* max-height: 300px; */
z-index
:
50
;
bottom
:
0
;
left
:
50px
;
...
...
@@ -1258,7 +1258,9 @@
</el-form>
</div>
<div
class=
"productQuerybottomLayer ownScrollbarStyle"
v-show=
"isShowLayer"
>
<div
class=
"productQuerybottomLayer ownScrollbarStyle"
:style=
"
{'height':ScreenHeight}"
v-show="isShowLayer">
<p>
{{
$t
(
"pub.updateMsg"
)
}}
<span
class=
"fr"
style=
"margin-right: 60px"
>
...
...
@@ -1742,7 +1744,9 @@
</el-row>
</el-form>
</div>
<div
class=
"productQuerybottomLayer ownScrollbarStyle"
v-show=
"isShowLayerRemarks"
<div
class=
"productQuerybottomLayer ownScrollbarStyle"
:style=
"{'height':ScreenHeight}"
v-show=
"isShowLayerRemarks"
style=
"height: 150px; min-height: 150px"
>
<p>
{{ $t("salesModule.UpRemarks") }}
...
...
@@ -3899,6 +3903,9 @@
export
default
{
data
()
{
return
{
timer
:
false
,
fullHeight
:
document
.
documentElement
.
clientHeight
,
ScreenHeight
:
0
,
S_UpdateOrderMoney
:
false
,
isShowTip
:
false
,
TipObj
:
{},
...
...
@@ -6779,6 +6786,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
.
GetSupperOrderEditAuth
();
this
.
GetAuth
();
this
.
GetEditOrderCreateByAuth
();
...
...
@@ -6820,6 +6839,23 @@
this
.
getDownList
();
this
.
getDownListGN
();
},
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'
}
},
},
};
</
script
>
src/components/orderCommon/order-form.vue
View file @
2f149ca3
...
...
@@ -6,7 +6,7 @@
bottom
:
0
;
z-index
:
2
;
overflow
:
auto
;
max-height
:
300px
;
/* max-height: 300px; */
border-top
:
3px
solid
#38425d
;
background-color
:
#ffffff
;
padding
:
10px
10px
0
;
...
...
@@ -24,7 +24,7 @@
}
</
style
>
<
template
>
<div
class=
"commonOrderForm"
>
<div
class=
"commonOrderForm"
:style=
"
{'height':ScreenHeight}"
>
<p
class=
"title"
>
{{
$t
(
"salesModule.SignImdi"
)
}}
<span
v-if=
"crmOrderObj"
>
...
...
@@ -505,6 +505,9 @@
],
data
()
{
return
{
timer
:
false
,
fullHeight
:
document
.
documentElement
.
clientHeight
,
ScreenHeight
:
0
,
pickerOptions0
:
{
disabledDate
:
(
time
)
=>
{
let
starTime
=
new
Date
(
this
.
starTime
);
...
...
@@ -1786,6 +1789,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
.
CurrentUserInfo
=
this
.
getLocalStorage
();
//获取客户类型
this
.
getCustomerType
();
...
...
@@ -1806,6 +1821,21 @@
this
.
getTradeWay
();
},
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'
}
},
productObj
:{
handler
(
oldValue
,
newVal
){
this
.
clearMsg
();
...
...
src/components/orderCommon/order-form2.vue
View file @
2f149ca3
...
...
@@ -6,7 +6,7 @@
bottom
:
0
;
z-index
:
2
;
overflow
:
auto
;
max-height
:
300px
;
/* max-height: 300px; */
border-top
:
3px
solid
#38425d
;
background-color
:
#ffffff
;
padding
:
10px
10px
0
;
...
...
@@ -55,7 +55,7 @@
</
style
>
<
template
>
<div
class=
"commonOrderForm"
>
<div
class=
"commonOrderForm"
:style=
"
{'height':ScreenHeight}"
>
<p
class=
"title"
>
{{
$t
(
"salesModule.SignImdi"
)
}}
<span
v-if=
"crmOrderObj"
>
...
...
@@ -673,6 +673,9 @@
],
data
()
{
return
{
timer
:
false
,
fullHeight
:
document
.
documentElement
.
clientHeight
,
ScreenHeight
:
0
,
pickerOptions0
:
{
disabledDate
:
(
time
)
=>
{
let
starTime
=
new
Date
(
this
.
starTime
);
...
...
@@ -2114,6 +2117,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
.
CurrentUserInfo
=
this
.
getLocalStorage
();
this
.
getCustomerType
();
//获取客户类型
this
.
getMinPrice
(
this
.
productObj
.
LineID
)
// 当前线路报价
...
...
@@ -2128,6 +2143,21 @@
this
.
getCountry
()
//获取国家
},
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'
}
},
productObj
:
{
handler
(
oldValue
,
newVal
)
{
this
.
clearMsg
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment