testPage.vue 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <template>
  2. <imgCardLv1 :option="option"></imgCardLv1>
  3. </template>
  4. <script>
  5. import imgCardLv1 from "@/components/common/layout/imgDes/imgCardLv1";
  6. export default {
  7. name: "testPage",
  8. components: {
  9. imgCardLv1
  10. },
  11. data() {
  12. return {
  13. option: {
  14. content: {
  15. title: '在线考试系统一建立无纸化考试通道',
  16. des: '深谙在线考试系统搭建精髓,全场景模拟考试环境,企业微信/钉钉等平台同步开发搭建,实现移动端,PC端同步考试,APP/小程序/云平台独立开发。',
  17. list: [
  18. {
  19. value: '试题批量导入',
  20. },
  21. {
  22. value: '多种题型支持',
  23. },
  24. {
  25. value: '随机组卷抽题',
  26. },
  27. {
  28. value: '考试时间设定',
  29. },
  30. {
  31. value: '360°防作弊监考',
  32. },
  33. {
  34. value: '自动阅卷判卷',
  35. },
  36. {
  37. value: '成绩统计查询',
  38. },
  39. {
  40. value: '证书颁发打印',
  41. },
  42. ],
  43. order: 1,
  44. },
  45. img: {
  46. url: require('~/static/codeImage/code_jingli.png'),
  47. order: 2,
  48. }
  49. }
  50. }
  51. }
  52. }
  53. </script>
  54. <style scoped>
  55. </style>