diff --git a/src/views/trials/trials-panel/trial-summary/audit-record/index.vue b/src/views/trials/trials-panel/trial-summary/audit-record/index.vue
index 37e3896d..6a27c9da 100644
--- a/src/views/trials/trials-panel/trial-summary/audit-record/index.vue
+++ b/src/views/trials/trials-panel/trial-summary/audit-record/index.vue
@@ -348,7 +348,7 @@
{{$t('trials:auditRecord:title:viewDetail')}}
-
+
{{$t('trials:auditRecord:title:viewImage')}}{{scope.row.oldValue instanceof Array ? `(${scope.row.oldValue.length})` : ''}}
@@ -377,7 +377,7 @@
{{$t('trials:auditRecord:title:viewDetail')}}
-
+
{{$t('trials:auditRecord:title:viewImage')}}{{scope.row.newValue instanceof Array ? `(${scope.row.newValue.length})` : ''}}
@@ -672,7 +672,7 @@
{{$t('trials:auditRecord:title:viewDetail')}}
-
+
{{$t('trials:auditRecord:title:viewImage')}}{{scope.row.oldValue instanceof Array ? `(${scope.row.oldValue.length})` : ''}}
@@ -707,7 +707,7 @@
{{$t('trials:auditRecord:title:viewDetail')}}
-
+
{{$t('trials:auditRecord:title:viewImage')}}{{scope.row.newValue instanceof Array ? `(${scope.row.newValue.length})` : ''}}
@@ -1029,7 +1029,7 @@ export default {
key: v.Code,
Enum: v.ValueCN,
newValue: obj[v.Code] ? obj[v.Code] : '--',
- oldValue: upObj[v.Code] ? upObj[v.Code] : '--'
+ oldValue: upObj[v.Code].length > 0 ? upObj[v.Code] : '--'
}
}
item.DataType = v.DataType