mod: 用户登录状态msg取值
This commit is contained in:
@ -131,13 +131,13 @@ class WebviewController extends GetxController {
|
|||||||
Get.back();
|
Get.back();
|
||||||
} else {
|
} else {
|
||||||
// 获取用户信息失败
|
// 获取用户信息失败
|
||||||
SmartDialog.showToast(result.msg);
|
SmartDialog.showToast(result['msg']);
|
||||||
Clipboard.setData(ClipboardData(text: result.msg.toString()));
|
Clipboard.setData(ClipboardData(text: result['msg']));
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
SmartDialog.showNotify(msg: e.toString(), notifyType: NotifyType.warning);
|
SmartDialog.showNotify(msg: e.toString(), notifyType: NotifyType.warning);
|
||||||
content = content + e.toString();
|
content = content + e.toString();
|
||||||
}
|
|
||||||
Clipboard.setData(ClipboardData(text: content));
|
Clipboard.setData(ClipboardData(text: content));
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user