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
eae364ac
Commit
eae364ac
authored
Jun 25, 2021
by
王苓芝
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
凭证资料查看
parent
502329bc
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
12 deletions
+13
-12
env.config.js
config/env.config.js
+3
-3
index.jsx
src/pages/afterSale/appeal/index.jsx
+2
-1
staticdata.js
src/pages/afterSale/appeal/staticdata.js
+8
-8
No files found.
config/env.config.js
View file @
eae364ac
...
...
@@ -2,13 +2,13 @@ const isProduction = process.env.NODE_ENV === 'production';
let
envAPi
=
{
// api: '//backstms-vcc3.liangkebang.net',
api
:
'
//backstms-
vcc
2.liangkebang.net
'
,
api
:
'
//backstms-
test
2.liangkebang.net
'
,
// kdspApi: '//yapi.quantgroups.com/mock/351',
// kdspApi: 'http://192.168.28.172:8042',
// kdspApi: 'https://kdsp-operation-vcc3.liangkebang.net',
kdspApi
:
'
https://kdsp-operation-
vcc
2.liangkebang.net
'
,
kdspApi
:
'
https://kdsp-operation-
test
2.liangkebang.net
'
,
qiniuHost
:
'
https://appsync.lkbang.net
'
,
opapiHost
:
'
https://opapi-
vcc
2.liangkebang.net
'
,
opapiHost
:
'
https://opapi-
test
2.liangkebang.net
'
,
};
let
prodApi
=
{
...
...
src/pages/afterSale/appeal/index.jsx
View file @
eae364ac
...
...
@@ -34,7 +34,8 @@ const Appeal = () => {
table
.
current
.
reload
();
}
};
const
openImgModal
=
imgList
=>
{
const
openImgModal
=
imgStr
=>
{
const
imgList
=
imgStr
?
imgStr
.
split
(
'
,
'
)
:
[];
if
(
!
imgList
.
length
)
{
notification
.
error
({
message
:
'
啊哦~没有数据!
'
,
...
...
src/pages/afterSale/appeal/staticdata.js
View file @
eae364ac
...
...
@@ -94,10 +94,10 @@ export function columns(res) {
dataIndex
:
'
proofs
'
,
key
:
'
proofs
'
,
hideInSearch
:
true
,
render
:
proofs
=>
{
const
list
=
proofs
&&
proofs
!==
'
-
'
?
proofs
.
split
(
'
,
'
)
:
[];
return
<
a
onClick
=
{()
=>
openImgModal
(
list
)}
>
查看凭证
<
/a>
;
}
,
render
:
(
_
,
row
)
=>
(
//
const list = proofs && proofs !== '-' ? proofs.split(',') : [];
<
a
onClick
=
{()
=>
openImgModal
(
row
.
proofs
)}
>
查看凭证
<
/a
>
)
,
},
{
title
:
'
申诉单创建时间
'
,
...
...
@@ -126,10 +126,10 @@ export function columns(res) {
dataIndex
:
'
supplement
'
,
key
:
'
supplement
'
,
hideInSearch
:
true
,
render
:
supplement
=>
{
const
list
=
supplement
&&
supplement
!==
'
-
'
?
supplement
.
split
(
'
,
'
)
:
[];
return
<
a
onClick
=
{()
=>
openImgModal
(
list
)}
>
查看补充资料
<
/a>
;
}
,
render
:
(
_
,
row
)
=>
(
//
const list = supplement && supplement !== '-' ? supplement.split(',') : [];
<
a
onClick
=
{()
=>
openImgModal
(
row
.
supplement
)}
>
查看补充资料
<
/a
>
)
,
},
{
title
:
'
协商结果
'
,
...
...
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