diff --git a/src/views/modules/communityService/gxxq/index.vue b/src/views/modules/communityService/gxxq/index.vue
index 95a898431..1a3020439 100644
--- a/src/views/modules/communityService/gxxq/index.vue
+++ b/src/views/modules/communityService/gxxq/index.vue
@@ -152,7 +152,7 @@
align="center"
>
- {{ scope.row.assignFlag == "0" ? "未指派" : "已指派" }}
+ {{ scope.row.assignFlag == "0" ? "未指派" : (scope.row.assignFlag == "1" ? "已指派" : "已完成") }}
查看
-
- 删除
@@ -293,17 +293,17 @@ export default {
},
statusArray: [
{
- value: 2,
- label: "待处理",
+ value: 0,
+ label: "未指派",
},
{
value: 1,
- label: "已派单",
+ label: "已指派",
},
{
- value: 0,
+ value: 2,
label: "已完成",
- },
+ }
],
endPickerOptions: {
disabledDate: endDisabledDate,