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
f96589f2
Commit
f96589f2
authored
Jun 16, 2025
by
靳野
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:ZT-1443
parent
038e44ff
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
8 deletions
+16
-8
staticdata.js
src/pages/AfterSalesClaimForm/staticdata.js
+16
-8
No files found.
src/pages/AfterSalesClaimForm/staticdata.js
View file @
f96589f2
...
@@ -116,27 +116,35 @@ export const columnsConfig = props => [
...
@@ -116,27 +116,35 @@ export const columnsConfig = props => [
{
{
title
:
'
用户凭证
'
,
title
:
'
用户凭证
'
,
key
:
'
proof
'
,
key
:
'
proof
'
,
dataIndex
:
'
proof
'
,
dataIndex
:
[
'
proof
'
,
'
userList
'
]
,
align
:
'
center
'
,
align
:
'
center
'
,
width
:
190
,
width
:
190
,
hideInSearch
:
true
,
hideInSearch
:
true
,
render
:
value
=>
render
:
value
=>
{
(
value
.
userList
||
[]).
map
(
item
=>
(
if
(
!
Array
.
isArray
(
value
)
||
value
.
length
===
0
)
{
return
value
;
// 呆萌兮兮地提示一下~
}
return
value
.
map
(
item
=>
(
<
ImageComponent
style
=
{{
paddingLeft
:
5
,
marginTop
:
5
}}
key
=
{
item
}
width
=
{
50
}
src
=
{
item
}
/
>
<
ImageComponent
style
=
{{
paddingLeft
:
5
,
marginTop
:
5
}}
key
=
{
item
}
width
=
{
50
}
src
=
{
item
}
/
>
)),
));
},
},
},
{
{
title
:
'
审核意见
'
,
title
:
'
审核意见
'
,
key
:
'
proof
'
,
key
:
'
proof
'
,
dataIndex
:
'
proof
'
,
dataIndex
:
[
'
proof
'
,
'
csList
'
]
,
align
:
'
center
'
,
align
:
'
center
'
,
width
:
190
,
width
:
190
,
hideInSearch
:
true
,
hideInSearch
:
true
,
render
:
value
=>
render
:
(
value
,
record
)
=>
{
(
value
.
csList
||
[]).
map
(
item
=>
(
if
(
!
Array
.
isArray
(
value
)
||
value
.
length
===
0
)
{
return
value
;
// 呆萌兮兮地提示一下~
}
return
(
value
||
[]).
map
(
item
=>
(
<
div
style
=
{
csListStyle
}
onClick
=
{()
=>
props
.
downLoadFile
(
item
)}
>
<
div
style
=
{
csListStyle
}
onClick
=
{()
=>
props
.
downLoadFile
(
item
)}
>
{
item
}
{
item
}
<
/div
>
<
/div
>
)),
));
},
},
},
];
];
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