Browse Source

文案更改

loki.wu 10 months ago
parent
commit
91fb5b529f

+ 1 - 1
lib/pages/check/follow_up/controller.dart

@@ -111,7 +111,7 @@ class FollowUpController extends GetxController {
       if (state.followUpTime == null ||
           state.nextFollowUpTime == null ||
           state.followUpMode == null) {
-        PromptBox.toast("有必填项未填写,请检查");
+        PromptBox.toast("带*为必填项,不能为空");
         return false;
       }
     }

+ 1 - 1
lib/pages/check/widgets/configurable_card.dart

@@ -403,7 +403,7 @@ class _ConfigurableFormState extends State<ConfigurableCard> {
                           if (child.required ?? false) {
                             var value = formValue[child.key];
                             if (value == null || value.length <= 0) {
-                              PromptBox.toast("有必填项未填写,请检查");
+                              PromptBox.toast("带*为必填项,不能为空");
                               return;
                             }
                           }