Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
outside-front-order-inquiry
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
严宝瑞
outside-front-order-inquiry
Commits
3fa5c961
Commit
3fa5c961
authored
Mar 22, 2021
by
严宝瑞
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加金额
parent
8f08379a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
+21
-0
Page.vue
src/components/Page.vue
+21
-0
No files found.
src/components/Page.vue
View file @
3fa5c961
...
...
@@ -23,6 +23,27 @@
<el-table-column
label=
"Email of Customer"
prop=
"email"
/>
<el-table-column
label=
"Date for Order"
prop=
"order_created_at"
/>
<el-table-column
label=
"Quantity"
prop=
"required_num"
/>
<el-table-column
label=
"total_amount"
prop=
"total_amount"
width=
"200"
>
<template
slot-scope=
"
{ row }">
<span
style=
"font-size:12px"
>
Total Amount:
{{
row
.
currency
?
row
.
currency
.
symbol
:
""
}}{{
Number
(
row
.
total_amount
).
toFixed
(
2
)
}}
<br
/>
shipping Expedited Fee:
<span
:style=
"row.shipping_expedited_fee > 0 ?
{ color: 'red' } : ''"
>
{{
row
.
currency
?
row
.
currency
.
symbol
:
""
}}{{
Number
(
row
.
shipping_expedited_fee
).
toFixed
(
2
)
}}
</span>
<br
/>
,Total Discount:
{{
row
.
currency
?
row
.
currency
.
symbol
:
""
}}{{
Number
(
row
.
total_discount
).
toFixed
(
2
)
}}
</span>
</
template
>
</el-table-column>
<el-table-column
label=
"Order status"
prop=
"order_status.en_for_translator"
...
...
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