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

fix 文案优化

parent 1cc72841
......@@ -1049,3 +1049,11 @@ button::-moz-focus-inner {
.p-r() {
position: relative;
}
.blue-text{
color: #2B63FF;
}
.red-text{
color: red;
}
......@@ -88,12 +88,9 @@
</a-form-model-item>
</a-col>
<a-col :xl="6" :lg="3" :sm="3">
<!-- <a-form-model-item :label="` `"> -->
<div class="residue-amount">未清余额合计:{{ ciReceiptTotalVo.residueBackAmount || 0 }}(共计{{
ciReceiptTotalVo.totalNum || 0 }}条,其中:无效 <span style="color: red;">{{ ciReceiptTotalVo.invalidNum ||
0 }}</span> 条)</div>
<!-- </a-form-model-item> -->
<div class="residue-amount">未清余额合计:{{ ciReceiptTotalVo.residueBackAmount || 0 }} (共计{{
ciReceiptTotalVo.totalNum || 0 }}<span v-if="ciReceiptTotalVo.invalidNum">,其中:无效 <span style="color: red;">{{ ciReceiptTotalVo.invalidNum || 0 }}</span></span>)
</div>
</a-col>
<a-col :xl="6" :lg="3" :sm="3" class="none-label">
<a-form-model-item label="button">
......
......@@ -252,7 +252,4 @@ export default {
.ant-btn .icon-class {
.mg-r(10);
}
.red-text{
color: red;
}
</style>
......@@ -51,7 +51,10 @@
</a-col>
<a-col :xl="4" :lg="6" :sm="12" class="none-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>
......@@ -114,7 +117,10 @@ export default {
{ title: '账单编号', dataIndex: 'receiptNo', width: 120 },
{ title: '账单日期', dataIndex: 'receiptDate', 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: '个人欠费',
......
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