From 9767ed007eb2a6242f7b196ce10596ce23bcabea Mon Sep 17 00:00:00 2001 From: song-cc-rock Date: Tue, 26 Nov 2024 16:32:00 +0800 Subject: [PATCH] =?UTF-8?q?refactor(=E7=BC=BA=E9=99=B7=E7=AE=A1=E7=90=86):?= =?UTF-8?q?=20=E4=BF=AE=E6=94=B9=E8=87=AA=E5=AE=9A=E4=B9=89=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=E9=95=BF=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --bug=1049561 --user=宋昌昌 【缺陷管理】JIRA默认模版-创建缺陷报SQL异常 https://www.tapd.cn/55049933/s/1617780 --- .../migration/3.5.0/ddl/V3.5.0_2__ga_ddl.sql | 2 +- .../views/workbench/components/bugTable.vue | 20 +++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/backend/framework/domain/src/main/resources/migration/3.5.0/ddl/V3.5.0_2__ga_ddl.sql b/backend/framework/domain/src/main/resources/migration/3.5.0/ddl/V3.5.0_2__ga_ddl.sql index db93ff78d9..286f3d4ef8 100644 --- a/backend/framework/domain/src/main/resources/migration/3.5.0/ddl/V3.5.0_2__ga_ddl.sql +++ b/backend/framework/domain/src/main/resources/migration/3.5.0/ddl/V3.5.0_2__ga_ddl.sql @@ -2,7 +2,7 @@ SET SESSION innodb_lock_wait_timeout = 7200; -- 缺陷自定义字段增加文本字段 -ALTER TABLE bug_custom_field ADD COLUMN `content` VARCHAR(1000) COMMENT '字段文本'; +ALTER TABLE bug_custom_field ADD COLUMN `content` longtext COMMENT '字段文本'; CREATE TABLE IF NOT EXISTS user_layout( diff --git a/frontend/src/views/workbench/components/bugTable.vue b/frontend/src/views/workbench/components/bugTable.vue index dbaa4a3f26..fea7fe3983 100644 --- a/frontend/src/views/workbench/components/bugTable.vue +++ b/frontend/src/views/workbench/components/bugTable.vue @@ -101,6 +101,16 @@ }, showInTable: true, }, + { + title: 'bugManagement.handleMan', + dataIndex: 'handleUser', + slotName: 'handleUser', + titleSlotName: 'handleUserTitle', + showTooltip: true, + width: 125, + showDrag: true, + showInTable: true, + }, { title: 'bugManagement.creator', dataIndex: 'createUser', @@ -125,16 +135,6 @@ }, showInTable: true, }, - { - title: 'bugManagement.handleMan', - dataIndex: 'handleUser', - slotName: 'handleUser', - titleSlotName: 'handleUserTitle', - showTooltip: true, - width: 125, - showDrag: true, - showInTable: true, - }, { title: 'bugManagement.updateUser', dataIndex: 'updateUser',