From 7e5d0f1ae7a0a8df5be5048325d7ce350b0c3f56 Mon Sep 17 00:00:00 2001 From: Huangzhe Date: Thu, 20 Mar 2025 17:50:13 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E7=9F=A9=E9=98=B5=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E6=93=8D=E4=BD=9C=E9=80=89=E9=A1=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 矩阵可以删除某个行或者列,实现置底的功能 --- .../components/Questions/MartrixQuestion.vue | 1 + .../components/Questions/MatrixCheckbox.vue | 123 ++++++++++++----- .../components/Questions/MatrixRadio.vue | 128 +++++++++++++----- .../components/Questions/MatrixText.vue | 126 ++++++++++++----- 4 files changed, 280 insertions(+), 98 deletions(-) diff --git a/src/views/Design/components/Questions/MartrixQuestion.vue b/src/views/Design/components/Questions/MartrixQuestion.vue index 0336445..4bf5878 100644 --- a/src/views/Design/components/Questions/MartrixQuestion.vue +++ b/src/views/Design/components/Questions/MartrixQuestion.vue @@ -75,6 +75,7 @@ const emitValue = () => { v-model:rows="rows" v-model:cols="cols" :is-preview="isPreview" + :active="active" style="overflow: scroll; width: 88vw" /> diff --git a/src/views/Design/components/Questions/MatrixCheckbox.vue b/src/views/Design/components/Questions/MatrixCheckbox.vue index fbdb3cb..36e85de 100644 --- a/src/views/Design/components/Questions/MatrixCheckbox.vue +++ b/src/views/Design/components/Questions/MatrixCheckbox.vue @@ -3,16 +3,46 @@