Browse Source

签约状态更改

finlay 10 months ago
parent
commit
51598e034e

+ 2 - 1
lib/pages/patient/list/view.dart

@@ -223,8 +223,9 @@ class PatientListPage extends GetView<PatientListController> {
                 ContractStateSelectLabelView(
                   ContractStateEnums: [
                     ContractStateEnum.Signed,
+                    ContractStateEnum.Cancelled,
                     ContractStateEnum.Unsigned,
-                    ContractStateEnum.Voided,
+                    ContractStateEnum.Expired,
                     ContractStateEnum.Refused,
                   ],
                   selectContractState:

+ 2 - 3
lib/pages/patient/list/widgets/crowd_select_label.dart

@@ -176,12 +176,11 @@ class _ContractStateSelectLabelState
   String selectContractState = "0";
 
   final Map<String, String> ContractStateMap = {
-    "All": "未选择",
     "Unsigned": "未签约",
-    "Cancelled": "已取消",
+    "Cancelled": "已解约",
     "Expired": "已过期",
     "Signed": "已签约",
-    "Voided": "已解约",
+    "Voided": "已作废",
     "Refused": "已拒签",
   };
   @override