Commit aaf691f5 authored by 季圣华's avatar 季圣华
Browse files

给客户供应商对账单的标题增加提示

parent 86a78799
......@@ -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",
......
......@@ -51,11 +51,11 @@
<a @click="myHandleDetail(record)">{{record.number}}</a>
</span>
<span slot="customTitle">
实际欠款
<a-tooltip title="实际欠款=本单欠款-退货单欠款(主要针对存在退货的情况)">
<a-icon type="question-circle" />
</a-tooltip>
</span>
实际欠款
<a-tooltip title="实际欠款=本单欠款-退货单欠款(主要针对存在退货的情况)">
<a-icon type="question-circle" />
</a-tooltip>
</span>
</a-table>
</section>
<!-- table区域-end -->
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment