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
f3cba918
Commit
f3cba918
authored
Jun 18, 2021
by
FE-安焕焕
👣
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改样式
parent
00007b11
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
22 additions
and
17 deletions
+22
-17
index.jsx
src/pages/AfterSaleManage/PassAudit/index.jsx
+3
-1
index.jsx
src/pages/AfterSaleManage/Pending/index.jsx
+3
-1
data.js
src/pages/AfterSaleManage/data.js
+13
-12
index.jsx
src/pages/afterSale/appeal/index.jsx
+1
-1
staticdata.js
src/pages/afterSale/appeal/staticdata.js
+2
-2
No files found.
src/pages/AfterSaleManage/PassAudit/index.jsx
View file @
f3cba918
...
...
@@ -161,9 +161,11 @@ export default () => {
}
}
bordered
actionRef=
{
table
}
scroll=
{
{
x
:
'
100%
'
}
}
scroll=
{
{
x
:
'
100%
'
,
y
:
400
}
}
toolBarRender=
{
false
}
search=
{
{
collapsed
:
false
,
collapseRender
:
()
=>
null
,
}
}
/>
<
RejectModal
visible=
{
visible
}
onCancel=
{
closeModal
}
serviceNo=
{
serviceNoInfo
}
/>
...
...
src/pages/AfterSaleManage/Pending/index.jsx
View file @
f3cba918
...
...
@@ -108,10 +108,12 @@ export default () => {
}
}
bordered
actionRef=
{
table
}
scroll=
{
{
x
:
'
100%
'
}
}
scroll=
{
{
x
:
'
100%
'
,
y
:
400
}
}
search=
{
{
collapsed
:
false
,
collapseRender
:
()
=>
null
,
}
}
toolBarRender=
{
false
}
/>
<
AuditModal
visible=
{
visible
}
onCancel=
{
closeModal
}
formData=
{
auditInfo
}
/>
<
DetailTable
visible=
{
detailVisible
}
onCancel=
{
closeModal
}
dataSource=
{
detailInfo
}
/>
...
...
src/pages/AfterSaleManage/data.js
View file @
f3cba918
import
{
Tag
}
from
'
antd
'
;
import
{
Tag
,
Badge
}
from
'
antd
'
;
import
React
from
'
react
'
;
export
const
appealType
=
{
...
...
@@ -12,23 +12,24 @@ export const columnSticData = [
hideInTable
:
true
,
width
:
200
,
},
{
title
:
'
售后单ID
'
,
dataIndex
:
'
serviceNo
'
,
width
:
300
,
render
:
(
orderNo
,
r
)
=>
(
<
div
>
<
Tag
className
=
"
mr10
"
>
{
r
.
serviceNo
}
<
/Tag
>
{
<
Badge
count
=
{
r
.
reminderFlag
?
'
催
'
:
''
}
size
=
"
default
"
/>
}
<
/div
>
),
},
{
title
:
'
订单ID
'
,
dataIndex
:
'
orderNo
'
,
hideInSearch
:
true
,
width
:
300
,
// eslint-disable-next-line no-confusing-arrow
render
:
(
orderNo
,
r
)
=>
r
.
timeout
||
r
.
reminderFlag
?
(
<
Tag
color
=
{
r
.
timeout
?
'
red
'
:
'
green
'
}
>
{
orderNo
}
<
/Tag
>
)
:
(
orderNo
),
},
{
title
:
'
售后单ID
'
,
dataIndex
:
'
serviceNo
'
,
width
:
200
,
render
:
(
orderNo
,
r
)
=>
<
div
>
{
r
.
timeout
?
<
Tag
color
=
"
red
"
>
{
orderNo
}
<
/Tag> : orderNo}</
div
>
,
},
{
title
:
'
售后状态
'
,
...
...
src/pages/afterSale/appeal/index.jsx
View file @
f3cba918
...
...
@@ -86,7 +86,7 @@ const Appeal = () => {
bordered
className=
{
styles
.
table
}
toolBarRender=
{
false
}
scroll=
{
{
x
:
'
100%
'
}
}
scroll=
{
{
x
:
'
100%
'
,
y
:
400
}
}
/>
<
Detail
data=
{
selectedRow
}
...
...
src/pages/afterSale/appeal/staticdata.js
View file @
f3cba918
...
...
@@ -12,13 +12,13 @@ export function columns(res) {
return
[
{
title
:
'
售后申诉单ID
'
,
width
:
12
0
,
width
:
30
0
,
dataIndex
:
'
appealNo
'
,
key
:
'
appealNo
'
,
},
{
title
:
'
售后单ID
'
,
width
:
12
0
,
width
:
30
0
,
dataIndex
:
'
serviceNo
'
,
key
:
'
serviceNo
'
,
},
...
...
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