Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
O
on-site-service-admin-view
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
external
on-site-service-admin-view
Commits
7d166c7d
Commit
7d166c7d
authored
Aug 10, 2022
by
shangtx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 订单增加价格展示
parent
5e9df6f5
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
3 deletions
+15
-3
OrderDetail.vue
src/views/order/OrderDetail.vue
+8
-3
OrderList.vue
src/views/order/OrderList.vue
+7
-0
No files found.
src/views/order/OrderDetail.vue
View file @
7d166c7d
...
...
@@ -36,13 +36,18 @@
:
'-'
}}
</a-descriptions-item>
<a-descriptions-item
label=
"数量"
span=
"2"
>
<a-descriptions-item
label=
"数量"
>
{{
order
.
num
||
'-'
}}
</a-descriptions-item>
<a-descriptions-item
label=
"地址"
span=
"2"
>
<a-descriptions-item
label=
"当前定价(元)"
>
{{
order
.
price
||
'-'
}}
</a-descriptions-item>
<a-descriptions-item
label=
"地址"
>
{{
order
.
address
||
'-'
}}
</a-descriptions-item>
<a-descriptions-item
label=
"已支付金额(元)"
>
{{
order
.
totalPrice
||
'-'
}}
</a-descriptions-item>
<a-descriptions-item
label=
"需求说明"
:span=
"2"
>
{{
order
.
demandDesc
||
'-'
}}
</a-descriptions-item>
...
...
src/views/order/OrderList.vue
View file @
7d166c7d
...
...
@@ -55,6 +55,13 @@ const columns = [
width
:
130
,
filter
:
{
type
:
SearchType
.
STRING
}
},
{
title
:
'已支付金额(元)'
,
dataIndex
:
'totalPrice'
,
align
:
'center'
,
customRender
:
(
value
)
=>
value
||
'-'
,
width
:
100
,
},
{
title
:
'服务时间'
,
dataIndex
:
'expectArrivalTime'
,
...
...
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