Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
member
Overview
Overview
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
member
member
Commits
e4ba4a23
Commit
e4ba4a23
authored
Jul 04, 2022
by
caoyanzhi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: 客户订单
parent
9c3d1954
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletions
+11
-1
order-table.vue
src/components/allCustomers/order-list/order-table.vue
+11
-1
No files found.
src/components/allCustomers/order-list/order-table.vue
View file @
e4ba4a23
...
...
@@ -91,6 +91,13 @@
<
el
-
table
-
column
label
=
"订单金额(元)"
class
-
name
=
"order-amount"
min
-
width
=
"210px"
>
<
div
class
=
"order-descript"
>
<!--
购买单、退换单、销售单显示应收金额
-->
<!--
退款单不显示商品合计
-->
<
div
v
-
if
=
"el.orderType != 2"
class
=
"order-descript-item gray"
>
<
div
class
=
"order-descript-label"
>
<
div
class
=
"order-descript-label-text"
>
商品合计
<
/div>
:
<
/div
>
<
div
class
=
"order-descript-content"
>
{{
el
.
paidAmount
-
el
.
deliveryPaymentAmount
|
fomatFloat
}}
<
/div
>
<
/div
>
<!--
退款单显示应退金额
-->
<
div
class
=
"order-descript-item gray"
>
<
div
class
=
"order-descript-label"
>
...
...
@@ -298,7 +305,10 @@ export default {
if (Object.prototype.toString.call(page) != '[object Object]') {
page = {
}
;
}
this.tableData = page.result;
this.tableData = page.result.map(el => {
el.payInfo = typeof el.payInfo == 'string' ? JSON.parse(el.payInfo) : null;
return el;
}
);
this.params.total = page.totalCount;
}
);
}
,
...
...
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