From e43635c11cafcf10c01c4a7415b8a94332e42a67 Mon Sep 17 00:00:00 2001 From: Huangzhe Date: Mon, 24 Mar 2025 09:47:36 +0800 Subject: [PATCH] =?UTF-8?q?fix[=E9=A2=98=E7=9B=AE]:=20=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E9=97=AE=E5=8D=B7=E9=A2=98=E7=9B=AE=E6=8F=8F=E8=BF=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 单选、多选、填空、矩阵题目描述更改 --- src/utils/common.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/utils/common.js b/src/utils/common.js index 842ac0b..314d645 100644 --- a/src/utils/common.js +++ b/src/utils/common.js @@ -12,19 +12,19 @@ import { const basicQuesTypeList = [ { icon: '', - name: '单选题', + name: '单选', question_type: 1, json: radio }, { icon: '', - name: '多选题', + name: '多选', question_type: 2, json: checkbox }, { icon: '', - name: '填空题', + name: '填空', question_type: 4, json: completion }, @@ -42,19 +42,19 @@ const basicQuesTypeList = [ }, { icon: '𓱿', - name: '矩阵单选', + name: '矩阵', question_type: 9, json: martrixQuestion }, { icon: '', - name: '矩阵多选', + name: '矩阵', question_type: 10, json: martrixQuestion }, { icon: '', - name: '矩阵填空', + name: '矩阵', question_type: 8, json: martrixQuestion },