tocontrilist.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. <template>
  2. <view class="content">
  3. <view class="header">
  4. <view class="header-box">
  5. <view class="homeicon" @click="tocontri">
  6. <image src="../../static/img/home.png" mode=""></image>
  7. </view>
  8. <view class="home">
  9. 菜单
  10. </view>
  11. <view class="cancel" @click="tocontri">
  12. <image src="../../static/img/cancel.png" mode=""></image>
  13. </view>
  14. </view>
  15. </view>
  16. <view class="list">
  17. <view class="list-item">
  18. <a href="http://yyhszh.yygrwhg.com/willsoft/deyy/MobileView.aspx?id=1">
  19. <view class="box-1">
  20. 捐赠款物情况公示
  21. <view class="icon">
  22. <image src="../../static/icon/next.png" mode=""></image>
  23. </view>
  24. </view>
  25. </a>
  26. <a href="http://yyhszh.yygrwhg.com/willsoft/deyy/MobileView.aspx?id=8">
  27. <view class="box-1">
  28. 捐款爱心展示窗
  29. <view class="icon">
  30. <image src="../../static/icon/next.png" mode=""></image>
  31. </view>
  32. </view>
  33. </a>
  34. <view class="box-1" @click="tocontri">
  35. 捐款方式
  36. <view class="icon">
  37. <image src="../../static/icon/next.png" mode=""></image>
  38. </view>
  39. </view>
  40. </view>
  41. </view>
  42. </view>
  43. </template>
  44. <script>
  45. export default{
  46. data(){
  47. return{
  48. }
  49. },
  50. methods:{
  51. tocontri(){
  52. uni.navigateTo({
  53. url:"/pages/applic/contribution"
  54. })
  55. },
  56. }
  57. }
  58. </script>
  59. <style lang="scss">
  60. .content{
  61. background-color: #f8f8f8;
  62. .header{
  63. background-color: #FFFFFF;
  64. height: 90rpx;
  65. .header-box{
  66. font-size: 28rpx;
  67. padding: 0 32rpx;
  68. display: flex;
  69. align-items: center;
  70. justify-content: space-between;
  71. height: 70rpx;
  72. background-color: #d32d26;
  73. color: #FFFFFF;
  74. .homeicon{
  75. width: 40rpx;
  76. height: 40rpx;
  77. image{
  78. width: 40rpx;
  79. height: 40rpx;
  80. }
  81. }
  82. .cancel{
  83. width: 40rpx;
  84. height: 40rpx;
  85. image{
  86. width: 40rpx;
  87. height: 40rpx;
  88. }
  89. }
  90. }
  91. }
  92. .list{
  93. margin-top: 24rpx;
  94. width: 100%;
  95. height: 100%;
  96. background-color: #fff;
  97. .list-item{
  98. a{
  99. text-decoration: none;
  100. display: block;
  101. color: #333;
  102. }
  103. width: 100%;
  104. height: 100%;
  105. padding: 0 24rpx;
  106. font-size: 28rpx;
  107. background-color: #fff;
  108. .box-1{
  109. height: 80rpx;
  110. font-weight: 300;
  111. line-height: 80rpx;
  112. display: flex;
  113. align-items: center;
  114. justify-content: space-between;
  115. border-bottom:1rpx solid #F1F1F1;
  116. .icon{
  117. width: 34rpx;
  118. height: 34rpx;
  119. image{
  120. width: 34rpx;
  121. height: 34rpx;
  122. display: inline;
  123. }
  124. }
  125. }
  126. }
  127. }
  128. }
  129. </style>