feat(Design): 新增矩阵题型和文件上传题型

- 新增矩阵题型组件和相关配置
- 新增文件上传题型组件和相关配置
-优化签名题型组件
- 添新的 CSS 样式类
This commit is contained in:
陈昱达
2025-03-13 16:49:19 +08:00
parent 1a05cb6262
commit 33ac908ef9
22 changed files with 711 additions and 222 deletions

View File

@@ -52,8 +52,7 @@ const isOptionChecked = (rowIndex: number, colIndex: number): boolean => {
return !!props.matrixAnswer[key];
};
const handleRowNameChange = (value: string) => {
console.log(`row change: ${value}`);
const handleRowNameChange = () => {
// 你可以在这里添加其他逻辑
};