瀏覽代碼

文案更改

loki.wu 10 月之前
父節點
當前提交
91fb5b529f
共有 2 個文件被更改,包括 2 次插入2 次删除
  1. 1 1
      lib/pages/check/follow_up/controller.dart
  2. 1 1
      lib/pages/check/widgets/configurable_card.dart

+ 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;
                             }
                           }