exam.vue 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. <template>
  2. <div class="client-exam-page client-platform-page">
  3. <!-- 广告图位置 -->
  4. <div class="client-banner-box">
  5. <div
  6. :style="{backgroundImage: `url(${bannerList[0].pic || require(`~/static/images/client/train/train-banner-background.png`)})`}"
  7. class="client-platform-banner"></div>
  8. <h3>全流程AI监考防作弊体系</h3>
  9. <p>青谷为您打造专业的严肃性在线考试解决方案</p>
  10. <onlineInformationBtn/>
  11. </div>
  12. <!-- 常见严肃性考试场景 -->
  13. <gangweiList label="常见严肃性考试场景" :list="gangwei" :pc-num="4" :h5-num="2"></gangweiList>
  14. <!-- 严肃性考试解决方案 -->
  15. <div class="platform-products-services client-container">
  16. <h4 class="client-title">严肃性考试解决方案</h4>
  17. <imgCardLv2 class="img-card" :option="item" v-for="(item,index) in productList" :key="index" :col-pc="3" :col-h5="2">
  18. <div class="btn-groups">
  19. <onlineInformationBtn class="online-information-btn btn-item" v-if="item.zixun"/>
  20. </div>
  21. </imgCardLv2>
  22. </div>
  23. <!-- 宣传图 -->
  24. <div class="client-xuanchuan-box">
  25. <h4>青谷为您打造专业的严肃性在线考试解决方案</h4>
  26. <onlineInformationBtn></onlineInformationBtn>
  27. </div>
  28. <!-- 严肃性考试热门问答 -->
  29. <div class="client-wenda-box">
  30. <h4>严肃性考试热门问答</h4>
  31. <div>
  32. <ul>
  33. <li :class="{active: curActive === 1}" @click="curActive = 1">1. 考试前开启身份证认证、人脸识别是否会耽误考试时间?</li>
  34. <li :class="{active: curActive === 2}" @click="curActive = 2">2. 开启摄像头监控后,考生的摄像头遇到用不了的情况怎么解决?</li>
  35. <li :class="{active: curActive === 3}" @click="curActive = 3">3. 考试人数多的情况下系统稳定有保障吗?</li>
  36. <li :class="{active: curActive === 4}" @click="curActive = 4">4. 考生在考试中途遇到死机中断怎么办?</li>
  37. <li :class="{active: curActive === 5}" @click="curActive = 5">5. 如果您还有更多的疑惑,请联立即联系我们</li>
  38. </ul>
  39. <div v-if="curActive === 1">
  40. <span>问</span>考试前开启身份证、人脸识别是否会耽误考试时间?
  41. <span>答</span>我们提供了两种解决方案,1.现场采集头像,五分钟之内就能完成,方便快捷,不会耽误考试时间。2提前让考生提供近期2寸照,录入系统,考试之前直接识别即可
  42. </div>
  43. <div v-if="curActive === 2">
  44. <span>问</span>开启摄像监考后,考生的摄像头遇到用不了的情况怎么解决?
  45. <span>答</span>正常情况下摄像头都是可以使用的;当然如有无法使用的情况,其原因有多种,我们已提供相关的解决方案,考生可以根据操作指引启用电脑摄像头。
  46. </div>
  47. <div v-if="curActive === 3">
  48. <span>问</span>考试人数多的情况下系统稳定有保障吗?
  49. <span>答</span>如果考试人数过多,系统将采用分布式部署,保证系统稳定性。目前已有很多的企业使用青谷组织过超过万人高并发在线考试,我们会为您提供技术支持,考试人数再多页可保障系统稳定性。
  50. </div>
  51. <div v-if="curActive === 4">
  52. <span>问</span>考生在考试中途遇到死机中断怎么办??
  53. <span>答</span>青谷考试带有每五分钟自动保存功能,时间节点内的答题数据都会保留。
  54. </div>
  55. <div v-if="curActive === 5">
  56. <div>
  57. <p>客服电话: 400-0990-883</p>
  58. <p>QQ:227551695</p>
  59. </div>
  60. <img src="#">
  61. </div>
  62. </div>
  63. </div>
  64. <!-- 立即咨询 -->
  65. <desWithCode source="exam"></desWithCode>
  66. </div>
  67. </template>
  68. <script>
  69. import freeTrialBtn from "~/components/common/freeTrialBtn";
  70. import onlineInformationBtn from "~/components/common/onlineInformationBtn";
  71. import newsComp2 from "~/components/common/newsComp2";
  72. import chanPinTiYan from "~/components/common/chanPinTiYan";
  73. import {BannerImgs, yansukaoshi} from "~/defaultConfig";
  74. import desWithCode from "@/components/common/layout/desComp/desWithCode";
  75. import gangweiList from "@/components/common/layout/desComp/gangweiList";
  76. import imgCardLv2 from "~/components/common/layout/imgDes/imgCardLv2";
  77. /**
  78. * @ 解决方案 -> 严肃考试
  79. */
  80. export default {
  81. name: "exam.vue",
  82. layout: 'templateB',
  83. components: {
  84. freeTrialBtn, onlineInformationBtn, newsComp2, chanPinTiYan, desWithCode, gangweiList, imgCardLv2
  85. },
  86. async asyncData({$axios, store}) {
  87. const arr = [
  88. $axios.$post(`/home/news/carousel`, {'newsClassifyId': 0, 'keyword': '考试'}),
  89. $axios.$post(`/home/banner/list`, {'code': BannerImgs.yansukaoshi}),
  90. ]
  91. const [res1, res2] = await Promise.all(arr);
  92. return {
  93. topCarousels: res1.data.data || [],
  94. bannerList: res2.data.data || [],
  95. }
  96. },
  97. head() {
  98. return {
  99. title: '在线考试平台_在线考试软件_试卷软件系统',
  100. meta: [
  101. {
  102. name: 'keywords',
  103. content: '考试平台,试卷系统,试卷软件'
  104. },
  105. {
  106. name: 'description',
  107. content: '麦塔考试系统具有良好高并发性和访问安全部署、严格的考试监控防作弊功能、PC移动支持多终端,随时随地考试、丰富的考试管理功能。'
  108. }
  109. ],
  110. }
  111. },
  112. computed: {
  113. gangwei() {
  114. return yansukaoshi
  115. }
  116. },
  117. data() {
  118. return {
  119. productList: [
  120. {
  121. content: {
  122. title: '强大的AI防作弊,保障考试公平公正',
  123. des: '',
  124. list: [
  125. {
  126. value: '人脸识别、摄像头监考、有效防止替考代考,保障考试公平公正',
  127. },
  128. {
  129. value: '支持子管理员协助多屏监控在线监考,考生的面部表情、一举一动在后台实时呈现,最大程度模拟人工监考场景',
  130. },
  131. {
  132. value: '随机组件、试题乱序、选择题选项乱序、超时强制交卷、防止切屏限制,有效的防止考生相互抄卷的行为',
  133. },
  134. ],
  135. order: 2,
  136. },
  137. img: {
  138. url: require('~/static/codeImage/code-jingli.png'),
  139. order: 1,
  140. },
  141. mianfei: true,
  142. zixun: true,
  143. shenqing: false,
  144. myType: 'kaoshi'
  145. },
  146. {
  147. content: {
  148. title: '数据加密保护,保障考试信息安全',
  149. des: '',
  150. list: [
  151. {
  152. value: '考生答卷时禁止复制、粘贴考题,防止试题和答案泄露',
  153. },
  154. {
  155. value: '企业级技术框架;数据存储备份机制;算法、秘钥双重保险,数据安全可靠',
  156. },
  157. {
  158. value: '支持私有服务器部署内网考试,让考试数据更安全',
  159. },
  160. ],
  161. order: 1,
  162. },
  163. img: {
  164. url: require('~/static/codeImage/code-jingli.png'),
  165. order: 2,
  166. },
  167. mianfei: true,
  168. zixun: true,
  169. shenqing: false,
  170. myType: 'kaoshi'
  171. },
  172. {
  173. content: {
  174. title: '良好的高并发性,系统稳定性高',
  175. des: '',
  176. list: [
  177. {
  178. value: '采用的运行稳定、安全性很高的JAVA语言开发',
  179. },
  180. {
  181. value: '拥有强大的考试并发负载能力,支持万人以上考生同时在线考试',
  182. },
  183. {
  184. value: '分布式微服务架构、开放、安全、高能、高可靠的服务调用',
  185. },
  186. {
  187. value: '为企业快速,灵活构建大规模分布式服务应用提供基础',
  188. },
  189. ],
  190. order: 2,
  191. },
  192. img: {
  193. url: require('~/static/codeImage/code-jingli.png'),
  194. order: 1,
  195. },
  196. mianfei: false,
  197. zixun: true,
  198. shenqing: true,
  199. myType: 'kaoshi'
  200. },
  201. {
  202. content: {
  203. title: '多维度统计分析,考试结果可视化',
  204. des: '',
  205. list: [
  206. {
  207. value: '智能判分系统,减轻管理员工工作压力,考后直接出成绩及排行榜等信息',
  208. },
  209. {
  210. value: '从用户、考试、成绩、试题、排名、机构等层面多维度分析考试结果,掌握考生考试情况',
  211. },
  212. ],
  213. order: 1,
  214. },
  215. img: {
  216. url: require('~/static/codeImage/code-jingli.png'),
  217. order: 2,
  218. },
  219. mianfei: false,
  220. zixun: true,
  221. shenqing: true,
  222. myType: 'kaoshi'
  223. }
  224. ],
  225. curActive: 1,
  226. }
  227. },
  228. }
  229. </script>
  230. <style lang="scss" scoped>
  231. .active {
  232. color: green;
  233. }
  234. .platform-products-services {
  235. .client-title {
  236. font-size: 30px;
  237. font-weight: 800;
  238. text-align: center;
  239. color: #333;
  240. margin-top: 80px;
  241. margin-bottom: 70px;
  242. }
  243. .btn-groups {
  244. margin-top: 48px;
  245. .btn-item {
  246. margin-right: 20px;
  247. }
  248. }
  249. }
  250. </style>