fund.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <template>
  2. <view class="center">
  3. <view class="top"><image src="../../static/img/fundtop.png" mode="" class="bg"></image></view>
  4. <view class="main-box">
  5. <view class="main-title">
  6. <view class="main-title-image"><image class="image" src="../../static/icon/title.png" mode=""></image></view>
  7. <view class="main-title-font">基金介绍</view>
  8. </view>
  9. <view class="main" v-html="content">
  10. 博赢同创.<br> 一、基金资金来源:<br> 1.博赢同创互助义工平台管理费用固定5%,作为专项基金 <br> 2.互助平台注册义工,热心人士自愿参与捐赠。<br> 二、援助对象: <br>     
  11. 注册时间180天以上,并成为有效合格义工90天以上的注册义工及直系亲属(仅限子女、父母)以及配偶。<br> 三、受援助重大疾病类别:<br>
  12. 依据中华人民共和国保险法,及中国太平人寿保险公司合同条例保险法对应的150种重疾。<br> 四、援助金额:最高50万(最高个人授援金额为个人帮扶行为的十倍)。
  13. <br>五、基金池管理细则: 1.基金池基金来源、余额秉承着公平、公开、公正的原则,时时公布。 2.基金池内基金分配: (1)基金池成立之日,每月清算。
  14. (2)当月基金池30%:基金池储备、应急基金,用于基金会突发性重要事务支出或国家重大灾难捐助支出。 (3)当月基金池20%基金用于基金会组织开展活动费用支出。
  15. (4)当月基金池50%基金用于合格爱心义工援助。
  16. </view>
  17. </view>
  18. <view class="index1"><image src="../../static/img/fundbottom.png" mode=""></image></view>
  19. </view>
  20. </template>
  21. <script>
  22. import { details } from '@/api/index.js';
  23. export default {
  24. data() {
  25. return {
  26. content:''
  27. };
  28. },
  29. onLoad() {
  30. uni.setNavigationBarTitle({
  31. title: this.$t('foo.xq')
  32. });
  33. details({},3).then(({data}) =>{
  34. console.log(data)
  35. this.content = data.content
  36. })
  37. }
  38. };
  39. </script>
  40. <style lang="scss">
  41. .top {
  42. position: relative;
  43. display: flex;
  44. flex-direction: column;
  45. z-index: 10;
  46. .bg {
  47. height: 900rpx;
  48. width: 100%;
  49. }
  50. }
  51. .index1 {
  52. margin-top: -400rpx;
  53. width: 100%;
  54. height: 713rpx;
  55. position: relative;
  56. image {
  57. width: 100%;
  58. height: 100%;
  59. }
  60. }
  61. .main-box {
  62. margin: 80rpx 30rpx 0;
  63. position: relative;
  64. z-index: 20;
  65. padding: 20rpx;
  66. background-color: #1f2020;
  67. border-radius: 10rpx;
  68. .main-title {
  69. width: 300rpx;
  70. height: 80rpx;
  71. margin: -60rpx auto 0;
  72. border-radius: 50rpx;
  73. position: relative;
  74. .main-title-image {
  75. position: absolute;
  76. left: 0;
  77. top: 0;
  78. width: 300rpx;
  79. height: 80rpx;
  80. .image {
  81. width: 100%;
  82. height: 100%;
  83. border-radius: 50rpx;
  84. }
  85. }
  86. .main-title-font {
  87. position: relative;
  88. z-index: 100;
  89. text-align: center;
  90. line-height: 80rpx;
  91. font-size: 46rpx;
  92. font-weight: bold;
  93. color: #54300f;
  94. }
  95. }
  96. .main {
  97. padding: 40rpx 0;
  98. color: #eecca7;
  99. .main-item {
  100. margin-top: 20rpx;
  101. width: 100%;
  102. padding: 14rpx;
  103. background: #e6c3a1;
  104. position: relative;
  105. border-radius: 20rpx;
  106. .main-image {
  107. position: absolute;
  108. top: -2rpx;
  109. left: -2rpx;
  110. width: 60rpx;
  111. height: 110rpx;
  112. image {
  113. width: 100%;
  114. height: 100%;
  115. }
  116. }
  117. .main-font {
  118. font-size: 28rpx;
  119. padding-left: 80rpx;
  120. }
  121. }
  122. }
  123. }
  124. </style>