hookehuyr

feat(nfc): 添加NFC测试页面及功能实现

实现NFC扫描功能页面,包括:
- 创建NFC测试页面及路由配置
- 实现NFC扫描启动、停止和模拟功能
- 添加NFC标签解析和结果显示
- 支持不同设备和环境的兼容性处理
...@@ -26,6 +26,7 @@ export default { ...@@ -26,6 +26,7 @@ export default {
26 'pages/verificationResult/index', 26 'pages/verificationResult/index',
27 'pages/weakNetwork/index', 27 'pages/weakNetwork/index',
28 'pages/offlineBookingCode/index', 28 'pages/offlineBookingCode/index',
29 + 'pages/nfcTest/index',
29 ], 30 ],
30 subpackages: [ // 配置在tabBar中的页面不能分包写到subpackages中去 31 subpackages: [ // 配置在tabBar中的页面不能分包写到subpackages中去
31 { 32 {
......
1 +export default {
2 + navigationBarTitleText: 'NFC测试',
3 +}
This diff is collapsed. Click to expand it.