toOrgan.vue 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <template>
  2. <view class="content">
  3. <view class="box">
  4. <view class="box-1">
  5. <navigator url="/pages/applic/teamSign">
  6. <view class="img">
  7. <image src="../../static/img/ack.png" mode=""></image>
  8. </view>
  9. <view class="title">
  10. 团体报名
  11. </view>
  12. </navigator>
  13. </view>
  14. <view class="box-1">
  15. <navigator url="/pages/applic/perSign">
  16. <view class="img">
  17. <image src="../../static/img/timg01.jpeg"></image>
  18. </view>
  19. <view class="title">
  20. 个人报名
  21. </view>
  22. </navigator>
  23. </view>
  24. <!-- <view class="box-1">
  25. <navigator url="/pages/applic/applic">
  26. <view class="img">
  27. <image src="../../static/img/spread.png"></image>
  28. </view>
  29. <view class="title">
  30. 造血干细胞入库申请表
  31. </view>
  32. </navigator>
  33. </view> -->
  34. </view>
  35. </view>
  36. </template>
  37. <script>
  38. </script>
  39. <style lang="scss">
  40. .content{
  41. background-color: #F8F8F8;
  42. .box{
  43. padding: 0 24rpx;
  44. .box-1{
  45. margin-top: 24rpx;
  46. width: 100%;
  47. height: 442rpx;
  48. background-color: #FFFFFF;
  49. border-radius: 16rpx;
  50. .img{
  51. width: 100%;
  52. height: 300rpx;
  53. // border-radius: 16rpx 16rpx 0 0;
  54. image{
  55. border-radius: 16rpx 16rpx 0 0;
  56. width: 100%;
  57. height: 300rpx;
  58. }
  59. }
  60. .title{
  61. height: 142rpx;
  62. padding-left: 24rpx;
  63. line-height: 142rpx;
  64. font-size: 34rpx;
  65. }
  66. }
  67. }
  68. }
  69. </style>