appliSystem.vue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <template>
  2. <view class="content">
  3. <view class="box">
  4. <view class="box-1">
  5. <navigator url="/pages/applic/toknowledge">
  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/know">
  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. export default{
  39. methods:{
  40. // uni.navigateTo({
  41. // url: url
  42. // })
  43. }
  44. }
  45. </script>
  46. <style lang="scss">
  47. .content{
  48. background-color: #F8F8F8;
  49. padding-bottom: 44rpx;
  50. .box{
  51. padding: 0 24rpx;
  52. .box-1{
  53. margin-top: 24rpx;
  54. width: 100%;
  55. height: 442rpx;
  56. background-color: #FFFFFF;
  57. border-radius: 16rpx;
  58. .img{
  59. width: 100%;
  60. height: 300rpx;
  61. // border-radius: 16rpx 16rpx 0 0;
  62. image{
  63. border-radius: 16rpx 16rpx 0 0;
  64. width: 100%;
  65. height: 300rpx;
  66. }
  67. }
  68. .title{
  69. height: 142rpx;
  70. padding-left: 24rpx;
  71. line-height: 142rpx;
  72. font-size: 34rpx;
  73. }
  74. a{
  75. text-decoration: none;
  76. color: #333;
  77. }
  78. }
  79. }
  80. }
  81. </style>