Skip to content

Commit 65a21bc

Browse files
Remove print
1 parent 9defd0e commit 65a21bc

File tree

5 files changed

+3
-8
lines changed

5 files changed

+3
-8
lines changed

lib/Api/login_api.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ class LoginApi {
111111

112112
static Future<dynamic> loginByMailL(
113113
String mail, String password, String tk) async {
114-
print(CryptUtil.encryptDataByRSA(password, RSA_PUBLIC_KEY));
115114
return RequestUtil.post(
116115
"/dl/zj/mail/l",
117116
domainType: DomainType.passport,

lib/Models/cloud_control.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,6 @@ class Features {
294294
});
295295

296296
factory Features.fromJson(Map<String, dynamic> json) {
297-
print("dddddddddddddddddddd:$json");
298297
return Features(
299298
showDress: json['showDress'],
300299
showTagDress: json['showTagDress'],

lib/Models/grain_response.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ class GrainPostItem {
9696
});
9797

9898
factory GrainPostItem.fromJson(Map<String, dynamic> json) {
99-
print(json);
10099
return GrainPostItem(
101100
followed: json['followed'] ?? false,
102101
liked: json['liked'] ?? false,

lib/Screens/Info/user_detail_screen.dart

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -239,8 +239,8 @@ class UserDetailScreenState extends State<UserDetailScreen>
239239
"查看TA的商品",
240240
icon: const Icon(Icons.shopping_bag_outlined),
241241
onPressed: () {
242-
RouteUtil.pushPanelCupertinoRoute(
243-
context, UserMarketScreen(blogId: _fullBlogData!.blogInfo.blogId));
242+
RouteUtil.pushPanelCupertinoRoute(context,
243+
UserMarketScreen(blogId: _fullBlogData!.blogInfo.blogId));
244244
},
245245
),
246246
if (infoMode == InfoMode.other) ...[
@@ -409,7 +409,6 @@ class UserDetailScreenState extends State<UserDetailScreen>
409409
if (value['code'] != 200) {
410410
IToast.showTop(value['msg']);
411411
} else if (value['data']['showCaseList'] != null) {
412-
print(value['data']['showCaseList']);
413412
showCases = (value['data']['showCaseList'] as List)
414413
.map((e) => ShowCaseItem.fromJson(e))
415414
.toList();
@@ -1032,7 +1031,7 @@ class UserDetailScreenState extends State<UserDetailScreen>
10321031
);
10331032
};
10341033
} else {
1035-
print(item.toJson());
1034+
ILogger.info("Loftify", item.toJson());
10361035
}
10371036
return ItemBuilder.buildClickItem(
10381037
GestureDetector(

lib/Widgets/Shake/shake_animation_widget.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,6 @@ class _ShakeAnimationState extends State<ShakeAnimationWidget>
145145
///有次数限定执行
146146
if (_shakeCurrentCount < _shakeTotalCount) {
147147
///未执行够次数时继续执行
148-
print("dismissed");
149148
_animationController.forward();
150149
} else {
151150
if (widget.shakeAnimationController != null) {

0 commit comments

Comments
 (0)