1.个人赛点击查询检查 TOKEN 是否失效
2.APP 图标替换
@@ -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"
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 5.0 KiB |
|
After Width: | Height: | Size: 5.0 KiB |
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 2.8 KiB |
|
Before Width: | Height: | Size: 6.0 KiB After Width: | Height: | Size: 7.4 KiB |
|
After Width: | Height: | Size: 7.4 KiB |
|
Before Width: | Height: | Size: 9.9 KiB After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 21 KiB |
|
After Width: | Height: | Size: 21 KiB |
@@ -61,14 +61,15 @@ class _EventInfoPageState extends ConsumerState<EventInfoPage> {
|
|||||||
);
|
);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
try {
|
||||||
await ref
|
await ref
|
||||||
.read(competitionTeamsServerProvider)
|
.read(eventInfoProvider.notifier)
|
||||||
.fetchTeamDetail(
|
.loadRegistrationList(
|
||||||
itemId: item.itemId,
|
request: PlayerRegistrationListReq(userId: widget.playerId),
|
||||||
eventId: item.eventId,
|
|
||||||
scheduleId: item.scheduleId,
|
|
||||||
opponentId: item.opponentId,
|
|
||||||
);
|
);
|
||||||
|
} catch (e) {
|
||||||
|
print(e);
|
||||||
|
}
|
||||||
|
|
||||||
if (!mounted) return;
|
if (!mounted) return;
|
||||||
|
|
||||||
|
|||||||