lilei 7 månader sedan
förälder
incheckning
b9443a3e8f
1 ändrade filer med 3 tillägg och 11 borttagningar
  1. 3 11
      src/views/setting/dataValidManagement/list.vue

+ 3 - 11
src/views/setting/dataValidManagement/list.vue

@@ -64,15 +64,7 @@
           </template>
           <!-- 错误信息 -->
           <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 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: 'bizNo', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
         { 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: '处理状态', 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: '操作', scopedSlots: { customRender: 'action' }, width: '10%', align: 'center' }
       ],