1.个人赛点击查询检查 TOKEN 是否失效

2.APP 图标替换
This commit is contained in:
2026-08-10 15:12:37 +08:00
parent 9da043e68a
commit 19c66efff3
12 changed files with 10 additions and 8 deletions
+1
View File
@@ -22,6 +22,7 @@
android:label="SportsX裁判工作台" android:label="SportsX裁判工作台"
android:name="${applicationName}" android:name="${applicationName}"
android:icon="@mipmap/ic_launcher" android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
android:usesCleartextTraffic="true"> android:usesCleartextTraffic="true">
<activity <activity
android:name=".MainActivity" android:name=".MainActivity"
Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.0 KiB

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.9 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

@@ -61,14 +61,15 @@ class _EventInfoPageState extends ConsumerState<EventInfoPage> {
); );
return; return;
} }
await ref try {
.read(competitionTeamsServerProvider) await ref
.fetchTeamDetail( .read(eventInfoProvider.notifier)
itemId: item.itemId, .loadRegistrationList(
eventId: item.eventId, request: PlayerRegistrationListReq(userId: widget.playerId),
scheduleId: item.scheduleId, );
opponentId: item.opponentId, } catch (e) {
); print(e);
}
if (!mounted) return; if (!mounted) return;