diff --git a/lib/pages/bangumi/introduction/controller.dart b/lib/pages/bangumi/introduction/controller.dart index 83528454..f79d9ade 100644 --- a/lib/pages/bangumi/introduction/controller.dart +++ b/lib/pages/bangumi/introduction/controller.dart @@ -135,7 +135,7 @@ class BangumiIntroController extends GetxController { Future actionLikeVideo() async { var result = await VideoHttp.likeVideo(bvid: bvid, type: !hasLike.value); if (result['status']) { - SmartDialog.showToast(!hasLike.value ? 'η‚Ήθ΅žζˆεŠŸ πŸ‘' : 'ε–ζΆˆθ΅ž'); + SmartDialog.showToast(!hasLike.value ? 'η‚Ήθ΅žζˆεŠŸ' : 'ε–ζΆˆθ΅ž'); hasLike.value = !hasLike.value; bangumiDetail.value.stat!['likes'] = bangumiDetail.value.stat!['likes'] + (!hasLike.value ? 1 : -1); @@ -189,7 +189,7 @@ class BangumiIntroController extends GetxController { var res = await VideoHttp.coinVideo( bvid: bvid, multiply: _tempThemeValue); if (res['status']) { - SmartDialog.showToast('ζŠ•εΈζˆεŠŸ πŸ‘'); + SmartDialog.showToast('ζŠ•εΈζˆεŠŸ'); hasCoin.value = true; bangumiDetail.value.stat!['coins'] = bangumiDetail.value.stat!['coins'] + _tempThemeValue; @@ -224,7 +224,7 @@ class BangumiIntroController extends GetxController { delMediaIdsNew = []; // ι‡ζ–°θŽ·ε–ζ”Άθ—ηŠΆζ€ queryHasFavVideo(); - SmartDialog.showToast('βœ… ζ“δ½œζˆεŠŸ'); + SmartDialog.showToast('ζ“δ½œζˆεŠŸ'); Get.back(); } } diff --git a/lib/pages/video/detail/introduction/controller.dart b/lib/pages/video/detail/introduction/controller.dart index 805e2329..4a05e5f2 100644 --- a/lib/pages/video/detail/introduction/controller.dart +++ b/lib/pages/video/detail/introduction/controller.dart @@ -222,7 +222,7 @@ class VideoIntroController extends GetxController { if (result['status']) { // hasLike.value = result["data"] == 1 ? true : false; if (!hasLike.value) { - SmartDialog.showToast('η‚Ήθ΅žζˆεŠŸ πŸ‘'); + SmartDialog.showToast('η‚Ήθ΅žζˆεŠŸ'); hasLike.value = true; videoDetail.value.stat!.like = videoDetail.value.stat!.like! + 1; } else if (hasLike.value) { @@ -280,7 +280,7 @@ class VideoIntroController extends GetxController { var res = await VideoHttp.coinVideo( bvid: bvid, multiply: _tempThemeValue); if (res['status']) { - SmartDialog.showToast('ζŠ•εΈζˆεŠŸ πŸ‘'); + SmartDialog.showToast('ζŠ•εΈζˆεŠŸ'); hasCoin.value = true; videoDetail.value.stat!.coin = videoDetail.value.stat!.coin! + _tempThemeValue; @@ -342,7 +342,7 @@ class VideoIntroController extends GetxController { Get.back(); // ι‡ζ–°θŽ·ε–ζ”Άθ—ηŠΆζ€ await queryHasFavVideo(); - SmartDialog.showToast('βœ… ζ“δ½œζˆεŠŸ'); + SmartDialog.showToast('ζ“δ½œζˆεŠŸ'); } else { SmartDialog.showToast(result['msg']); } diff --git a/lib/pages/video/detail/reply/widgets/zan.dart b/lib/pages/video/detail/reply/widgets/zan.dart index 923416c8..391f325d 100644 --- a/lib/pages/video/detail/reply/widgets/zan.dart +++ b/lib/pages/video/detail/reply/widgets/zan.dart @@ -34,7 +34,7 @@ class _ZanButtonState extends State { type: widget.replyType!.index, oid: oid, rpid: rpid, action: action); // SmartDialog.dismiss(); if (res['status']) { - SmartDialog.showToast(replyItem.action == 0 ? 'η‚Ήθ΅žζˆεŠŸ πŸ‘' : 'ε–ζΆˆθ΅ž πŸ’”'); + SmartDialog.showToast(replyItem.action == 0 ? 'η‚Ήθ΅žζˆεŠŸ' : 'ε–ζΆˆθ΅ž'); if (action == 1) { replyItem.like = replyItem.like! + 1; replyItem.action = 1;