Commit 454d9d2b authored by 王安伟's avatar 王安伟

Merge branch 'func_eccs_2250' into test

parents 0875acd5 27f0a6d8
...@@ -107,8 +107,22 @@ export default { ...@@ -107,8 +107,22 @@ export default {
{ title: '收银', dataIndex: 'receiptTellerName', width: 120 }, { title: '收银', dataIndex: 'receiptTellerName', width: 120 },
{ title: '账单金额', dataIndex: 'actualAmount', width: 120 }, { title: '账单金额', dataIndex: 'actualAmount', width: 120 },
{ title: '回款金额', dataIndex: 'paidAmountEob', width: 120 }, { title: '回款金额', dataIndex: 'paidAmountEob', width: 120 },
{ title: '个人欠费', dataIndex: 'arrearsAmount', width: 120 }, {
{ title: '备注', dataIndex: 'remark', width: 180 }, title: '个人欠费',
dataIndex: 'arrearsAmount',
width: 120,
customRender: (val) => {
return <span style="color: red;">{val}</span>;
}
},
{
title: '备注',
dataIndex: 'remark',
width: 180,
customRender: (val) => {
return <span style="color: red;">{val}</span>;
}
},
{ title: '回款日期', dataIndex: 'eobBackDate', width: 120 }, { title: '回款日期', dataIndex: 'eobBackDate', width: 120 },
{ title: '回款编号', dataIndex: 'backMoneyNo', width: 120 }, { title: '回款编号', dataIndex: 'backMoneyNo', width: 120 },
{ title: 'EOB号', dataIndex: 'eobNo', width: 120 }, { title: 'EOB号', dataIndex: 'eobNo', width: 120 },
......
...@@ -384,13 +384,19 @@ export default { ...@@ -384,13 +384,19 @@ export default {
title: '个人欠费', title: '个人欠费',
dataIndex: 'arrearsAmountShow', dataIndex: 'arrearsAmountShow',
ellipsis: true, ellipsis: true,
width: 150 width: 150,
customRender: (val) => {
return <span style="color: red;">{val}</span>;
}
}, },
{ {
title: '备注', title: '备注',
dataIndex: 'remark', dataIndex: 'remark',
ellipsis: true, ellipsis: true,
width: 200 width: 200,
customRender: (val) => {
return <span style="color: red;">{val}</span>;
}
}, },
{ {
title: '未清余额', title: '未清余额',
...@@ -430,7 +436,7 @@ export default { ...@@ -430,7 +436,7 @@ export default {
<a-popover title="备注" trigger="click"> <a-popover title="备注" trigger="click">
<template slot="content"> <template slot="content">
<a-textarea <a-textarea
class="remark_inp" class="remark_inp red_inp"
v-model={row.remark} v-model={row.remark}
auto-size={{ minRows: 3, maxRows: 5 }} auto-size={{ minRows: 3, maxRows: 5 }}
allow-clear allow-clear
...@@ -439,7 +445,7 @@ export default { ...@@ -439,7 +445,7 @@ export default {
</template> </template>
<a-tooltip> <a-tooltip>
<template slot="title">{row.remark}</template> <template slot="title">{row.remark}</template>
<a-input v-model={row.remark} allow-clear disabled={!this.isEdit} /> <a-input class="red_inp" v-model={row.remark} allow-clear disabled={!this.isEdit} />
</a-tooltip> </a-tooltip>
</a-popover> </a-popover>
) : ( ) : (
...@@ -470,6 +476,7 @@ export default { ...@@ -470,6 +476,7 @@ export default {
customRender: (val, row) => { customRender: (val, row) => {
return ( return (
<a-input-number <a-input-number
class="red_inp"
v-model={row.arrearsAmount} v-model={row.arrearsAmount}
allow-clear allow-clear
disabled={!this.isEdit} disabled={!this.isEdit}
...@@ -969,4 +976,9 @@ export default { ...@@ -969,4 +976,9 @@ export default {
.remark_inp { .remark_inp {
width: 300px; width: 300px;
} }
.red_inp {
::v-deep .ant-input {
color: red;
}
}
</style> </style>
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