diff --git a/src/views/modules/communityParty/screenreportenterprise/index.vue b/src/views/modules/communityParty/screenreportenterprise/index.vue
index 0084268..2fce45a 100644
--- a/src/views/modules/communityParty/screenreportenterprise/index.vue
+++ b/src/views/modules/communityParty/screenreportenterprise/index.vue
@@ -72,13 +72,15 @@
label="类型"
>
-
+
{{
scope.row.placeCategory
- ? types[scope.row.placeCategory-1].label
- : "-"
+ ? types.filter(item=>item.value === scope.row.placeCategory)[0]
+ .label
+ : "--"
}}
+ --