diff --git a/src/views/trials/trials-panel/attachments/attachment-management/index.vue b/src/views/trials/trials-panel/attachments/attachment-management/index.vue
index 9c647f09..eee1e3cd 100644
--- a/src/views/trials/trials-panel/attachments/attachment-management/index.vue
+++ b/src/views/trials/trials-panel/attachments/attachment-management/index.vue
@@ -176,10 +176,10 @@
>
{{
- $fd('TrainingStatus', !scope.row.IsDeleted)
+ $fd('TrainingStatus', scope.row.IsDeleted)
}}
{{
- $fd('TrainingStatus', !scope.row.IsDeleted)
+ $fd('TrainingStatus', scope.row.IsDeleted)
}}
diff --git a/src/views/trials/trials-panel/attachments/self-attachment/index.vue b/src/views/trials/trials-panel/attachments/self-attachment/index.vue
index 54570bff..90888a42 100644
--- a/src/views/trials/trials-panel/attachments/self-attachment/index.vue
+++ b/src/views/trials/trials-panel/attachments/self-attachment/index.vue
@@ -77,8 +77,8 @@
sortable="custom"
>
- {{ $fd('TrainingStatus', !scope.row.IsDeleted) }}
- {{ $fd('TrainingStatus', !scope.row.IsDeleted) }}
+ {{ $fd('TrainingStatus', scope.row.IsDeleted) }}
+ {{ $fd('TrainingStatus', scope.row.IsDeleted) }}
diff --git a/src/views/trials/trials-panel/setting/attachment/index.vue b/src/views/trials/trials-panel/setting/attachment/index.vue
index 2afacd59..10c2a9ce 100644
--- a/src/views/trials/trials-panel/setting/attachment/index.vue
+++ b/src/views/trials/trials-panel/setting/attachment/index.vue
@@ -33,7 +33,7 @@
v-for="item of $d.TrainingStatus"
:key="item.value"
:label="item.label"
- :value="!item.value"
+ :value="item.value"
/>
@@ -136,10 +136,10 @@
>
{{
- $fd('TrainingStatus', !scope.row.IsDeleted)
+ $fd('TrainingStatus', scope.row.IsDeleted)
}}
{{
- $fd('TrainingStatus', !scope.row.IsDeleted)
+ $fd('TrainingStatus', scope.row.IsDeleted)
}}