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
73586a28
Commit
73586a28
authored
Feb 18, 2025
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
609a0a58
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
visa_MyOrder.vue
pages/visa/visa_MyOrder.vue
+1
-1
visa_SureOrder.vue
pages/visa/visa_SureOrder.vue
+6
-5
No files found.
pages/visa/visa_MyOrder.vue
View file @
73586a28
...
...
@@ -139,7 +139,7 @@
<!-- #ifdef MP-ALIPAY -->
<!--
<view
class=
"jz_Zailai"
style=
"width: 110rpx; margin-right: 10rpx"
@
click
.
stop=
"goZhifuAli(item)"
>
付款
</view>
-->
<!-- #endif -->
<view
v-if=
"item.visaOrderStatus
!=2&&item.income==0
"
class=
"jz_Zailai"
<view
v-if=
"item.visaOrderStatus
==3
"
class=
"jz_Zailai"
style=
"width: 110rpx"
@
click
.
stop=
"goCancel(item)"
>
取消
</view>
</view>
</view>
...
...
pages/visa/visa_SureOrder.vue
View file @
73586a28
...
...
@@ -632,7 +632,8 @@
this
.
orderData
=
res
.
data
;
this
.
formatStatus
(
this
.
orderData
.
OrderModel
.
VisaOrderStatus
,
this
.
orderData
.
OrderModel
.
Income
this
.
orderData
.
OrderModel
.
Income
,
this
.
orderData
.
OrderModel
.
TotalPrice
);
}
else
{
this
.
orderData
=
{
...
...
@@ -643,7 +644,7 @@
(
e
)
=>
{}
);
},
formatStatus
(
status
,
Income
)
{
formatStatus
(
status
,
Income
,
TotalPrice
)
{
if
(
status
==
2
)
{
this
.
orderStatus
.
code
=
-
1
;
this
.
orderStatus
.
text
=
"已取消"
;
...
...
@@ -652,11 +653,11 @@
this
.
orderStatus
.
code
=
0
;
this
.
orderStatus
.
text
=
"待付款"
;
this
.
showPayBtn
=
true
;
}
else
if
(
status
==
1
&&
Income
==
0
)
{
}
else
if
(
status
==
1
&&
Income
>
0
)
{
this
.
orderStatus
.
code
=
1
;
this
.
orderStatus
.
text
=
"正常"
;
this
.
showPayBtn
=
tru
e
;
}
else
if
(
status
==
1
&&
Income
>
0
)
{
this
.
showPayBtn
=
fals
e
;
}
else
if
(
status
==
1
&&
Income
==
TotalPrice
)
{
this
.
orderStatus
.
code
=
1
;
this
.
orderStatus
.
text
=
"已付款"
;
this
.
showPayBtn
=
false
;
...
...
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