Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yoho-shop-manage
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Plain Diff
Browse Files
Authored by
陈峰
2017-05-09 15:09:52 +0800
Commit
b6ae0797df43016028af04e1f817274f3e985581
2 parents
99bb66eb
a7b887c8
Merge branch 'release/1.0' of
http://git.yoho.cn/fe/yoho-shop-manage
into release/1.0
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletions
app/pages/product/offsale/store/index.js
app/pages/product/onsale/store/index.js
app/pages/product/offsale/store/index.js
View file @
b6ae079
...
...
@@ -201,7 +201,11 @@ export default () => {
title
:
'审核状态'
,
key
:
'verify'
,
align
:
'center'
,
render
(
row
,
column
,
index
)
{
render
(
row
)
{
if
(
row
.
auditStatus
===
2
)
{
return
`
$
{
auditStatus
[
row
.
auditStatus
]}(
$
{
row
.
rejectReason
})
`
}
return
`
$
{
auditStatus
[
row
.
auditStatus
]}
`
}
},
...
...
app/pages/product/onsale/store/index.js
View file @
b6ae079
...
...
@@ -77,6 +77,10 @@ export default () => {
key
:
'verify'
,
align
:
'center'
,
render
(
row
)
{
if
(
row
.
auditStatus
===
2
)
{
return
`
$
{
auditStatus
[
row
.
auditStatus
]}(
$
{
row
.
rejectReason
})
`
}
return
`
$
{
auditStatus
[
row
.
auditStatus
]}
`
}
},
...
...
Please
register
or
login
to post a comment