style: style lint

This commit is contained in:
Huangzhe
2025-03-17 09:46:04 +08:00
parent 74b544cc35
commit 5060539964
31 changed files with 449 additions and 438 deletions

View File

@@ -21,14 +21,14 @@ const { element } = toRefs(props);
*/
const tableInputTypeMapping = (/** regx?: any */) => {
switch (element.value.question_type) {
case 8:
return 'text';
case 9:
return 'radio';
case 10:
return 'checkbox';
default:
return 'radio';
case 8:
return 'text';
case 9:
return 'radio';
case 10:
return 'checkbox';
default:
return 'radio';
}
};