修复错别字
This commit is contained in:
parent
9514b7c9d5
commit
8718ffed35
@ -306,7 +306,7 @@ abstract class Routers {
|
|||||||
static const messageListPage = '/MessageListPage'; // 我的-消息
|
static const messageListPage = '/MessageListPage'; // 我的-消息
|
||||||
static const supportStaffPage = '/SupportStaffPage'; // 我的-客服
|
static const supportStaffPage = '/SupportStaffPage'; // 我的-客服
|
||||||
static const valueAddedServicesPage = '/ValueAddedServicesPage'; // 我的-增值服务
|
static const valueAddedServicesPage = '/ValueAddedServicesPage'; // 我的-增值服务
|
||||||
static const abountPage = '/AbountPage'; // 我的-关于
|
static const aboutPage = '/AboutPage'; // 我的-关于
|
||||||
|
|
||||||
static const valueAddedServicesNoteAndEmailDetailPage =
|
static const valueAddedServicesNoteAndEmailDetailPage =
|
||||||
'/ValueAddedServicesNoteAndEmailDetailPage'; // 增值服务-短信邮件详情
|
'/ValueAddedServicesNoteAndEmailDetailPage'; // 增值服务-短信邮件详情
|
||||||
@ -747,8 +747,8 @@ abstract class AppRouters {
|
|||||||
page: () => const ValueAddedServicesListPage(),
|
page: () => const ValueAddedServicesListPage(),
|
||||||
),
|
),
|
||||||
GetPage(
|
GetPage(
|
||||||
name: Routers.abountPage,
|
name: Routers.aboutPage,
|
||||||
page: () => const AbountPage(),
|
page: () => const AboutPage(),
|
||||||
),
|
),
|
||||||
GetPage(
|
GetPage(
|
||||||
name: Routers.gatewayDetailPage,
|
name: Routers.gatewayDetailPage,
|
||||||
|
|||||||
@ -10,14 +10,14 @@ import '../../tools/titleAppBar.dart';
|
|||||||
import '../../translations/trans_lib.dart';
|
import '../../translations/trans_lib.dart';
|
||||||
import '../../network/api.dart';
|
import '../../network/api.dart';
|
||||||
|
|
||||||
class AbountPage extends StatefulWidget {
|
class AboutPage extends StatefulWidget {
|
||||||
const AbountPage({Key? key}) : super(key: key);
|
const AboutPage({Key? key}) : super(key: key);
|
||||||
|
|
||||||
@override
|
@override
|
||||||
State<AbountPage> createState() => _AbountPageState();
|
State<AboutPage> createState() => _AboutPageState();
|
||||||
}
|
}
|
||||||
|
|
||||||
class _AbountPageState extends State<AbountPage> {
|
class _AboutPageState extends State<AboutPage> {
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
|
|||||||
@ -155,7 +155,7 @@ class _StarLockMinePageState extends State<StarLockMinePage> with BaseWidget {
|
|||||||
mineItem('images/mine/icon_mine_main_about.png',
|
mineItem('images/mine/icon_mine_main_about.png',
|
||||||
TranslationLoader.lanKeys!.about!.tr, () {
|
TranslationLoader.lanKeys!.about!.tr, () {
|
||||||
Get.back();
|
Get.back();
|
||||||
Get.toNamed(Routers.abountPage);
|
Get.toNamed(Routers.aboutPage);
|
||||||
}),
|
}),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user