Skip to content

Commit 36bc26f

Browse files
committed
修复接口名错误
1 parent 2880a07 commit 36bc26f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/point_system/api/issues_api.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class IssuesApi {
2121

2222
static Future<List<Issue>> getIssues(
2323
{int page = 1, int pageSize = 100}) async {
24-
List<dynamic> res = (await dio.get('/point_bloc',
24+
List<dynamic> res = (await dio.get('/point',
2525
queryParameters: {"page": page, "pageSize": pageSize}))
2626
.data['data'] as List;
2727
return res.map((e) => Issue.fromJson(json.decode(e['pointData']))).toList();

0 commit comments

Comments
 (0)