detail.vue 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <template>
  2. <div class="container">
  3. <ol class="detail items width1200">
  4. <h2>考生指引</h2>
  5. <li>1.考前请确认下载“酷乐秀”最新版本APP</li>
  6. <li>2.打开“酷乐秀”APP后需要允许“酷乐秀”APP使用手机权限</li>
  7. <li>3.已通过H5链接报名的考生首次登录“酷乐秀”APP请使用短信验证码登录</li>
  8. <li>4.请使用“网络检测”、“设备检测”功能确保您所使用的考试网络环境与手机设备处在能够完成直播考试的状态</li>
  9. <li>5.考试当天请确保考试时保证网络通畅、手机不要开启其他应用,保证手机中有至少2G存储空间</li>
  10. <li>6.考生需在考试当天通过“准考证”进入考场进行签到</li>
  11. <li>7.进入考场后,点击【设备检查及考试引导】再次对网络、手机进行检测,并仔细阅读【考试引导】</li>
  12. <li>8.签到完成后请仔细阅读【考试注意事项】,底部按钮会显示当前您还需要等待多少位考生和预计等待时间,请随时注意底部按钮的文字和颜色变化</li>
  13. <li>9.当您的网络出现波动,影响直播考试时,评委会切换到下一位考生继续考试,您需要根据系统提示点击【确定】,再次进行设备检查及【考试引导】,确认网络状况正常后重新进行【签到】,重新排队等待考试</li>
  14. <li>10.直播考试若网络状况较差时,评审会要求您使用【录播】完成考试,系统会提示您【当前状态无法正常完成在线直播考试,主考官建议您录播上传考试视频】,请根据提示点击【去录播】</li>
  15. <li>11.进入录播界面后仔细阅读系统指引,在录播规定时间内完成视频录制并上传,点击【完成考试】后不可继续录制视频,请确认完成所有考级曲目录制后点击【完成考试】,考试结束</li>
  16. </ol>
  17. <div class="width1200">
  18. <div class="otherWrap">
  19. <a :href="src"
  20. target="_blank">查看更多 ></a>
  21. </div>
  22. </div>
  23. </div>
  24. </template>
  25. <script>
  26. export default {
  27. data () {
  28. return {
  29. src: require('@/assets/matters.pdf'), // pdf文件地址
  30. }
  31. },
  32. methods: {
  33. }
  34. }
  35. </script>
  36. <style lang="less" scoped>
  37. .container {
  38. background: url("../images/detail.png") no-repeat center;
  39. background-size: cover;
  40. background-attachment: fixed;
  41. color: #fff;
  42. height: 847px;
  43. display: flex;
  44. flex-direction: column;
  45. position: relative;
  46. .otherWrap {
  47. width: 100%;
  48. margin-top: 25px;
  49. display: flex;
  50. flex-direction: row;
  51. justify-content: flex-start;
  52. padding-left: 100px;
  53. a {
  54. // color: #2dc7aa;
  55. color: #fff;
  56. text-decoration: none;
  57. &:hover {
  58. // color: #25ab92;
  59. color: #cecece;
  60. text-decoration: underline;
  61. }
  62. }
  63. }
  64. }
  65. .detail {
  66. width: 1084px;
  67. margin: 75px auto 0;
  68. h2 {
  69. text-align: center;
  70. font-size: 34px;
  71. line-height: 48px;
  72. margin-bottom: 42px;
  73. font-weight: 500;
  74. }
  75. &.items {
  76. padding-left: 40px;
  77. li {
  78. display: block;
  79. text-align: left;
  80. font-size: 15px;
  81. line-height: 34px;
  82. margin-bottom: 20px;
  83. text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.26);
  84. }
  85. }
  86. a {
  87. position: absolute;
  88. left: 0;
  89. bottom: 0;
  90. }
  91. }
  92. </style>