|
@@ -97,6 +97,7 @@ class CreatePatientController extends FControllerBase with HomeNavMixin {
|
|
|
busy = false;
|
|
|
await queryIsNeedFaceInput();
|
|
|
Future.delayed(
|
|
|
+ ///这个800ms不能移除,移除后会导致建档失败
|
|
|
const Duration(milliseconds: 800),
|
|
|
() {
|
|
|
state.reset(); // 重置状态
|
|
@@ -111,6 +112,7 @@ class CreatePatientController extends FControllerBase with HomeNavMixin {
|
|
|
// Get.find<HomeController>().switchNavByName("/patient/list");
|
|
|
// Get.put(PatientListController());
|
|
|
Future.delayed(
|
|
|
+ ///这个800ms不能移除,移除后会导致建档失败
|
|
|
const Duration(milliseconds: 800),
|
|
|
() {
|
|
|
Get.find<PatientListController>().gotoDetail(code);
|