skillTraining.vue 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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="content">
  6. <!-- 图片 -->
  7. <view class="picture">
  8. <img src="@/assets/img/traniningPicture.png" alt="">
  9. </view>
  10. <u-line color="#e6e6e6"/>
  11. <!-- 标题 -->
  12. <view class="title">
  13. 育婴师资格证(高级)认证机构培训
  14. </view>
  15. <!-- 报名状态 -->
  16. <view class="state">
  17. 开放报名
  18. </view>
  19. </view>
  20. <view class="content">
  21. <!-- 图片 -->
  22. <view class="picture">
  23. <img src="@/assets/img/traniningPicture.png" alt="">
  24. </view>
  25. <u-line color="#e6e6e6"/>
  26. <!-- 标题 -->
  27. <view class="title">
  28. 育婴师资格证(高级)认证机构培训
  29. </view>
  30. <!-- 报名状态 -->
  31. <view class="state state2">
  32. 开放报名
  33. </view>
  34. </view>
  35. </view>
  36. </template>
  37. <script>
  38. export default {
  39. data() {
  40. return {
  41. }
  42. },
  43. methods: {
  44. }
  45. }
  46. </script>
  47. <style>
  48. page {
  49. background: #F0F0F2;
  50. padding-bottom: 50px;
  51. }
  52. </style>
  53. <style lang="scss" scoped>
  54. .content{
  55. margin: 24rpx 32rpx 0;
  56. background-color: #fff;
  57. padding: 24rpx;
  58. border-radius: 24rpx;
  59. .picture{
  60. width: 100%;
  61. height: 240rpx;
  62. margin-bottom: 24rpx;
  63. img{
  64. width: 100%;
  65. height: 100%;
  66. }
  67. }
  68. .title{
  69. color: rgba(16, 16, 16, 1);
  70. font-size: 32rpx;
  71. margin-top: 24rpx;
  72. }
  73. // 报名状态
  74. .state{
  75. color: rgba(0, 185, 98, 1);
  76. font-size: 24rpx;
  77. margin-top: 60rpx;
  78. }
  79. .state2{
  80. color: rgba(153, 153, 153, 1);
  81. }
  82. }
  83. </style>