1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <template>
- <imgCardLv1 :option="option"></imgCardLv1>
- </template>
- <script>
- import imgCardLv1 from "@/components/common/layout/imgDes/imgCardLv1";
- export default {
- name: "testPage",
- components: {
- imgCardLv1
- },
- data() {
- return {
- option: {
- content: {
- title: '在线考试系统一建立无纸化考试通道',
- des: '深谙在线考试系统搭建精髓,全场景模拟考试环境,企业微信/钉钉等平台同步开发搭建,实现移动端,PC端同步考试,APP/小程序/云平台独立开发。',
- list: [
- {
- value: '试题批量导入',
- },
- {
- value: '多种题型支持',
- },
- {
- value: '随机组卷抽题',
- },
- {
- value: '考试时间设定',
- },
- {
- value: '360°防作弊监考',
- },
- {
- value: '自动阅卷判卷',
- },
- {
- value: '成绩统计查询',
- },
- {
- value: '证书颁发打印',
- },
- ],
- order: 1,
- },
- img: {
- url: require('~/static/codeImage/code_jingli.png'),
- order: 2,
- }
- }
- }
- }
- }
- </script>
- <style scoped>
- </style>
|