Skip to content

Commit

Permalink
Remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert-Stackflow committed Nov 5, 2024
1 parent 9defd0e commit 65a21bc
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 8 deletions.
1 change: 0 additions & 1 deletion lib/Api/login_api.dart
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ class LoginApi {

static Future<dynamic> loginByMailL(
String mail, String password, String tk) async {
print(CryptUtil.encryptDataByRSA(password, RSA_PUBLIC_KEY));
return RequestUtil.post(
"/dl/zj/mail/l",
domainType: DomainType.passport,
Expand Down
1 change: 0 additions & 1 deletion lib/Models/cloud_control.dart
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,6 @@ class Features {
});

factory Features.fromJson(Map<String, dynamic> json) {
print("dddddddddddddddddddd:$json");
return Features(
showDress: json['showDress'],
showTagDress: json['showTagDress'],
Expand Down
1 change: 0 additions & 1 deletion lib/Models/grain_response.dart
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ class GrainPostItem {
});

factory GrainPostItem.fromJson(Map<String, dynamic> json) {
print(json);
return GrainPostItem(
followed: json['followed'] ?? false,
liked: json['liked'] ?? false,
Expand Down
7 changes: 3 additions & 4 deletions lib/Screens/Info/user_detail_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,8 @@ class UserDetailScreenState extends State<UserDetailScreen>
"查看TA的商品",
icon: const Icon(Icons.shopping_bag_outlined),
onPressed: () {
RouteUtil.pushPanelCupertinoRoute(
context, UserMarketScreen(blogId: _fullBlogData!.blogInfo.blogId));
RouteUtil.pushPanelCupertinoRoute(context,
UserMarketScreen(blogId: _fullBlogData!.blogInfo.blogId));
},
),
if (infoMode == InfoMode.other) ...[
Expand Down Expand Up @@ -409,7 +409,6 @@ class UserDetailScreenState extends State<UserDetailScreen>
if (value['code'] != 200) {
IToast.showTop(value['msg']);
} else if (value['data']['showCaseList'] != null) {
print(value['data']['showCaseList']);
showCases = (value['data']['showCaseList'] as List)
.map((e) => ShowCaseItem.fromJson(e))
.toList();
Expand Down Expand Up @@ -1032,7 +1031,7 @@ class UserDetailScreenState extends State<UserDetailScreen>
);
};
} else {
print(item.toJson());
ILogger.info("Loftify", item.toJson());
}
return ItemBuilder.buildClickItem(
GestureDetector(
Expand Down
1 change: 0 additions & 1 deletion lib/Widgets/Shake/shake_animation_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,6 @@ class _ShakeAnimationState extends State<ShakeAnimationWidget>
///有次数限定执行
if (_shakeCurrentCount < _shakeTotalCount) {
///未执行够次数时继续执行
print("dismissed");
_animationController.forward();
} else {
if (widget.shakeAnimationController != null) {
Expand Down

0 comments on commit 65a21bc

Please sign in to comment.