|
@@ -64,15 +64,7 @@
|
|
</template>
|
|
</template>
|
|
<!-- 错误信息 -->
|
|
<!-- 错误信息 -->
|
|
<template slot="errInfo" slot-scope="text, record">
|
|
<template slot="errInfo" slot-scope="text, record">
|
|
- <div v-if="record.resultInfo">
|
|
|
|
- <a-popover trigger="hover">
|
|
|
|
- <template slot="content">
|
|
|
|
- {{ record.resultInfo }}
|
|
|
|
- </template>
|
|
|
|
- <div>{{ record.resultInfo }}</div>
|
|
|
|
- </a-popover>
|
|
|
|
- </div>
|
|
|
|
- <div v-else>--</div>
|
|
|
|
|
|
+ {{ record.disposeDesc }}
|
|
</template>
|
|
</template>
|
|
<!-- 验证结果 -->
|
|
<!-- 验证结果 -->
|
|
<template slot="resultType" slot-scope="text, record">
|
|
<template slot="resultType" slot-scope="text, record">
|
|
@@ -136,10 +128,10 @@ export default {
|
|
{ title: '校验内容', dataIndex: 'validContent', width: '14%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '校验内容', dataIndex: 'validContent', width: '14%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '业务编号', dataIndex: 'bizNo', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '业务编号', dataIndex: 'bizNo', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '校验结果', dataIndex: 'resultType', scopedSlots: { customRender: 'resultType' }, width: '6%', align: 'center' },
|
|
{ title: '校验结果', dataIndex: 'resultType', scopedSlots: { customRender: 'resultType' }, width: '6%', align: 'center' },
|
|
- { title: '错误信息', scopedSlots: { customRender: 'errInfo' }, width: '14%', align: 'center', ellipsis: true },
|
|
|
|
|
|
+ { title: '错误信息', dataIndex: 'resultInfo', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '校验时间', dataIndex: 'checkDate', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '校验时间', dataIndex: 'checkDate', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '处理状态', scopedSlots: { customRender: 'syncStatus' }, width: '6%', align: 'center' },
|
|
{ title: '处理状态', scopedSlots: { customRender: 'syncStatus' }, width: '6%', align: 'center' },
|
|
- { title: '处理描述', dataIndex: 'disposeDesc', width: '14%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
|
|
|
+ { title: '处理描述', scopedSlots: { customRender: 'errInfo' }, width: '18%', align: 'center' },
|
|
{ title: '处理时间', dataIndex: 'disposeDate', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '处理时间', dataIndex: 'disposeDate', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '操作', scopedSlots: { customRender: 'action' }, width: '10%', align: 'center' }
|
|
{ title: '操作', scopedSlots: { customRender: 'action' }, width: '10%', align: 'center' }
|
|
],
|
|
],
|