trainingRegistration.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. <template>
  2. <view>
  3. <u-navbar back-text="育婴师资格证(高级)认证..." back-icon-size="28" back-icon-color="#ffffff"
  4. :background="{backgroundColor: '#2795FD',}" :back-text-style="{color: '#ffffff'}"></u-navbar>
  5. <view class="background">
  6. <img src="../../assets/img/trainingBackground.png" alt="">
  7. </view>
  8. <!-- 内容 -->
  9. <view class="main">
  10. <view class="headline">
  11. 育婴师资格证(高级)认证机构培训
  12. </view>
  13. <view class="title">
  14. 培训详情
  15. </view>
  16. <view class="picture">
  17. <img src="../../assets/img/traniningPicture.png" alt="">
  18. </view>
  19. <!-- 详细信息 -->
  20. <view class="details">
  21. <view class="introduce">
  22. 培训详细介绍培训详细介绍培训详细介绍培训详细介绍培训详细介绍培训详细介绍培训详细介绍培训详细介绍培训详细介绍,培训详细介绍培训详细介绍培训详细介绍培训详细介绍。
  23. </view>
  24. <p>报名日期:2021-06-18至2021-06-20</p>
  25. <p>培训日期:2021-06-21至2021-06-22</p>
  26. <p>培训地点:开发区管委会培训中心</p>
  27. <p>联系电话:0716-8123456</p>
  28. </view>
  29. </view>
  30. <!-- 资料 -->
  31. <view class="data">
  32. <view class="title">
  33. 培训资料
  34. </view>
  35. <u-line color="#e6e6e6"/>
  36. <view class="class">
  37. <view class="text">
  38. 育婴师资格证(高级)培训课程表
  39. </view>
  40. <view class="download">
  41. <view class="icon">
  42. <img src="../../assets/img/md-file_download@1x.png" alt="">
  43. </view>
  44. <view class="download-text">
  45. 下载
  46. </view>
  47. </view>
  48. </view>
  49. </view>
  50. <!-- 报名按钮 -->
  51. <view class="bottom">
  52. <button class="sign-up">我要报名</button>
  53. </view>
  54. </view>
  55. </template>
  56. <script>
  57. export default {
  58. data() {
  59. return {
  60. }
  61. },
  62. methods: {
  63. }
  64. }
  65. </script>
  66. <style>
  67. page {
  68. background: #F0F0F2;
  69. padding-bottom: 120px;
  70. }
  71. </style>
  72. <style lang="scss" scoped>
  73. .background{
  74. width: 100%;
  75. height: 376rpx;
  76. img{
  77. width: 100%;
  78. height: 100%;
  79. }
  80. }
  81. // 内容
  82. .main{
  83. padding: 40rpx 32rpx;
  84. background-color: #fff;
  85. // 标题
  86. .headline{
  87. color: rgba(16, 16, 16, 1);
  88. font-size: 40rpx;
  89. font-family: 'PingFangSC-medium';
  90. }
  91. .title{
  92. color: rgba(51, 51, 51, 1);
  93. font-size: 32rpx;
  94. font-family: 'PingFangSC-medium';
  95. margin-top:40rpx
  96. }
  97. // 图片
  98. .picture{
  99. border-radius: 4px;
  100. width: 100%;
  101. height: 256rpx;
  102. margin-top: 50rpx;
  103. img{
  104. width:100%;
  105. height: 100%;
  106. }
  107. }
  108. // 详细信息
  109. .details{
  110. margin-top: 40rpx;
  111. line-height:48rpx;
  112. color: rgba(51, 51, 51, 1);
  113. }
  114. }
  115. // 资料
  116. .data{
  117. background-color: #fff;
  118. margin-top: 24rpx;
  119. padding: 24rpx 32rpx;
  120. .title{
  121. color: rgba(16, 16, 16, 1);
  122. font-size: 16px;
  123. font-weight: bold;
  124. margin-bottom: 24rpx;
  125. }
  126. .class{
  127. margin-top: 40rpx;
  128. border-radius: 5px;
  129. background-color: rgba(245, 245, 245, 1);
  130. padding: 28rpx 24rpx;
  131. color: #101010;
  132. display: flex;
  133. justify-content: space-between;
  134. align-items: center;
  135. .download{
  136. display: flex;
  137. align-items: center;
  138. color: rgba(22, 119, 255, 1);
  139. img{
  140. vertical-align: middle;
  141. width: 40rpx;
  142. height: 40rpx;
  143. }
  144. }
  145. }
  146. }
  147. // 报名按钮
  148. .bottom{
  149. background-color: #fff;
  150. padding: 24rpx 32rpx;
  151. position: fixed;
  152. bottom: 0;
  153. left: 0;
  154. right: 0;
  155. .sign-up{
  156. height: 96rpx;
  157. line-height: 96rpx;
  158. border-radius: 8px;
  159. background-color: rgba(39, 149, 253, 1);
  160. color: rgba(255, 255, 255, 1);
  161. font-size: 36rpx;
  162. text-align: center;
  163. }
  164. }
  165. </style>