toOrgan.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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>
  25. </view>
  26. </template>
  27. <script>
  28. </script>
  29. <style lang="scss">
  30. .content{
  31. background-color: #F8F8F8;
  32. .box{
  33. padding: 0 24rpx;
  34. .box-1{
  35. margin-top: 24rpx;
  36. width: 100%;
  37. height: 442rpx;
  38. background-color: #FFFFFF;
  39. border-radius: 16rpx;
  40. .img{
  41. width: 100%;
  42. height: 300rpx;
  43. // border-radius: 16rpx 16rpx 0 0;
  44. image{
  45. border-radius: 16rpx 16rpx 0 0;
  46. width: 100%;
  47. height: 300rpx;
  48. }
  49. }
  50. .title{
  51. height: 142rpx;
  52. padding-left: 24rpx;
  53. line-height: 142rpx;
  54. font-size: 34rpx;
  55. }
  56. }
  57. }
  58. }
  59. </style>