applicList.vue 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <template>
  2. <view class="contetn">
  3. <view class="jg" style="height: 50rpx;">
  4. </view>
  5. <view class="applic-wrap" v-for="item in navList" @click="navTo(item.path)">
  6. <image :src="item.bgimg" mode="" class="item-bg"></image>
  7. <view class="item-tit">{{item.tit}}</view>
  8. <view class="item-content">{{item.content}}</view>
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. export default {
  14. data() {
  15. return {
  16. navList: [{
  17. tit: '志愿者报名',
  18. content: '成为红十字志愿者',
  19. path: '/pages/form/tovolApply',
  20. bgimg: '../../static/img/applic-1.png'
  21. },
  22. {
  23. tit: '个人/团体会员报名',
  24. content: '加入红十字成为会员',
  25. path: '/pages/cart/cart',
  26. bgimg: '../../static/img/applic-2.png'
  27. },
  28. {
  29. tit: '普及培训',
  30. content: '一起学习救援知识',
  31. path: '/pages/train/index',
  32. bgimg: '../../static/img/applic-3.png'
  33. },
  34. {
  35. tit: '遗体器官捐献',
  36. content: '报名捐献遗体器官',
  37. path: '/pages/form/applicationForm',
  38. bgimg: '../../static/img/applic-4.png'
  39. }
  40. ]
  41. }
  42. },
  43. methods: {
  44. navTo(url) {
  45. uni.navigateTo({
  46. url,
  47. fail() {
  48. uni.switchTab({
  49. url
  50. })
  51. }
  52. })
  53. }
  54. }
  55. }
  56. </script>
  57. <style lang="scss" scoped>
  58. page {
  59. background-color: #fff;
  60. height: 100%;
  61. }
  62. .applic-wrap {
  63. width: 630rpx;
  64. height: 230rpx;
  65. margin: auto;
  66. margin-bottom: 40rpx;
  67. position: relative;
  68. padding: 70rpx 50rpx;
  69. .item-bg {
  70. position: absolute;
  71. top: 0;
  72. left: 0;
  73. width: 630rpx;
  74. height: 230rpx;
  75. }
  76. .item-tit {
  77. position: relative;
  78. font-size: 38rpx;
  79. font-family: PingFang SC;
  80. font-weight: bold;
  81. color: #333333;
  82. }
  83. .item-content {
  84. position: relative;
  85. font-size: 24rpx;
  86. font-family: PingFang SC;
  87. font-weight: bold;
  88. color: rgba(153, 153, 153, 0.5);
  89. padding-top: 24rpx;
  90. }
  91. }
  92. </style>