feat: 增加客服2

This commit is contained in:
2026-01-13 01:19:13 -08:00
parent 2ea6cd2379
commit 1d2a89a80a
7 changed files with 101 additions and 1 deletions
+8
View File
@@ -10,6 +10,8 @@ import 'package:kaer_with_panels/app/modules/hi_user_info/views/hi_user_info_vie
import 'package:kaer_with_panels/app/modules/hi_anti_lost/bindings/hi_anti_lost_binding.dart';
import 'package:kaer_with_panels/app/modules/hi_anti_lost/views/hi_anti_lost_view.dart';
import '../modules/kr_chatwoot/bindings/kr_chatwoot_binding.dart';
import '../modules/kr_chatwoot/views/kr_chatwoot_view.dart';
import '../modules/kr_crisp_chat/bindings/kr_crisp_binding.dart';
import '../modules/kr_crisp_chat/views/kr_crisp_view.dart';
import '../modules/kr_delete_account/bindings/kr_delete_account_binding.dart';
@@ -138,5 +140,11 @@ class AppPages {
binding: HIAntiLostBinding(),
popGesture: false,
),
GetPage(
name: _Paths.KR_CHATWOOT,
page: () => SwipeWrapper.detect(() => const KRChatwootView()),
binding: KRChatwootBinding(),
popGesture: false,
),
];
}
+2
View File
@@ -25,6 +25,7 @@ abstract class Routes {
static const HI_HELP = _Paths.HI_HELP;
static const HI_USER_INFO = _Paths.HI_USER_INFO;
static const HI_ANTI_LOST = _Paths.HI_ANTI_LOST;
static const KR_CHATWOOT = _Paths.KR_CHATWOOT;
}
abstract class _Paths {
@@ -50,4 +51,5 @@ abstract class _Paths {
static const HI_HELP = '/hi_help';
static const HI_USER_INFO = '/hi-user-info';
static const HI_ANTI_LOST = '/hi-anti-lost';
static const KR_CHATWOOT = '/kr-chatwoot';
}