index.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <template>
  2. <div class="100vw">
  3. <img class="w-full" src="@/assets/img/login/top_bg.png" />
  4. <div class="pt30 w-full">
  5. <div class="flex justify-center">
  6. <div class="w1200 h543 bg-light-pink flex items-center content-center">
  7. <div class="text-left ml90 w-1/2">
  8. <div
  9. class="bg-primary-yellow pl25 pr25 lh50 font24 font-bold flex-grow-0 inline-block mb20"
  10. >
  11. 考试须知
  12. </div>
  13. <div>
  14. <div
  15. class="text-left font18 font-bold"
  16. v-for="(item, index) in intro"
  17. :key="index"
  18. >
  19. {{ item }}
  20. </div>
  21. </div>
  22. </div>
  23. <div class="w-1/2 flex justify-center flex-wrap">
  24. <span class="font24 w-full font-bold">XX考场xx考台</span>
  25. <div class="mt30 font-semibold">
  26. <div class="text-left text-red-500 font20">
  27. 身份证号:888888888888888888
  28. </div>
  29. <div class="text-left text-red-500 font20">考生姓名:夏紫云</div>
  30. </div>
  31. <div class="w-full mt30">
  32. <div
  33. class="bg-primary-yellow pl25 pr25 lh40 font24 font-bold flex-grow-0 inline-block mb20 round4 cursor-pointer"
  34. >
  35. 确定
  36. </div>
  37. </div>
  38. <div class="text-left text-red-500 font20 font-bold">点击"确定"按钮开始考试!</div>
  39. </div>
  40. </div>
  41. </div>
  42. </div>
  43. </div>
  44. </template>
  45. <script lang="ts">
  46. import { defineComponent } from "vue";
  47. export default defineComponent({
  48. setup() {
  49. return {
  50. intro: [
  51. "1、遵守考场纪律服从监考人员指挥",
  52. "2、进入考场,手机、拷机关机。禁止抽烟禁止吃零食。",
  53. "3、未经工作人员允许考生禁止随意出入考场",
  54. "4、考场内禁止大声喧呼,禁止随意走动",
  55. "5、考试中认真答题不准交头接耳",
  56. "6、考试中不准冒名顶替不准弄虚作假",
  57. "7、注意考场卫生,禁止随地吐痰,禁止乱扔纸屑。",
  58. "8、爱护公物及考试设备",
  59. ],
  60. };
  61. },
  62. });
  63. </script>
  64. <style scoped>
  65. .w1200 {
  66. width: 1200px;
  67. }
  68. .bg-light-pink {
  69. background: #fffcef;
  70. }
  71. .bg-primary-yellow {
  72. background: #f9de5b;
  73. }
  74. </style>