reserve btn

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-05-15 13:24:43 +08:00
parent d35c85f389
commit 205ae2bf55
2 changed files with 55 additions and 37 deletions

View File

@@ -499,6 +499,8 @@ class ReserveBtn {
String? checkText;
String? uncheckText;
int? disable;
String? jumpText;
String? jumpUrl;
ReserveBtn.fromJson(Map<String, dynamic> json) {
status = json['status'];
@@ -506,6 +508,8 @@ class ReserveBtn {
checkText = json['check']?['text'] ?? '已预约';
uncheckText = json['uncheck']?['text'] ?? '预约';
disable = json['uncheck']?['disable'];
jumpText = json['jump_style']?['text'];
jumpUrl = json['jump_url'];
}
}