appointment_success.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. <template>
  2. <view class="safeArea">
  3. <view style="padding: 8rpx;">
  4. <view class="box1">
  5. <view>您所报考的【XXXXX】专业</view>
  6. <view class="status">
  7. <u-icon name="checkmark-circle" color="#34C759" size="32"></u-icon><text style="margin-left: 8rpx;">考试预约成功</text>
  8. </view>
  9. </view>
  10. <view class="box2">
  11. <view class="title2">报考学员信息</view>
  12. <u-line color="#D6D6DB" />
  13. <view class="boxMain">
  14. <view class="list_item">
  15. <view class="txt_left">姓名</view>
  16. <view class="txt_right">倪虹洁</view>
  17. </view>
  18. <view class="list_item">
  19. <view class="txt_left">身份证</view>
  20. <view class="txt_right">44046354687236685698</view>
  21. </view>
  22. <view class="list_item">
  23. <view class="txt_left">考试身份</view>
  24. <view class="txt_right">非补考学员</view>
  25. </view>
  26. </view>
  27. </view>
  28. <view class="box2">
  29. <view class="title2">考试预约信息</view>
  30. <u-line color="#D6D6DB" />
  31. <view class="boxMain">
  32. <view class="list_item">
  33. <view class="txt_left">考试标题</view>
  34. <view class="txt_right txt_right1">2020年二建建筑工程管理与实补考标题</view>
  35. </view>
  36. <view class="list_item">
  37. <view class="txt_left">报名开放时间</view>
  38. <view class="txt_right">2021/10/23 ~ 2021/10/29</view>
  39. </view>
  40. <view class="list_item">
  41. <view class="txt_left">报考专业</view>
  42. <view class="txt_right">XXXXX专业</view>
  43. </view>
  44. <view class="list_item">
  45. <view class="txt_left">考试地点</view>
  46. <view class="txt_right">广州市天河区燕岭路建设大厦3楼</view>
  47. </view>
  48. <view class="list_item">
  49. <view class="txt_left">考试时间</view>
  50. <view class="txt_right">2021/10/23 10:00 ~ 11:00</view>
  51. </view>
  52. <view class="list_item">
  53. <view class="txt_left">考前培训地点</view>
  54. <view class="txt_right">广州市天河区燕岭路建设大厦3楼</view>
  55. </view>
  56. <view class="list_item">
  57. <view class="txt_left">考前培训时间</view>
  58. <view class="txt_right">2021/10/23 10:00:00</view>
  59. </view>
  60. <view class="tip">*您可在“我的>我的考试预约”中查询</view>
  61. </view>
  62. </view>
  63. <view style="height: 120rpx;"></view>
  64. <view class="foot safeArea">
  65. <view class="btn return">返回我的网课</view>
  66. <view class="btn view">查看【我的考试预约】</view>
  67. </view>
  68. </view>
  69. </view>
  70. </template>
  71. <script>
  72. import { mapGetters } from 'vuex';
  73. export default {
  74. components: {
  75. },
  76. data() {
  77. return {
  78. };
  79. },
  80. onShow() {
  81. },
  82. methods: {
  83. },
  84. onReachBottom() {},
  85. computed: { ...mapGetters(['userInfo']) }
  86. };
  87. </script>
  88. <style >
  89. ::-webkit-scrollbar{
  90. width: 0;
  91. height: 0;
  92. color: transparent
  93. }
  94. page{
  95. background-color: #EAEEF1;
  96. }
  97. </style>
  98. <style scoped lang="scss">
  99. .tip{
  100. font-size: 24rpx;
  101. color: #999999;
  102. height: 40rpx;
  103. line-height: 40rpx;
  104. }
  105. .title2{
  106. font-size: 30rpx;
  107. font-weight: bold;
  108. color: #333333;
  109. height: 90rpx;
  110. line-height: 90rpx;
  111. margin-left: 30rpx;
  112. }
  113. .box2{
  114. width: 100%;
  115. background: #FFFFFF;
  116. border-radius: 16rpx;
  117. margin-top: 16rpx;
  118. .boxMain{
  119. padding: 30rpx;
  120. }
  121. .list_item{
  122. display: flex;
  123. justify-content: space-between;
  124. align-items: center;
  125. line-height: 1;
  126. &:not(:last-child){
  127. margin-bottom: 57rpx;
  128. }
  129. .txt_left{
  130. font-size: 24rpx;
  131. color: #666666;
  132. }
  133. .txt_right{
  134. color: #333333;
  135. font-size: 30rpx;
  136. font-weight: bold;
  137. width: 75%;
  138. text-align: right;
  139. &.txt_right1{
  140. width:370rpx;
  141. text-align: left;
  142. line-height: 1.4;
  143. }
  144. }
  145. }
  146. }
  147. .box1{
  148. width: 100%;
  149. background: #FFFFFF;
  150. border-radius: 16rpx;
  151. padding: 15rpx;
  152. text-align: center;
  153. .status{
  154. font-size: 36rpx;
  155. font-family: PingFang SC;
  156. font-weight: bold;
  157. color: #34C759;
  158. margin: 19rpx 0;
  159. }
  160. }
  161. .foot{
  162. height: 98rpx;
  163. width: 100%;
  164. position: fixed;
  165. bottom: 0;
  166. left: 0;
  167. background: rgba(255, 255, 255, 0.98);
  168. box-sizing: unset;
  169. display: flex;
  170. justify-content: center;
  171. align-items: center;
  172. .btn{
  173. height: 80rpx;
  174. line-height: 80rpx;
  175. border-radius: 40rpx;
  176. font-size: 30rpx;
  177. font-family: PingFang SC;
  178. font-weight: bold;
  179. text-align: center;
  180. }
  181. .return{
  182. width: 264rpx;
  183. background: #F5F5F5;
  184. color: #007AFF;
  185. }
  186. .view{
  187. width: 374rpx;
  188. background: #007AFF;
  189. color: #FFFFFF;
  190. margin-left:24rpx;
  191. }
  192. }
  193. </style>