Merge branch 'fix'

This commit is contained in:
guozhigq
2024-11-16 22:51:16 +08:00
3 changed files with 4 additions and 3 deletions

View File

@ -47,7 +47,7 @@ class _DynamicForwardPageState extends State<DynamicForwardPage> {
widget.cb?.call();
_onClose();
} else {
SmartDialog.showToast(res['message']);
SmartDialog.showToast(res['msg']);
}
}

View File

@ -117,7 +117,7 @@ class _MemberArchivePageState extends State<MemberArchivePage> {
}
} else {
return HttpError(
errMsg: snapshot.data['msg'],
errMsg: snapshot.data?['msg'] ?? '请求异常',
fn: () {},
);
}