fix: 统计分析自测问题修复。
This commit is contained in:
@@ -136,6 +136,11 @@
|
||||
</el-table-column>
|
||||
<el-table-column label="还款日期" align="center" prop="time" />
|
||||
<el-table-column label="待还款金额" align="center" prop="value" />
|
||||
<el-table-column prop="detail" label="待还款明细" width="700" v-if="queryParams.type === 1">
|
||||
<template #default="scope">
|
||||
<span v-html="formatMultiLineData(scope.row.detail)"></span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
</div>
|
||||
@@ -220,6 +225,11 @@ function getCreditCardList() {
|
||||
})
|
||||
}
|
||||
|
||||
function formatMultiLineData(data) {
|
||||
if (data != null) {
|
||||
return data.replace(/<br\/>/g, '<br/>')
|
||||
}
|
||||
}
|
||||
const handleTimeChange = (type) => {
|
||||
queryParams.value.time = null
|
||||
if (type === 1) {
|
||||
|
||||
Reference in New Issue
Block a user