feat(notice): 通知公告功能增加附件上传和查看

- 在通知公告表单中添加附件上传功能
- 在通知公告列表中显示附件图标,点击可下载- 在通知公告查看页面展示附件列表,可点击下载
- 修改数据库,将 files 字段从 string 类型改为 text 类型
This commit is contained in:
2025-08-22 12:05:28 +08:00
parent 87c27c94b9
commit 272c887486
4 changed files with 171 additions and 3 deletions

View File

@@ -71,7 +71,7 @@ class InstallNoticeTable extends Migrator
['title', 'string', ['limit' => 255, 'default' => NULL, 'null' => false, 'comment' => '标题']],
['type', 'string', ['limit' => 255, 'default' => NULL, 'null' => true, 'comment' => '类型']],
['content', 'text', ['default' => NULL, 'null' => true, 'comment' => '内容']],
['files', 'string', ['limit' => 255, 'default' => NULL, 'null' => true, 'comment' => '附件']],
['files', 'text', ['default' => NULL, 'null' => true, 'comment' => '附件']],
['create_at', 'datetime', ['default' => 'CURRENT_TIMESTAMP', 'null' => false, 'comment' => '']],
['create_by', 'integer', ['limit' => 11, 'default' => 0, 'null' => false, 'comment' => '创建人ID']],
['is_deleted', 'tinyinteger', ['limit' => 4, 'default' => 0, 'null' => false, 'comment' => '是否已删除']],