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
351649c5
Commit
351649c5
authored
Jul 05, 2022
by
caoyanzhi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: 订单列表
parent
c63789fc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
order-table.vue
src/components/allCustomers/order-list/order-table.vue
+2
-2
No files found.
src/components/allCustomers/order-list/order-table.vue
View file @
351649c5
...
...
@@ -66,7 +66,7 @@
<
el
-
table
-
column
label
=
"商品信息"
min
-
width
=
"350px"
show
-
overflow
-
tooltip
>
<
div
class
=
"goods-info-box"
slot
-
scope
=
"{ row
}
"
>
<
div
class
=
"goods-logo"
>
<
img
class
=
"goods-logo-icon"
:
src
=
"row.imageUrl"
alt
=
""
>
<
img
class
=
"goods-logo-icon"
:
src
=
"row.imageUrl
? row.imageUrl : './static/img/default-goods.png'
"
alt
=
""
>
<!--
productType
商品类型
1
正常
2
赠品
3
换购
-->
<
div
v
-
if
=
"row.productType == 2"
class
=
"goods-type-icon gift"
>
赠品
<
/div
>
<
div
v
-
if
=
"row.productType == 3"
class
=
"goods-type-icon swap"
>
换购
<
/div
>
...
...
@@ -86,7 +86,7 @@
<
/el-table-column
>
<
el
-
table
-
column
label
=
"数量"
prop
=
"skuNum"
min
-
width
=
"70px"
><
/el-table-column
>
<
el
-
table
-
column
label
=
"小计金额(元)"
min
-
width
=
"120px"
>
<
div
slot
-
scope
=
"{ row
}
"
>
{{
row
.
payPrice
*
row
.
skuNum
|
fomatFloat
}}
<
/div
>
<
div
slot
-
scope
=
"{ row
}
"
>
{{
row
.
payPrice
*
Math
.
abs
(
row
.
skuNum
)
|
fomatFloat
}}
<
/div
>
<
/el-table-column
>
<
el
-
table
-
column
label
=
"订单金额(元)"
class
-
name
=
"order-amount"
min
-
width
=
"210px"
>
<
div
class
=
"order-descript"
>
...
...
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