parent
834fb22228
commit
4a172c4890
22 changed files with 359 additions and 261 deletions
After Width: | Height: | Size: 521 B |
After Width: | Height: | Size: 629 B |
@ -1,28 +0,0 @@ |
|||||||
import BasicLayout from '@/layouts/home'; |
|
||||||
|
|
||||||
const meta = {}; |
|
||||||
|
|
||||||
const pre = 'wrongBook-'; |
|
||||||
|
|
||||||
export default { |
|
||||||
path: '/wrongBook', |
|
||||||
name: 'wrongBook', |
|
||||||
redirect: { |
|
||||||
name: `${pre}list` |
|
||||||
}, |
|
||||||
meta, |
|
||||||
component: BasicLayout, |
|
||||||
children: [ |
|
||||||
{ |
|
||||||
name: `${pre}list`, |
|
||||||
path: `list`, |
|
||||||
component: () => import('@/pages/wrongBook/list'), |
|
||||||
meta: { title: '我的错题本' } |
|
||||||
},{ |
|
||||||
name: `${pre}do`, |
|
||||||
path: `do`, |
|
||||||
component: () => import('@/pages/wrongBook/do'), |
|
||||||
meta: { title: '错题练习' } |
|
||||||
}, |
|
||||||
] |
|
||||||
}; |
|
@ -1,97 +0,0 @@ |
|||||||
/** |
|
||||||
* 试卷管理 |
|
||||||
* */ |
|
||||||
export default { |
|
||||||
namespaced: true, |
|
||||||
state: { |
|
||||||
typeList: [ |
|
||||||
{ |
|
||||||
id: 1, |
|
||||||
name: '期中考试' |
|
||||||
},{ |
|
||||||
id: 2, |
|
||||||
name: '期末考试' |
|
||||||
},{ |
|
||||||
id: 3, |
|
||||||
name: '模拟考' |
|
||||||
} |
|
||||||
], |
|
||||||
stateList: [ |
|
||||||
{ |
|
||||||
id: 0, |
|
||||||
name: '待开始' |
|
||||||
},{ |
|
||||||
id: 1, |
|
||||||
name: '进行中' |
|
||||||
},{ |
|
||||||
id: 2, |
|
||||||
name: '已提交' |
|
||||||
} |
|
||||||
], |
|
||||||
assessmentStateList: [ |
|
||||||
{ |
|
||||||
id: 1, |
|
||||||
name: '待开始' |
|
||||||
},{ |
|
||||||
id: 2, |
|
||||||
name: '进行中' |
|
||||||
},{ |
|
||||||
id: 3, |
|
||||||
name: '已结束' |
|
||||||
}
|
|
||||||
], |
|
||||||
degreeList: [ |
|
||||||
{ |
|
||||||
id: 0, |
|
||||||
label: '简单' |
|
||||||
},{ |
|
||||||
id: 1, |
|
||||||
label: '一般' |
|
||||||
},{ |
|
||||||
id: 2, |
|
||||||
label: '较难' |
|
||||||
},{ |
|
||||||
id: 3, |
|
||||||
label: '很难' |
|
||||||
}, |
|
||||||
], |
|
||||||
assessmentName: '', |
|
||||||
testPaperId: '', |
|
||||||
assessmentId: '', |
|
||||||
teacherId: '', |
|
||||||
classId: '', |
|
||||||
paperName: '', |
|
||||||
countdown: '', |
|
||||||
assessmentName: '' |
|
||||||
}, |
|
||||||
getters: { |
|
||||||
getDegreeName: state => id => { |
|
||||||
return id != null ? state.degreeList.find(n => n.id == id).label : '' |
|
||||||
}, |
|
||||||
getTypeName: state => id => { |
|
||||||
return id != null ? state.typeList.find(n => n.id == id).name : '' |
|
||||||
}, |
|
||||||
getStateName: state => id => { |
|
||||||
return id != null ? state.stateList.find(n => n.id == id).name : '' |
|
||||||
}, |
|
||||||
getAssessmentStateName: state => id => { |
|
||||||
return id != null ? state.assessmentStateList.find(n => n.id == id).name : '' |
|
||||||
}, |
|
||||||
}, |
|
||||||
mutations: { |
|
||||||
SET_INFO: (state, info) => { |
|
||||||
state.assessmentName = info.assessmentName |
|
||||||
state.assessmentId = info.assessmentId |
|
||||||
state.teacherId = info.teacherId |
|
||||||
state.classId = info.classId |
|
||||||
state.testPaperId = info.testPaperId |
|
||||||
state.countdown = info.countdown |
|
||||||
state.assessmentName = info.assessmentName |
|
||||||
}, |
|
||||||
}, |
|
||||||
actions: { |
|
||||||
setInfo({ commit },info) { |
|
||||||
commit('SET_INFO',info) |
|
||||||
}, |
|
||||||
} |
|
||||||
} |
|
@ -1,24 +0,0 @@ |
|||||||
/** |
|
||||||
* 我的错题本 |
|
||||||
* */ |
|
||||||
export default { |
|
||||||
namespaced: true, |
|
||||||
state: { |
|
||||||
qid: '', |
|
||||||
type: 1 |
|
||||||
}, |
|
||||||
getters: { |
|
||||||
|
|
||||||
}, |
|
||||||
mutations: { |
|
||||||
SET_INFO: (state, info) => { |
|
||||||
state.qid = info.qid |
|
||||||
state.type = info.type |
|
||||||
}, |
|
||||||
}, |
|
||||||
actions: { |
|
||||||
setInfo({ commit },info) { |
|
||||||
commit('SET_INFO',info) |
|
||||||
}, |
|
||||||
} |
|
||||||
} |
|
Loading…
Reference in new issue