Commit d341f7c7 authored by 郭小龙-DEL's avatar 郭小龙-DEL

Merge branch 'func_eccs_2376' into test

parents b46c671b cbc43355
...@@ -1049,3 +1049,11 @@ button::-moz-focus-inner { ...@@ -1049,3 +1049,11 @@ button::-moz-focus-inner {
.p-r() { .p-r() {
position: relative; position: relative;
} }
.blue-text{
color: #2B63FF;
}
.red-text{
color: red;
}
...@@ -88,12 +88,9 @@ ...@@ -88,12 +88,9 @@
</a-form-model-item> </a-form-model-item>
</a-col> </a-col>
<a-col :xl="6" :lg="3" :sm="3"> <a-col :xl="6" :lg="3" :sm="3">
<!-- <a-form-model-item :label="` `"> --> <div class="residue-amount">未清余额合计:{{ ciReceiptTotalVo.residueBackAmount || 0 }} (共计{{
<div class="residue-amount">未清余额合计:{{ ciReceiptTotalVo.residueBackAmount || 0 }}(共计{{ ciReceiptTotalVo.totalNum || 0 }}<span v-if="ciReceiptTotalVo.invalidNum">,其中:无效 <span style="color: red;">{{ ciReceiptTotalVo.invalidNum || 0 }}</span></span>)
ciReceiptTotalVo.totalNum || 0 }}条,其中:无效 <span style="color: red;">{{ ciReceiptTotalVo.invalidNum || </div>
0 }}</span> 条)</div>
<!-- </a-form-model-item> -->
</a-col> </a-col>
<a-col :xl="6" :lg="3" :sm="3" class="none-label"> <a-col :xl="6" :lg="3" :sm="3" class="none-label">
<a-form-model-item label="button"> <a-form-model-item label="button">
......
...@@ -252,7 +252,4 @@ export default { ...@@ -252,7 +252,4 @@ export default {
.ant-btn .icon-class { .ant-btn .icon-class {
.mg-r(10); .mg-r(10);
} }
.red-text{
color: red;
}
</style> </style>
...@@ -51,7 +51,10 @@ ...@@ -51,7 +51,10 @@
</a-col> </a-col>
<a-col :xl="4" :lg="6" :sm="12" class="none-label"> <a-col :xl="4" :lg="6" :sm="12" class="none-label">
<a-form-model-item label="账单回款金额合计"> <a-form-model-item label="账单回款金额合计">
<div>共计{{ ciReceiptTotalVo.totalNum || 0 }}条,其中:无效 <span style="color: red;">{{ ciReceiptTotalVo.invalidNum || 0 }}</span></div> <div>
共计{{ ciReceiptTotalVo.totalNum || 0 }}
<span v-if="ciReceiptTotalVo.invalidNum">,其中:无效 <span style="color: red;">{{ ciReceiptTotalVo.invalidNum || 0 }}</span></span>
</div>
</a-form-model-item> </a-form-model-item>
...@@ -114,7 +117,10 @@ export default { ...@@ -114,7 +117,10 @@ export default {
{ title: '账单编号', dataIndex: 'receiptNo', width: 120 }, { title: '账单编号', dataIndex: 'receiptNo', width: 120 },
{ title: '账单日期', dataIndex: 'receiptDate', width: 120 }, { title: '账单日期', dataIndex: 'receiptDate', width: 120 },
{ title: '收银', dataIndex: 'receiptTellerName', width: 120 }, { title: '收银', dataIndex: 'receiptTellerName', width: 120 },
{ title: '账单金额', dataIndex: 'actualAmount', width: 120 }, {
title: '账单金额', dataIndex: 'actualAmount', width: 120,
// customRender: val => <span class="blue-text">{val}</span>
},
{ title: '回款金额', dataIndex: 'paidAmountEob', width: 120 }, { title: '回款金额', dataIndex: 'paidAmountEob', width: 120 },
{ {
title: '个人欠费', title: '个人欠费',
......
...@@ -144,7 +144,7 @@ ...@@ -144,7 +144,7 @@
</a-form-model> </a-form-model>
<template v-if="activeKey === '1'"> <template v-if="activeKey === '1'">
<div class="bill-content"> <div class="bill-content">
<div class="checked-count">已勾选账单:{{ selectedRowKeys.length || 0 }}<span v-if="selectedRows.filter(v=> v.status == 2).length != 0">,其中:无效 <span style="color: red;">{{ selectedRows.filter(v=> v.status == 2) || 0 }}</span></span></div> <div class="checked-count">已勾选账单:{{ selectedRowKeys.length || 0 }}<span v-if="selectedRows.filter(v=> v.status == 2).length != 0">,其中:无效 <span style="color: red;">{{ selectedRows.filter(v=> v.status == 2).length || 0 }}</span></span></div>
<a-tabs type="card" v-model="activeKey1"> <a-tabs type="card" v-model="activeKey1">
<a-tab-pane v-for="pane in panes1" :key="pane.key" :tab="pane.title"> <a-tab-pane v-for="pane in panes1" :key="pane.key" :tab="pane.title">
<div> <div>
......
Markdown is supported
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