Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
J
jz_Travel
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
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
zhengke
jz_Travel
Commits
f58f6b8a
Commit
f58f6b8a
authored
May 27, 2025
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
幸福存折
parent
fb2fcd1d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
4 deletions
+20
-4
jz_LineDetail.vue
pages/jiuzhai/jz_LineDetail.vue
+0
-1
jz_Reserve.vue
pages/jiuzhai/jz_Reserve.vue
+19
-2
jz_SureOrder.vue
pages/jiuzhai/jz_SureOrder.vue
+1
-1
No files found.
pages/jiuzhai/jz_LineDetail.vue
View file @
f58f6b8a
...
...
@@ -2098,7 +2098,6 @@
// #ifdef MP-AG
if
(
this
.
createBy
>
0
||
this
.
parametersMsg
.
SaleId
)
createBy
=
this
.
createBy
>
0
?
this
.
createBy
:
this
.
parametersMsg
.
SaleId
// #endif
console
.
log
(
"createBy-------"
,
createBy
)
let
tParams
=
"&tcid="
+
this
.
delMsg
.
tcid
+
"&cityId="
+
...
...
pages/jiuzhai/jz_Reserve.vue
View file @
f58f6b8a
...
...
@@ -392,10 +392,12 @@
<view
style=
"display: flex;align-items: center;"
>
<text
style=
"color:#F20707;font-size: 12px;"
>
<text
class=
"content"
:style=
"
{ color: mainColor }">余额
{{
happinessPassbook
.
client_Balance
-
happinessPassbook
.
RedEnvelopeMoney
}}
元
</text>
<text
class=
"content"
style=
"color:grey;margin-left: 10rpx;"
v-if=
"happinessPassbook.max>0"
>
最多可减
{{
happinessPassbook
.
max
}}
元
</text>
</text>
</view>
</view>
<!--
<text
class=
"content"
style=
"color:#F20707;font-size: 24rpx;"
v-if=
"happinessPassbook.max >0"
>
一次最多可减
{{
happinessPassbook
.
max
>
happinessPassbook
.
client_Balance
?
happinessPassbook
.
client_Balance
:
happinessPassbook
.
max
}}
元
</text>
-->
</view>
</
template
>
<view
class=
"empty-block"
></view>
...
...
@@ -707,7 +709,22 @@
);
},
ChangeUse
(
e
)
{
if
(
e
.
value
>
0
)
this
.
happinessPassbook
.
RedEnvelopeMoney
=
e
.
value
;
if
((
e
.
value
>=
this
.
happinessPassbook
.
max
&&
this
.
happinessPassbook
.
max
>
this
.
happinessPassbook
.
client_Balance
)
||
(
e
.
value
>
this
.
happinessPassbook
.
client_Balance
)){
uni
.
showToast
({
title
:
`本单最多可减
${
this
.
happinessPassbook
.
client_Balance
}
元`
,
icon
:
'none'
})
this
.
happinessPassbook
.
RedEnvelopeMoney
=
this
.
happinessPassbook
.
client_Balance
return
}
else
if
(
e
.
value
>=
this
.
happinessPassbook
.
max
&&
this
.
happinessPassbook
.
max
<=
this
.
happinessPassbook
.
client_Balance
){
uni
.
showToast
({
title
:
`本单最多可减
${
this
.
happinessPassbook
.
max
}
元`
,
icon
:
'none'
})
this
.
happinessPassbook
.
RedEnvelopeMoney
=
this
.
happinessPassbook
.
max
return
}
else
if
(
e
.
value
>
0
)
this
.
happinessPassbook
.
RedEnvelopeMoney
=
e
.
value
;
else
this
.
happinessPassbook
.
RedEnvelopeMoney
=
0
;
},
navigatorToHomeHandle
()
{
...
...
pages/jiuzhai/jz_SureOrder.vue
View file @
f58f6b8a
...
...
@@ -544,7 +544,7 @@
<text
style=
"margin-right: 30rpx"
>
合计应收
</text>
</view>
<view
style=
"text-align: right;color: #ff3166;font-size:32rpx;font-weight: bold;"
>
{{(orderData.model.PreferPrice-orderData.model.DiscountMoney).toFixed(2)}}
{{(orderData.model.PreferPrice-orderData.model.DiscountMoney
-orderData.model.RedEnvelopeMoney
).toFixed(2)}}
</view>
</view>
</view>
...
...
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