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
32d8e7c0
Commit
32d8e7c0
authored
May 15, 2023
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
2350ee27
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
182 additions
and
19 deletions
+182
-19
FoodOrder.vue
src/components/Restaurant/FoodOrder.vue
+1
-1
BulkAirTicketOrders.vue
src/components/SalesModule/BulkAirTicketOrders.vue
+1
-1
productOrderList.vue
src/components/SalesModule/Common/productOrderList.vue
+1
-1
groupTourOrder.vue
src/components/SalesModule/groupTourOrder.vue
+1
-1
groupTourOrderByTuan.vue
src/components/SalesModule/groupTourOrderByTuan.vue
+33
-2
groupTourOrderByTuanOne.vue
src/components/SalesModule/groupTourOrderByTuanOne.vue
+35
-2
groupTourOrderOne.vue
src/components/SalesModule/groupTourOrderOne.vue
+35
-2
planeTourOrder.vue
src/components/SalesModule/planeTourOrder.vue
+35
-2
productOrderList.vue
src/components/SalesModule/productOrderList.vue
+1
-1
productQuery.vue
src/components/SalesModule/productQuery.vue
+35
-2
productQuery2.vue
src/components/SalesModule/productQuery2.vue
+1
-1
productQueryOne2.vue
src/components/SalesModule/productQueryOne2.vue
+1
-1
CombinedOrderList.vue
src/components/Ticketing/CombinedOrderList.vue
+1
-1
IndividualTicketOrderDetails.vue
src/components/Ticketing/IndividualTicketOrderDetails.vue
+1
-1
No files found.
src/components/Restaurant/FoodOrder.vue
View file @
32d8e7c0
...
...
@@ -434,7 +434,7 @@ export default {
.productQuerybottomLayer
{
overflow
:
auto
;
position
:
fixed
;
max-height
:
300px
;
/* max-height: 300px; */
z-index
:
50
;
bottom
:
0
;
left
:
0
;
...
...
src/components/SalesModule/BulkAirTicketOrders.vue
View file @
32d8e7c0
...
...
@@ -473,7 +473,7 @@ export default {
.productQuerybottomLayer
{
overflow
:
auto
;
position
:
fixed
;
max-height
:
300px
;
/* max-height: 300px; */
z-index
:
50
;
bottom
:
0
;
left
:
0
;
...
...
src/components/SalesModule/Common/productOrderList.vue
View file @
32d8e7c0
...
...
@@ -317,7 +317,7 @@
.productQuerybottomLayer
{
overflow
:
auto
;
position
:
fixed
;
max-height
:
300px
;
/* max-height: 300px; */
z-index
:
50
;
bottom
:
0
;
left
:
0
;
...
...
src/components/SalesModule/groupTourOrder.vue
View file @
32d8e7c0
...
...
@@ -180,7 +180,7 @@
.productQuerybottomLayer
{
overflow
:
auto
;
position
:
fixed
;
max-height
:
300px
;
/* max-height: 300px; */
z-index
:
50
;
bottom
:
0
;
left
:
0
;
...
...
src/components/SalesModule/groupTourOrderByTuan.vue
View file @
32d8e7c0
...
...
@@ -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
();
...
...
src/components/SalesModule/groupTourOrderByTuanOne.vue
View file @
32d8e7c0
...
...
@@ -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
();
...
...
src/components/SalesModule/groupTourOrderOne.vue
View file @
32d8e7c0
...
...
@@ -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
+
','
;
...
...
src/components/SalesModule/planeTourOrder.vue
View file @
32d8e7c0
...
...
@@ -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
;
...
...
src/components/SalesModule/productOrderList.vue
View file @
32d8e7c0
...
...
@@ -88,7 +88,7 @@
.productQuerybottomLayer
{
overflow
:
auto
;
position
:
fixed
;
max-height
:
300px
;
/* max-height: 300px; */
z-index
:
50
;
bottom
:
0
;
left
:
0
;
...
...
src/components/SalesModule/productQuery.vue
View file @
32d8e7c0
...
...
@@ -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
);
...
...
src/components/SalesModule/productQuery2.vue
View file @
32d8e7c0
...
...
@@ -88,7 +88,7 @@
.productQuerybottomLayer
{
overflow
:
auto
;
position
:
fixed
;
max-height
:
300px
;
/* max-height: 300px; */
z-index
:
50
;
bottom
:
0
;
left
:
0
;
...
...
src/components/SalesModule/productQueryOne2.vue
View file @
32d8e7c0
...
...
@@ -88,7 +88,7 @@
.productQuerybottomLayer
{
overflow
:
auto
;
position
:
fixed
;
max-height
:
300px
;
/* max-height: 300px; */
z-index
:
50
;
bottom
:
0
;
left
:
0
;
...
...
src/components/Ticketing/CombinedOrderList.vue
View file @
32d8e7c0
...
...
@@ -176,7 +176,7 @@
.productQuerybottomLayer
{
overflow
:
auto
;
position
:
absolute
;
max-height
:
300px
;
/* max-height: 300px; */
z-index
:
50
;
bottom
:
0
;
left
:
0
;
...
...
src/components/Ticketing/IndividualTicketOrderDetails.vue
View file @
32d8e7c0
...
...
@@ -549,7 +549,7 @@ export default {
.productQuerybottomLayer
{
overflow
:
auto
;
position
:
fixed
;
max-height
:
300px
;
/* max-height: 300px; */
z-index
:
50
;
bottom
:
0
;
left
:
0
;
...
...
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