驾考受理查询支付宝小程序、网页
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

112 lines
2.0 KiB

10 months ago
  1. <template>
  2. <view class="content">
  3. <view class="t1">
  4. 浙江省金华市公安局交通警察支队车辆管理所
  5. </view>
  6. <view class="t2">
  7. 科目三 道路驾驶技能考试预约凭证
  8. </view>
  9. <view class="text">
  10. <text>流水号</text> G190604136825
  11. </view>
  12. <view class="text">
  13. <text>考生姓名</text> 邓成刚
  14. </view>
  15. <view class="text">
  16. <text>身份证号码</text> 53212819950102339X
  17. </view>
  18. <view class="text">
  19. <text>准考证号码</text> 330705018752
  20. </view>
  21. <view class="text">
  22. <text>考试车型</text> C1
  23. </view>
  24. <view class="text">
  25. <text>考试日期</text> 2020-07-08
  26. </view>
  27. <view class="text">
  28. <text>考试场地</text> 金华市考试中心科目三智能化考场
  29. </view>
  30. <view class="text">
  31. <text>考试场次</text> 12:30-17:30
  32. </view>
  33. <view class="erweim">
  34. <image src=""/>
  35. </view>
  36. <view class="z">
  37. <view class="title">
  38. 注意事项:
  39. </view>
  40. <view class="text">
  41. 1凭此证在有效期内携带有效身份证参加考试以备核查;
  42. </view>
  43. <view class="text">
  44. 2考试提前半小时到场签到如未按时参加考试的判定此次考试不及格;
  45. </view>
  46. <view class="text">
  47. 3考试期间禁止携带手机或通讯设备进入考场;
  48. </view>
  49. </view>
  50. </view>
  51. </template>
  52. <script>
  53. export default {
  54. data() {
  55. return {
  56. }
  57. },
  58. onLoad() {
  59. },
  60. methods: {
  61. }
  62. }
  63. </script>
  64. <style lang="scss" scoped>
  65. .content{
  66. color: #000;
  67. line-height: 50rpx;
  68. .t1{
  69. text-align: center;
  70. padding: 30rpx 0;
  71. font-size: 33rpx;
  72. font-weight: 600;
  73. }
  74. .t2{
  75. text-align: center;
  76. padding-bottom: 30rpx;
  77. font-size: 36rpx;
  78. font-weight: 900;
  79. }
  80. .text{
  81. color: #555;
  82. padding: 0 20rpx;
  83. text{
  84. color: #000;
  85. }
  86. }
  87. .erweim{
  88. display: flex;
  89. justify-content: center;
  90. align-items: center;
  91. padding: 40rpx 0;
  92. image{
  93. background-color: #777;
  94. height: 400rpx;
  95. width: 400rpx;
  96. }
  97. }
  98. .z{
  99. .title{
  100. padding: 0 20rpx;
  101. font-weight: 900;
  102. }
  103. .text{
  104. color: #000;
  105. }
  106. }
  107. }
  108. </style>