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
fce12ac5
Commit
fce12ac5
authored
May 17, 2021
by
FE-安焕焕
👣
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
联调物流审核等功能
parent
8559676c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
18 deletions
+8
-18
index.jsx
src/pages/AfterSaleManage/PassAudit/index.jsx
+4
-8
index.jsx
src/pages/AfterSaleManage/Pending/index.jsx
+1
-7
detailTable.jsx
src/pages/AfterSaleManage/components/detailTable.jsx
+2
-2
data.js
src/pages/AfterSaleManage/data.js
+1
-1
No files found.
src/pages/AfterSaleManage/PassAudit/index.jsx
View file @
fce12ac5
...
@@ -66,11 +66,13 @@ export default () => {
...
@@ -66,11 +66,13 @@ export default () => {
detailList
:
[],
detailList
:
[],
key
:
Date
.
now
(),
key
:
Date
.
now
(),
};
};
const
data
=
await
trackInfo
({
expressCompanyCode
,
deliveryNo
});
const
data
=
await
trackInfo
({
expressCompanyCode
,
logisticsNo
:
deliveryNo
});
if
(
!
data
)
{
if
(
!
data
)
{
notification
.
info
({
message
:
'
暂无物流信息
'
});
notification
.
info
({
message
:
'
暂无物流信息
'
});
return
;
return
;
}
}
tempObj
.
expressCompanyName
=
data
.
logisticsName
;
tempObj
.
deliveryNo
=
data
.
logisticsBillNo
;
if
(
data
.
logisticsList
?.
length
)
{
if
(
data
.
logisticsList
?.
length
)
{
data
.
logisticsList
.
forEach
(
v
=>
{
data
.
logisticsList
.
forEach
(
v
=>
{
tempObj
.
detailList
=
[...
tempObj
.
detailList
,
...
v
.
detailList
];
tempObj
.
detailList
=
[...
tempObj
.
detailList
,
...
v
.
detailList
];
...
@@ -134,13 +136,7 @@ export default () => {
...
@@ -134,13 +136,7 @@ export default () => {
>
>
驳回
驳回
</
Button
>,
</
Button
>,
<
Button
<
Button
key=
"link3"
onClick=
{
()
=>
viewDetail
(
r
)
}
type=
"primary"
className=
"mr10"
>
key=
"link3"
onClick=
{
()
=>
viewDetail
(
r
)
}
type=
"primary"
className=
"mr10"
disabled=
{
!
r
.
showDetail
}
>
订单详情
订单详情
</
Button
>,
</
Button
>,
<
Button
<
Button
...
...
src/pages/AfterSaleManage/Pending/index.jsx
View file @
fce12ac5
...
@@ -83,13 +83,7 @@ export default () => {
...
@@ -83,13 +83,7 @@ export default () => {
width
:
250
,
width
:
250
,
fixed
:
'
right
'
,
fixed
:
'
right
'
,
render
:
(
_
,
r
)
=>
[
render
:
(
_
,
r
)
=>
[
<
Button
<
Button
key=
"link1"
onClick=
{
()
=>
openAudit
(
r
)
}
className=
"mr10"
type=
"primary"
>
key=
"link1"
onClick=
{
()
=>
openAudit
(
r
)
}
className=
"mr10"
type=
"primary"
disabled=
{
!
r
.
showAudit
}
>
审核
审核
</
Button
>,
</
Button
>,
<
Button
key=
"link"
onClick=
{
()
=>
viewDetail
(
r
)
}
type=
"primary"
>
<
Button
key=
"link"
onClick=
{
()
=>
viewDetail
(
r
)
}
type=
"primary"
>
...
...
src/pages/AfterSaleManage/components/detailTable.jsx
View file @
fce12ac5
...
@@ -22,8 +22,8 @@ export default props => {
...
@@ -22,8 +22,8 @@ export default props => {
},
},
];
];
return
(
return
(
<
Modal
title=
"
售后操作确认
"
visible=
{
visible
}
onCancel=
{
handleCancel
}
footer=
{
null
}
width=
{
800
}
>
<
Modal
title=
"
订单详情
"
visible=
{
visible
}
onCancel=
{
handleCancel
}
footer=
{
null
}
width=
{
800
}
>
<
Table
dataSource=
{
dataSource
}
columns=
{
columns
}
key=
"skuName"
pagination=
{
false
}
/>
<
Table
dataSource=
{
dataSource
}
columns=
{
columns
}
key=
"skuName"
pagination=
{
false
}
bordered
/>
</
Modal
>
</
Modal
>
);
);
};
};
src/pages/AfterSaleManage/data.js
View file @
fce12ac5
...
@@ -65,7 +65,7 @@ export const columnSticData = [
...
@@ -65,7 +65,7 @@ export const columnSticData = [
},
},
{
{
title
:
'
超时时间
'
,
title
:
'
超时时间
'
,
dataIndex
:
'
over
T
ime
'
,
dataIndex
:
'
over
t
ime
'
,
hideInSearch
:
true
,
hideInSearch
:
true
,
width
:
200
,
width
:
200
,
},
},
...
...
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