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
1087998b
Commit
1087998b
authored
Jan 09, 2024
by
吴春
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交订单列表显示不占床人数,以及获取和平商旅小程序二维码接口方法
parent
d5cc863b
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
2 deletions
+28
-2
groupTourOrder.vue
src/components/SalesModule/groupTourOrder.vue
+3
-1
productQuery.vue
src/components/SalesModule/productQuery.vue
+25
-1
No files found.
src/components/SalesModule/groupTourOrder.vue
View file @
1087998b
...
...
@@ -2160,7 +2160,9 @@
</p>
<span
style=
"display: block"
>
{{ $t("salesModule.RoomInfo")
}}
<span
v-if=
"item.oneSex > 0"
style=
"color: #e95252"
>
({{ item.oneSex == 1 ? "单男" : "单女" }})
</span>
:{{ item.orderGuestHouseStr }}
</span>
style=
"color: #e95252"
>
({{ item.oneSex == 1 ? "单男" : "单女" }})
</span><span
v-if=
"item.chirdNoNeedBedNum > 0"
style=
"color: #e95252"
>
(不占床人数{{ item.chirdNoNeedBedNum }}人)
</span>
:{{ item.orderGuestHouseStr }}
</span>
<div>
<span
v-if=
"item.opTipMoney == '' && item.tipMoney != ''"
...
...
src/components/SalesModule/productQuery.vue
View file @
1087998b
...
...
@@ -3311,7 +3311,7 @@ export default {
// this.addMsg.Remarks = this.addMsg.Remarks + text + ':' + (count-this.addMsg[key]) + ';'
// }
},
// 获取微信二维码
// 获取微信二维码
(旅小友)
getWxCode
:
function
(
key
)
{
this
.
wxLoading
=
false
;
if
(
this
.
list
[
key
].
wxImage
===
""
)
{
...
...
@@ -3335,6 +3335,30 @@ export default {
);
}
},
// 获取微信(和平商旅)二维码
getWxHPSLCode
:
function
(
key
)
{
this
.
wxLoading
=
false
;
if
(
this
.
list
[
key
].
wxImage
===
""
)
{
this
.
wxLoading
=
true
;
this
.
apipost
(
"TaskManagemnet_get_GetWeiXinShareHPSL"
,
{
ConfigId
:
this
.
list
[
key
].
ConfigID
,
TCID
:
this
.
list
[
key
].
TCID
,
},
(
res
)
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
let
url
=
res
.
data
.
data
;
this
.
list
[
key
].
wxImage
=
url
;
this
.
wxLoading
=
false
;
}
else
{
this
.
$message
.
error
(
"二维码获取失败"
);
}
},
(
err
)
=>
{}
);
}
},
toTrip
:
function
(
obj
)
{
this
.
tripObj
.
tcid
=
obj
.
TCID
;
this
.
tripObj
.
configId
=
obj
.
ConfigID
;
...
...
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