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
Email Patches
Plain Diff
Browse Files
Authored by
zhangwenxue
2019-08-22 10:52:04 +0800
Commit
a0e392f4801aeefe95620649acb135ca827eb9d8
1 parent
7b42ae18
feat(franchise): fix table title, field value
API changed
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
9 deletions
app/pages/finance/franchise-clearing/store/detail.js
app/pages/finance/franchise-payment/store/detail.js
app/pages/finance/franchise-clearing/store/detail.js
View file @
a0e392f
...
...
@@ -63,12 +63,9 @@ export default function() {
align
:
'center'
,
},
{
title
:
'供应商应得单价'
,
key
:
'clearingPrice'
,
title
:
'供应商应得'
,
key
:
'clearingPriceSum'
,
align
:
'center'
,
render
(
h
,
params
)
{
return
(
params
.
row
.
clearingPrice
*
params
.
row
.
salesNums
).
toFixed
(
2
);
},
},
{
title
:
'审核状态'
,
...
...
app/pages/finance/franchise-payment/store/detail.js
View file @
a0e392f
...
...
@@ -48,12 +48,9 @@ export default function() {
align
:
'center'
,
},
{
title
:
'
销售
供应商应得'
,
title
:
'供应商应得'
,
key
:
'paymentAmount'
,
align
:
'center'
,
render
(
h
,
params
)
{
return
(
params
.
row
.
salesNums
*
params
.
row
.
paymentAmount
).
toFixed
(
2
);
},
},
{
title
:
'付款状态'
,
...
...
Please
register
or
login
to post a comment