feat(Design): 新增矩阵题型支持

- 添加 BeforeMartrixRadio、BeforeMartrixCheckbox 和 BeforeMartrixComplation 组件
- 更新 QuestionBefore组件以支持矩阵题型
- 优化逻辑配置的添加和删除功能
- 调整样式,包括图标和渐变效果
This commit is contained in:
陈昱达
2025-03-15 13:25:52 +08:00
parent 4270f925f2
commit dae1217dab
18 changed files with 495 additions and 121 deletions

View File

@@ -110,7 +110,7 @@ const chooseItem = () => {
& .title {
position: relative;
font-weight: 700;
font-weight: 800;
font-size: 14px;
&::after {
@@ -118,12 +118,13 @@ const chooseItem = () => {
position: absolute;
//padding: 0 5px;
bottom: -4px;
bottom: -2px;
left: -1px;
width: 100%;
height: 7px;
border-radius: 5px;
background: linear-gradient(to right, $theme-color 10%, #f2f2f2 100%);
border-radius: 4px;
background: linear-gradient(90deg, #70b937 0%, rgba(112, 185, 55, 0) 100%);
opacity: 0.4;
}
}
}