- 清理大量废弃的 barrel 导出文件,移除冗余的中间导出层 - 修复所有相对路径导入错误,统一调整为扁平化模块引用 - 更新多平台 pubspec 版本号与依赖库版本 - 补充后端功能问题管理后台与脚本工具 - 调整部分页面的快捷方式文案适配新功能 - 更新部分翻译覆盖率与API文档
24 lines
486 B
PHP
24 lines
486 B
PHP
<?php
|
|
|
|
namespace app\admin\controller;
|
|
|
|
use app\common\controller\Backend;
|
|
|
|
/**
|
|
* 功能问题管理
|
|
* @icon fa fa-bug
|
|
* @time 2026-06-12
|
|
* @description 管理功能问题列表,支持按严重程度和状态筛选
|
|
*/
|
|
class FeatureIssue extends Backend
|
|
{
|
|
protected $model = null;
|
|
protected $searchFields = 'id,description,flag_key';
|
|
|
|
public function _initialize()
|
|
{
|
|
parent::_initialize();
|
|
$this->model = new \app\admin\model\FeatureIssue;
|
|
}
|
|
}
|