feat(arc): 新增ARC设备管理功能

- 创建了ARC设备管理的完整CRUD功能模块
- 实现了后台控制器、模型、验证器和视图文件
- 配置了应用基础设置和站点信息参数
- 添加了API接口控制器和数据模型
- 集成了Bootstrap表格组件和表单验证功能
- 支持设备IMEI、APP ID、SDK KEY等关键信息管理
- 实现软删除和回收站功能
- 配置了前端页面模板和JavaScript交互逻辑
This commit is contained in:
2026-04-08 09:28:23 +08:00
parent 0a605caefe
commit e4cdd21c77
25 changed files with 1641 additions and 76 deletions

View File

@@ -1,9 +1,15 @@
<?php
return [
'autoload' => false,
'hooks' => [],
'route' => [],
'priority' => [],
'domain' => '',
];
return array (
'autoload' => false,
'hooks' =>
array (
),
'route' =>
array (
),
'priority' =>
array (
),
'domain' => '',
);

View File

@@ -1,40 +1,44 @@
<?php
return [
'name' => '我的网站',
'beian' => '',
'cdnurl' => '',
'version' => '1.0.1',
'timezone' => 'Asia/Shanghai',
'forbiddenip' => '',
'languages' => [
'backend' => 'zh-cn',
'frontend' => 'zh-cn',
],
'fixedpage' => 'dashboard',
'categorytype' => [
'default' => 'Default',
'page' => 'Page',
'article' => 'Article',
'test' => 'Test',
],
'configgroup' => [
'basic' => 'Basic',
'email' => 'Email',
'dictionary' => 'Dictionary',
'user' => 'User',
'example' => 'Example',
],
'attachmentcategory' => [
'category1' => 'Category1',
'category2' => 'Category2',
'custom' => 'Custom',
],
'mail_type' => '1',
'mail_smtp_host' => 'smtp.qq.com',
'mail_smtp_port' => '465',
'mail_smtp_user' => '',
'mail_smtp_pass' => '',
'mail_verify_type' => '2',
'mail_from' => '',
];
return array (
'name' => '夏芮智能芬太尼类专用智能柜',
'beian' => '',
'cdnurl' => '',
'version' => '1.0.1',
'timezone' => 'Asia/Shanghai',
'forbiddenip' => '',
'languages' =>
array (
'backend' => 'zh-cn',
'frontend' => 'zh-cn',
),
'fixedpage' => 'dashboard',
'categorytype' =>
array (
'default' => 'Default',
'page' => 'Page',
'article' => 'Article',
'test' => 'Test',
),
'configgroup' =>
array (
'basic' => 'Basic',
'email' => 'Email',
'dictionary' => 'Dictionary',
'user' => 'User',
'example' => 'Example',
),
'attachmentcategory' =>
array (
'category1' => 'Category1',
'category2' => 'Category2',
'custom' => 'Custom',
),
'mail_type' => '1',
'mail_smtp_host' => 'smtp.qq.com',
'mail_smtp_port' => '465',
'mail_smtp_user' => '',
'mail_smtp_pass' => '',
'mail_verify_type' => '2',
'mail_from' => '',
);