Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
J
jd-vx-app
Project
Project
Details
Activity
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
Administrator
jd-vx-app
Commits
7578385a
Commit
7578385a
authored
May 07, 2022
by
肖健
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复bug
parent
46ecfa54
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
5 deletions
+17
-5
myOrder.vue
pagesD/pages/personal/myOrder.vue
+4
-3
orderDetail.vue
pagesD/pages/personal/orderDetail.vue
+13
-2
No files found.
pagesD/pages/personal/myOrder.vue
View file @
7578385a
...
...
@@ -42,8 +42,9 @@
<span>
总金额:
</span>
<span>
¥
{{
item
.
amount
/
100
}}
</span>
</div>
<div
class=
"order__btn"
@
click
.
stop=
"pull(item.id)"
>
<span>
申请退款
</span>
<div
class=
"order__btn"
@
click
.
stop=
"pull(item.id)"
>
<span
v-if=
"item.aftersaleStatus==0"
@
click
.
stop=
"pull(item.id)"
>
申请退款
</span>
<span
class=
"btn__two"
@
click=
"orderDetail(item.id)"
>
查看详情
</span>
</div>
</div>
</div>
...
...
@@ -111,7 +112,7 @@
</div>
</div>
</div>
<div
class=
"order__items"
v-if=
"(current===0||current===4) &&
item.orderStatus == 40
"
>
<div
class=
"order__items"
v-if=
"(current===0||current===4) &&
(item.orderStatus == 30 || item.orderStatus == 40)
"
>
<div
class=
"item"
>
<div
class=
"item__time"
>
<span>
{{
item
.
successTime
}}
</span>
...
...
pagesD/pages/personal/orderDetail.vue
View file @
7578385a
...
...
@@ -53,13 +53,23 @@
</div>
<div
class=
"item__bottom"
>
<div
class=
"bottom__item"
>
<div>
订单编号:
:
</div>
<div>
订单编号:
</div>
<div>
{{
orderInfo
.
orderNo
}}
</div>
</div>
<div
class=
"bottom__item"
>
<div>
付款时间:
</div>
<div>
{{
orderInfo
.
successTime
}}
</div>
</div>
<div
v-if=
"orderInfo.aftersaleStatus==4"
>
<div
class=
"bottom__item"
>
<div>
退款原因:
</div>
<div>
{{
orderInfo
.
reason
}}
</div>
</div>
<div
class=
"bottom__item"
>
<div>
退款拒绝原因:
</div>
<div>
{{
orderInfo
.
applyBackReason
}}
</div>
</div>
</div>
<div
class=
"bottom__item"
>
<div>
商品总价:
</div>
<div>
¥
{{
orderInfo
.
amount
/
100
}}
</div>
...
...
@@ -68,8 +78,9 @@
<div>
实付款:
</div>
<div
class=
"bottom__price"
>
¥
{{
orderInfo
.
amount
/
100
}}
</div>
</div>
</div>
<div
class=
"order__btn"
@
click=
"pull"
>
<div
class=
"order__btn"
v-if=
"orderInfo.aftersaleStatus==0 && orderInfo.orderStatus == 10"
@
click=
"pull"
>
<span>
申请退款
</span>
</div>
</div>
...
...
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