From 09023891d7324829e8b7d77551bf6a0f10fe1a42 Mon Sep 17 00:00:00 2001 From: yaojn Date: Mon, 15 Jan 2024 17:27:30 +0800 Subject: [PATCH] =?UTF-8?q?-=20[=E4=BF=AE=E5=A4=8D]=E7=A0=94=E5=8F=91?= =?UTF-8?q?=E7=AE=A1=E7=90=86-=E5=85=B3=E8=81=94=E9=9C=80=E6=B1=82?= =?UTF-8?q?=E7=95=8C=E9=9D=A2=E5=B1=95=E7=A4=BA=E4=B8=8D=E5=85=A8=20=20=20?= =?UTF-8?q?-=20[=E5=85=B3=E8=81=94]#[969332497022976]=E7=A0=94=E5=8F=91?= =?UTF-8?q?=E7=AE=A1=E7=90=86-=E5=85=B3=E8=81=94=E9=9C=80=E6=B1=82?= =?UTF-8?q?=E7=95=8C=E9=9D=A2=E5=B1=95=E7=A4=BA=E4=B8=8D=E5=85=A8=20http:/?= =?UTF-8?q?/192.168.0.96:8090/demo/rdm.html#/bug-detail/939050947543040/93?= =?UTF-8?q?9050947543057/969332497022976?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../rdm/project/viewtab/components/issue-list-dialog.vue | 1 + .../rdm/project/viewtab/components/issue-list-table.vue | 7 ++++++- .../pages/rdm/project/viewtab/components/issue-list.vue | 7 ++++++- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/src/views/pages/rdm/project/viewtab/components/issue-list-dialog.vue b/src/views/pages/rdm/project/viewtab/components/issue-list-dialog.vue index 8a7befbc..85612083 100644 --- a/src/views/pages/rdm/project/viewtab/components/issue-list-dialog.vue +++ b/src/views/pages/rdm/project/viewtab/components/issue-list-dialog.vue @@ -9,6 +9,7 @@ :canAppend="false" :canSearch="true" :needSearch="true" + :fixedHeader="false" :checkedIdList="relIssueIdList" :projectId="projectId" :app="app" diff --git a/src/views/pages/rdm/project/viewtab/components/issue-list-table.vue b/src/views/pages/rdm/project/viewtab/components/issue-list-table.vue index d4e0bfd7..47b4ca30 100644 --- a/src/views/pages/rdm/project/viewtab/components/issue-list-table.vue +++ b/src/views/pages/rdm/project/viewtab/components/issue-list-table.vue @@ -6,6 +6,7 @@ v-bind="issueData" :sortOrder="sortData" :sortList="sortList" + :fixedHeader="fixedHeader" multiple @changeCurrent="searchIssue" @changePageSize="changePageSize" @@ -83,7 +84,11 @@ export default { canAction: { type: Boolean, default: false }, parentId: { type: Number }, //父任务id,传入parentId代表这里显示的是子任务 fromId: { type: Number }, //来源任务id - toId: { type: Number } //目标任务id + toId: { type: Number }, //目标任务id + fixedHeader: { // 固定表头,默认true + type: Boolean, + default: true + } }, data() { return {}; diff --git a/src/views/pages/rdm/project/viewtab/components/issue-list.vue b/src/views/pages/rdm/project/viewtab/components/issue-list.vue index af0446bf..a8d0e47a 100644 --- a/src/views/pages/rdm/project/viewtab/components/issue-list.vue +++ b/src/views/pages/rdm/project/viewtab/components/issue-list.vue @@ -121,6 +121,7 @@