LiuJiLong

Results 2 issues of LiuJiLong

**Describe the bug** I tried to debug javascript with safari for iOS target and macOS target. The Safari connected to the JSC successfully. I can see the console, view the...

rendering

目前的很多接口(注册,登录,更改密码)的返回值是Future。在上层没法做状态展示。 应该统一封装一个返回结果的类。 ```dart class JMResult { T result; int status; String description; } ``` 然后修改方法的返回值: ```dart Future login({ @required String username, @required String password, }) async {} Future getMyInfo() async...