index.vue 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <template>
  2. <div class="client-platform-page tiyan-center-page">
  3. <!-- 体验中心 banner栏 --><!--style="url('/static/images/client/exam/exam-banner-background.png')" -->
  4. <div class="client-platform-banner">
  5. <div :style="{backgroundImage: `url(${tiyanCenterImg})`}"></div>
  6. </div>
  7. <!-- 麦塔在线考试系统体验版 -->
  8. <div class="platform-products-experience client-container">
  9. <h4 class="client-title">麦塔在线考试系统体验版</h4>
  10. <p>简单好用的SaaS考试系统</p>
  11. <ul class="experience-ul-box">
  12. <li><div @mouseenter="enterCodeKs" @mouseleave="leaveCodeKs"><i></i><h5>手机学员端</h5><p>用手机扫描二维码</p><p>考生30秒体验答卷</p><a style="cursor: default">扫码体验</a><span ref="codeBtnKs"><em></em></span></div></li>
  13. <li><div><i></i><h5>电脑学员端</h5><p>支持市面各种主流浏览器</p><p>支持十万量级的考试并发</p><a href="https://youkeksc.mtavip.com/c/youke" target="_blank">立即体验</a></div></li>
  14. <li><div><i></i><h5>电脑管理端</h5><p>欢迎体验麦塔系统后台</p><p>三步轻松组织一场考试</p><a href="https://youkeksa.mtavip.com/a/youke" target="_blank">后台体验</a></div></li>
  15. </ul>
  16. </div>
  17. <!-- 麦塔在线培训系统 -->
  18. <div class="platform-products-experience client-container">
  19. <h4 class="client-title">麦塔在线培训系统体验版</h4>
  20. <p>学练考评一站式培训平台</p>
  21. <ul class="experience-ul-box">
  22. <li><div @mouseenter="enterCodePx" @mouseleave="leaveCodePx"><i></i><h5>手机学员端</h5><p>用手机扫描二维码</p><p>随时随地想学就学</p><a style="cursor: default">扫码体验</a><span ref="codeBtnPx"><em class="px-img-box"></em></span></div></li>
  23. <li><div><i></i><h5>电脑学员端</h5><p>学练考评一站式培训平台</p><p>支持市面各种主流浏览器</p><a href="https://youkepxc.mtavip.com/c/youke" target="_blank">立即体验</a></div></li>
  24. <li><div><i></i><h5>电脑管理端</h5><p>欢迎体验麦塔系统后台</p><p>三步轻松组织一场考试</p><a href="https://youkepxa.mtavip.com/a/youke" target="_blank">后台体验</a></div></li>
  25. </ul>
  26. </div>
  27. <!-- 企业考培立即注册-->
  28. <div class="tiyan-center-register">
  29. <div class="client-container">
  30. <h5>企业考培,就用麦塔</h5>
  31. <p>现在注册立享<span>30人</span>纯免费版本<span>3年</span>使用权限</p>
  32. <a>立即注册</a>
  33. </div>
  34. </div>
  35. </div>
  36. </template>
  37. <script>
  38. export default {
  39. name: 'tiyanCenter',
  40. layout: 'templateB',
  41. async asyncData({ $axios,store }) {
  42. // 设置选中菜单
  43. store.commit('setActiveNav', '/tiyanCenter');
  44. },
  45. data() {
  46. return {
  47. // 发展现状img
  48. tiyanCenterImg: require(`~/static/images/client/tiyanCenter/tiyanCenterImg.png`),
  49. };
  50. },
  51. head(){
  52. return {
  53. }
  54. },
  55. computed: {},
  56. methods: {
  57. // 考试鼠标移入
  58. enterCodeKs(){
  59. this.$refs.codeBtnKs.style.bottom ='90px';
  60. },
  61. // 考试鼠标移出
  62. leaveCodeKs(){
  63. this.$refs.codeBtnKs.style.bottom ='305px';
  64. },
  65. // 培训鼠标移入
  66. enterCodePx(){
  67. this.$refs.codeBtnPx.style.bottom ='90px';
  68. },
  69. // 培训鼠标移出
  70. leaveCodePx(){
  71. this.$refs.codeBtnPx.style.bottom ='305px';
  72. },
  73. },
  74. created() {
  75. },
  76. mounted() {
  77. },
  78. beforeDestroy() {
  79. },
  80. };
  81. </script>