Authored by lin

调整页面显示

... ... @@ -128,7 +128,27 @@ export default function() {
},
{
title: '子账务类型',
key: 'subClearingTypes',
key: '',
align: 'center',
render: (h, params) => {
return (
<span class="table-header-req">
<poptip trigger="hover" placement="right-start">
<a>全部</a>
<div class="example-pop" slot="content">
<p>成交金额:{params.row.subShopAccount.lastPrice}</p>
<p>交易服务费:{params.row.subShopAccount.tradeServiceAmount}</p>
<p>优惠券结算:{params.row.subShopAccount.couponAmount}</p>
<p>红包结算:{params.row.subShopAccount.redPackageAmount}</p>
<p>VIP折扣:{params.row.subShopAccount.vipAmount}</p>
<p>交易实收:{params.row.subShopAccount.tradeRealIncome}</p>
<p>提现服务费:{params.row.subShopAccount.withdrawServiceAmount}</p>
<p>商家实收:{params.row.subShopAccount.shopRealIncome}</p>
</div>
</poptip>
</span>
);
}
},
{
title: '商家实收(元)',
... ...
... ... @@ -118,6 +118,7 @@ import moment from 'moment';
import { TransactionList } from './store';
import FinanceService from 'services/finance/finance-service';
const ClearingTypeName2Id = {
REVENUE: 1,
EXPEND: 2,
... ...