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
2fd94f6c
Commit
2fd94f6c
authored
Mar 06, 2025
by
罗超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增订单详情支持优惠券弹窗
parent
e26bbe1b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
jz_SureOrder.vue
pages/jiuzhai/jz_SureOrder.vue
+9
-1
No files found.
pages/jiuzhai/jz_SureOrder.vue
View file @
2fd94f6c
...
...
@@ -578,6 +578,7 @@
<view
style=
"display: flex; margin-left: 30rpx"
>
</view>
</view>
<coupons
v-if=
"showCoupons"
:coupon-message=
"couponMessage"
@
goLook=
"()=>showCoupons=false"
@
closeBtn=
"()=>showCoupons=false"
></coupons>
</view>
</template>
...
...
@@ -585,8 +586,9 @@
</
script
>
<
script
>
import
coupons
from
"@/components/coupons/coupons.vue"
;
export
default
{
components
:
{},
components
:
{
coupons
},
data
()
{
return
{
pageTitle
:
"订单详情"
,
...
...
@@ -604,6 +606,8 @@
OrderNo
:
''
,
mainColor
:
''
,
orderId
:
0
,
showCoupons
:
false
,
couponMessage
:[],
};
},
created
()
{},
...
...
@@ -618,6 +622,10 @@
this
.
initOrderInfo
();
}
this
.
mainColor
=
this
.
$uiConfig
.
mainColor
if
(
uni
.
getStorageSync
(
'coupons'
))
{
this
.
showCoupons
=
true
;
this
.
couponMessage
=
uni
.
getStorageSync
(
'coupons'
);
}
},
methods
:
{
submitGetCodeByOrderNo
()
{
...
...
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