Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
merchant-manage-ui
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
ui
merchant-manage-ui
Commits
c5c698b7
Commit
c5c698b7
authored
Aug 25, 2022
by
李腾
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 订单列表售后字段改为list
parent
e39fa8cf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
9 deletions
+19
-9
index.jsx
src/pages/orderManage/queryOrder/index.jsx
+15
-9
index.less
src/pages/orderManage/queryOrder/index.less
+4
-0
No files found.
src/pages/orderManage/queryOrder/index.jsx
View file @
c5c698b7
import
{
Form
,
Tabs
,
Input
,
Button
,
Pagination
,
notification
}
from
'
antd
'
;
import
{
Form
,
Tabs
,
Input
,
Button
,
Pagination
}
from
'
antd
'
;
import
React
,
{
useState
,
useEffect
,
useRef
}
from
'
react
'
;
import
React
,
{
useState
,
useEffect
,
useRef
}
from
'
react
'
;
import
{
PageHeaderWrapper
}
from
'
@ant-design/pro-layout
'
;
import
{
PageHeaderWrapper
}
from
'
@ant-design/pro-layout
'
;
import
style
from
'
./index.less
'
;
import
style
from
'
./index.less
'
;
...
@@ -269,14 +269,20 @@ const OrderList = ref => {
...
@@ -269,14 +269,20 @@ const OrderList = ref => {
},
},
{
{
title
:
'
售后
'
,
title
:
'
售后
'
,
dataIndex
:
'
afterServiceStatusDesc
'
,
dataIndex
:
'
afterSaleVos
'
,
width
:
200
,
width
:
220
,
render
:
({
value
,
subRecord
})
=>
(
align
:
'
left
'
,
<>
render
:
({
value
})
=>
{
<
div
>
{
value
}
</
div
>
if
(
value
&&
value
.
length
)
{
<
div
className=
{
style
.
blue
}
>
{
subRecord
.
afterServiceNo
}
</
div
>
return
value
.
map
(
item
=>
(
</>
<
div
className=
{
style
[
'
after-status-box
'
]
}
>
),
<
div
className=
{
style
.
desc
}
>
{
item
.
afterServiceStatusDesc
}
</
div
>
<
div
className=
{
style
.
blue
}
>
{
item
.
afterServiceNo
}
</
div
>
</
div
>
));
}
return
'
-
'
;
},
},
},
{
{
title
:
'
操作
'
,
title
:
'
操作
'
,
...
...
src/pages/orderManage/queryOrder/index.less
View file @
c5c698b7
...
@@ -51,3 +51,7 @@
...
@@ -51,3 +51,7 @@
.blue {
.blue {
color: #61b0ff;
color: #61b0ff;
}
}
.after-status-box {
margin: 5px 0;
}
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