fix[题目]: 修改问卷题目描述

- 单选、多选、填空、矩阵题目描述更改
This commit is contained in:
Huangzhe
2025-03-24 09:47:36 +08:00
parent d546646b95
commit e43635c11c

View File

@@ -12,19 +12,19 @@ import {
const basicQuesTypeList = [ const basicQuesTypeList = [
{ {
icon: '', icon: '',
name: '单选', name: '单选',
question_type: 1, question_type: 1,
json: radio json: radio
}, },
{ {
icon: '', icon: '',
name: '多选', name: '多选',
question_type: 2, question_type: 2,
json: checkbox json: checkbox
}, },
{ {
icon: '', icon: '',
name: '填空', name: '填空',
question_type: 4, question_type: 4,
json: completion json: completion
}, },
@@ -42,19 +42,19 @@ const basicQuesTypeList = [
}, },
{ {
icon: '𓱿', icon: '𓱿',
name: '矩阵单选', name: '矩阵',
question_type: 9, question_type: 9,
json: martrixQuestion json: martrixQuestion
}, },
{ {
icon: '', icon: '',
name: '矩阵多选', name: '矩阵',
question_type: 10, question_type: 10,
json: martrixQuestion json: martrixQuestion
}, },
{ {
icon: '', icon: '',
name: '矩阵填空', name: '矩阵',
question_type: 8, question_type: 8,
json: martrixQuestion json: martrixQuestion
}, },