给客户供应商对账单的标题增加提示
This commit is contained in:
@@ -60,6 +60,12 @@
|
||||
<span slot="action" slot-scope="text, record">
|
||||
<a @click="showDebtAccountList(record)">{{record.id?'详情':''}}</a>
|
||||
</span>
|
||||
<span slot="customTitle">
|
||||
期末应收
|
||||
<a-tooltip title="期末应收=期初应收+本期欠款-本期收款">
|
||||
<a-icon type="question-circle" />
|
||||
</a-tooltip>
|
||||
</span>
|
||||
</a-table>
|
||||
<a-row :gutter="24" style="margin-top: 8px;text-align:right;">
|
||||
<a-col :md="24" :sm="24">
|
||||
@@ -147,7 +153,9 @@
|
||||
{title: '期初应收', dataIndex: 'preNeed', width: 80},
|
||||
{title: '本期欠款', dataIndex: 'debtMoney', width: 80},
|
||||
{title: '本期收款', dataIndex: 'backMoney', width: 80},
|
||||
{title: '期末应收', dataIndex: 'allNeed', width: 80}
|
||||
{dataIndex: 'allNeed', width: 80,
|
||||
slots: { title: 'customTitle' }
|
||||
}
|
||||
],
|
||||
url: {
|
||||
list: "/depotHead/getStatementAccount",
|
||||
|
||||
@@ -60,6 +60,12 @@
|
||||
<span slot="action" slot-scope="text, record">
|
||||
<a @click="showDebtAccountList(record)">{{record.id?'详情':''}}</a>
|
||||
</span>
|
||||
<span slot="customTitle">
|
||||
期末应付
|
||||
<a-tooltip title="期末应付=期初应付+本期欠款-本期付款">
|
||||
<a-icon type="question-circle" />
|
||||
</a-tooltip>
|
||||
</span>
|
||||
</a-table>
|
||||
<a-row :gutter="24" style="margin-top: 8px;text-align:right;">
|
||||
<a-col :md="24" :sm="24">
|
||||
@@ -147,7 +153,9 @@
|
||||
{title: '期初应付', dataIndex: 'preNeed', width: 80},
|
||||
{title: '本期欠款', dataIndex: 'debtMoney', width: 80},
|
||||
{title: '本期付款', dataIndex: 'backMoney', width: 80},
|
||||
{title: '期末应付', dataIndex: 'allNeed', width: 80}
|
||||
{dataIndex: 'allNeed', width: 80,
|
||||
slots: { title: 'customTitle' }
|
||||
}
|
||||
],
|
||||
url: {
|
||||
list: "/depotHead/getStatementAccount",
|
||||
|
||||
Reference in New Issue
Block a user