opt pages

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-06-06 13:46:39 +08:00
parent b149ee4998
commit 4a00b45c5c
43 changed files with 261 additions and 227 deletions

View File

@@ -75,7 +75,7 @@ class ArticleController extends ReplyController<MainListReply> {
_queryContent();
}
Future<bool> queryOpus(opusId) async {
Future<bool> queryOpus(String opusId) async {
final res = await DynamicsHttp.opusDetail(opusId: opusId);
if (res.isSuccess) {
final opusData = res.data;
@@ -104,7 +104,7 @@ class ArticleController extends ReplyController<MainListReply> {
return false;
}
Future<bool> queryRead(cvid) async {
Future<bool> queryRead(int cvid) async {
final res = await DynamicsHttp.articleView(cvId: cvid);
if (res.isSuccess) {
articleData = res.data;