123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- // 模拟题目数据
- export default [
- {
- id:1,
- title:"题目1",
- type:"1", // 1 - 单选 2 - 多选
- descripiton:"题目1",
- itemList:"[{"code":"A","optVal":"选项1"},{"code":"B","optVal":"选项1"},{"code":"C","optVal":"选项1"},{"code":"D","optVal":"选项1"}]",
- correctItem:"",
- analysis:"答案解析1111111111111111",
- categoryId:"1",
- },
- {
- id:2,
- title:"题目2",
- type:"2", // 1 - 单选 2 - 多选
- descripiton:"题目2",
- itemList:"[{"code":"A","optVal":"选项1"},{"code":"B","optVal":"选项1"},{"code":"C","optVal":"选项1"},{"code":"D","optVal":"选项1"}]",
- correctItem:"",
- analysis:"答案解析1111111111111111",
- categoryId:"2",
- },
- {
- id:3,
- title:"题目3",
- type:"1", // 1 - 单选 2 - 多选
- descripiton:"题目3",
- itemList:"[{"code":"A","optVal":"选项1"},{"code":"B","optVal":"选项1"},{"code":"C","optVal":"选项1"},{"code":"D","optVal":"选项1"}]",
- correctItem:"",
- analysis:"答案解析1111111111111111",
- categoryId:"1",
- },
- {
- id:4,
- title:"题目4",
- type:"1", // 1 - 单选 2 - 多选
- descripiton:"题目4",
- itemList:"[{"code":"A","optVal":"选项1"},{"code":"B","optVal":"选项1"},{"code":"C","optVal":"选项1"},{"code":"D","optVal":"选项1"}]",
- correctItem:"",
- analysis:"答案解析1111111111111111",
- categoryId:"1",
- },
- {
- id:5,
- title:"题目5",
- type:"2", // 1 - 单选 2 - 多选
- descripiton:"题目5",
- itemList:"[{"code":"A","optVal":"选项1"},{"code":"B","optVal":"选项1"},{"code":"C","optVal":"选项1"},{"code":"D","optVal":"选项1"}]",
- correctItem:"",
- analysis:"答案解析1111111111111111",
- categoryId:"1",
- },
- {
- id:6,
- title:"题目6",
- type:"1", // 1 - 单选 2 - 多选
- descripiton:"题目6",
- itemList:"[{"code":"A","optVal":"选项1"},{"code":"B","optVal":"选项1"},{"code":"C","optVal":"选项1"},{"code":"D","optVal":"选项1"}]",
- correctItem:"",
- analysis:"答案解析1111111111111111",
- categoryId:"1",
- },
- ]
|