Skip to content

feat: 新增EditTabs标签页编辑功能与数据库字段扩展 #363

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 6 commits into
base: master
Choose a base branch
from

Conversation

KickCashew
Copy link

@KickCashew KickCashew commented Jun 18, 2025

🚀 功能概述 (Feature Overview)

新增 ViewGrid EditTabs 标签页编辑功能,提升表单编辑体验,同时扩展数据库表结构以支持新功能。

✨ 主要变更 (Key Changes)

1. 前端功能增强

  • ✅ 新增 EditTabs 标签页编辑功能
  • ✅ 支持多种标签页样式:line、card、border-card
  • ✅ 支持标签页位置配置:top、left、right、bottom
  • ✅ 支持自定义标签页头部渲染

2. 数据库结构扩展

  • Sys_TableColumn 表新增 EditPageNo 字段 (int)
  • Sys_TableInfo 表新增 EditPageName 字段 (nvarchar(200))

🗄️ 数据库变更 (Database Changes)

SQL Server

ALTER TABLE [dbo].[Sys_TableColumn] ADD [EditPageNo] int NULL;
ALTER TABLE [dbo].[Sys_TableInfo] ADD [EditPageName] nvarchar(200) COLLATE Chinese_PRC_CI_AS NULL;

MySQL

ALTER TABLE `Sys_TableColumn` ADD `EditPageNo` int NULL;
ALTER TABLE `Sys_TableInfo` ADD `EditPageName` varchar(200) NULL;

image
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant