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

This commit is contained in:
季圣华
2022-11-20 12:30:01 +08:00
parent 86a787992a
commit aaf691f587
3 changed files with 23 additions and 7 deletions

View File

@@ -60,6 +60,12 @@
<span slot="action" slot-scope="text, record"> <span slot="action" slot-scope="text, record">
<a @click="showDebtAccountList(record)">{{record.id?'详情':''}}</a> <a @click="showDebtAccountList(record)">{{record.id?'详情':''}}</a>
</span> </span>
<span slot="customTitle">
期末应收
<a-tooltip title="期末应收=期初应收+本期欠款-本期收款">
<a-icon type="question-circle" />
</a-tooltip>
</span>
</a-table> </a-table>
<a-row :gutter="24" style="margin-top: 8px;text-align:right;"> <a-row :gutter="24" style="margin-top: 8px;text-align:right;">
<a-col :md="24" :sm="24"> <a-col :md="24" :sm="24">
@@ -147,7 +153,9 @@
{title: '期初应收', dataIndex: 'preNeed', width: 80}, {title: '期初应收', dataIndex: 'preNeed', width: 80},
{title: '本期欠款', dataIndex: 'debtMoney', width: 80}, {title: '本期欠款', dataIndex: 'debtMoney', width: 80},
{title: '本期收款', dataIndex: 'backMoney', width: 80}, {title: '本期收款', dataIndex: 'backMoney', width: 80},
{title: '期末应收', dataIndex: 'allNeed', width: 80} {dataIndex: 'allNeed', width: 80,
slots: { title: 'customTitle' }
}
], ],
url: { url: {
list: "/depotHead/getStatementAccount", list: "/depotHead/getStatementAccount",

View File

@@ -60,6 +60,12 @@
<span slot="action" slot-scope="text, record"> <span slot="action" slot-scope="text, record">
<a @click="showDebtAccountList(record)">{{record.id?'详情':''}}</a> <a @click="showDebtAccountList(record)">{{record.id?'详情':''}}</a>
</span> </span>
<span slot="customTitle">
期末应付
<a-tooltip title="期末应付=期初应付+本期欠款-本期付款">
<a-icon type="question-circle" />
</a-tooltip>
</span>
</a-table> </a-table>
<a-row :gutter="24" style="margin-top: 8px;text-align:right;"> <a-row :gutter="24" style="margin-top: 8px;text-align:right;">
<a-col :md="24" :sm="24"> <a-col :md="24" :sm="24">
@@ -147,7 +153,9 @@
{title: '期初应付', dataIndex: 'preNeed', width: 80}, {title: '期初应付', dataIndex: 'preNeed', width: 80},
{title: '本期欠款', dataIndex: 'debtMoney', width: 80}, {title: '本期欠款', dataIndex: 'debtMoney', width: 80},
{title: '本期付款', dataIndex: 'backMoney', width: 80}, {title: '本期付款', dataIndex: 'backMoney', width: 80},
{title: '期末应付', dataIndex: 'allNeed', width: 80} {dataIndex: 'allNeed', width: 80,
slots: { title: 'customTitle' }
}
], ],
url: { url: {
list: "/depotHead/getStatementAccount", list: "/depotHead/getStatementAccount",

View File

@@ -51,11 +51,11 @@
<a @click="myHandleDetail(record)">{{record.number}}</a> <a @click="myHandleDetail(record)">{{record.number}}</a>
</span> </span>
<span slot="customTitle"> <span slot="customTitle">
实际欠款 实际欠款
<a-tooltip title="实际欠款=本单欠款-退货单欠款主要针对存在退货的情况"> <a-tooltip title="实际欠款=本单欠款-退货单欠款主要针对存在退货的情况">
<a-icon type="question-circle" /> <a-icon type="question-circle" />
</a-tooltip> </a-tooltip>
</span> </span>
</a-table> </a-table>
</section> </section>
<!-- table区域-end --> <!-- table区域-end -->