移动端
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

130 lines
4.1 KiB

  1. <template>
  2. <div class="app-container">
  3. <van-nav-bar
  4. title="家园"
  5. >
  6. <template #right>
  7. <van-icon name="wap-nav" color="#000" size="18"/>
  8. </template>
  9. </van-nav-bar>
  10. <van-cell-group style="width: 96%;margin:2%;border-radius: 6px;overflow: hidden;padding-top: 20px;padding-bottom: 20px;box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);">
  11. <van-cell title="村画像" is-link>
  12. <template #icon>
  13. <van-image
  14. fit="contain"
  15. height="22"
  16. style="margin-right: 15px"
  17. src="../../../static/images/onlineHome/home1.png"
  18. />
  19. </template>
  20. </van-cell>
  21. <van-cell title="村民信息" is-link >
  22. <template #icon>
  23. <van-image
  24. fit="contain"
  25. height="22"
  26. style="margin-right: 15px"
  27. src="../../../static/images/onlineHome/myIcon1.png"
  28. />
  29. </template>
  30. </van-cell>
  31. </van-cell-group>
  32. <van-cell-group style="width: 96%;margin:2%;border-radius: 6px;overflow: hidden;padding-top: 20px;padding-bottom: 20px;box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);">
  33. <van-cell title="宅基地一张图" is-link>
  34. <template #icon>
  35. <van-image
  36. fit="contain"
  37. height="22"
  38. style="margin-right: 15px"
  39. src="../../../static/images/onlineHome/home2.png"
  40. />
  41. </template>
  42. </van-cell>
  43. <van-cell title="确权一张图" is-link >
  44. <template #icon>
  45. <van-image
  46. fit="contain"
  47. height="22"
  48. style="margin-right: 15px"
  49. src="../../../static/images/onlineHome/home3.png"
  50. />
  51. </template>
  52. </van-cell>
  53. </van-cell-group>
  54. <van-cell-group style="width: 96%;margin:2%;border-radius: 6px;overflow: hidden;padding-top: 20px;padding-bottom: 20px;box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);">
  55. <van-cell title="投票" is-link to="homePoll">
  56. <template #icon>
  57. <van-image
  58. fit="contain"
  59. height="22"
  60. style="margin-right: 15px"
  61. src="../../../static/images/onlineHome/home4.png"
  62. />
  63. </template>
  64. </van-cell>
  65. <van-cell title="三务公开" is-link to="threeAffairs">
  66. <template #icon>
  67. <van-image
  68. fit="contain"
  69. height="22"
  70. style="margin-right: 15px"
  71. src="../../../static/images/onlineHome/home5.png"
  72. />
  73. </template>
  74. </van-cell>
  75. <van-collapse v-model="activeName" :border="false">
  76. <van-collapse-item title="村规民约" name="1" accordion id="rules">
  77. <template #icon>
  78. <van-image
  79. fit="contain"
  80. height="22"
  81. width="22"
  82. style="margin-right: 22px;margin-left:10px;"
  83. src="../../../static/images/onlineHome/home6.png"
  84. />
  85. </template>
  86. <template #default>
  87. <van-cell-group :border="false">
  88. <van-cell title="政策法规" is-link to="zcfg"/>
  89. <van-cell title="惠农政策" is-link to="hnzc"/>
  90. <van-cell title="工作动态" is-link to="gzdt"/>
  91. <van-cell title="制度建设" is-link to="zdjs"/>
  92. </van-cell-group>
  93. </template>
  94. </van-collapse-item>
  95. </van-collapse>
  96. </van-cell-group>
  97. <onlineHomeIndex></onlineHomeIndex>
  98. </div>
  99. </template>
  100. <script>
  101. import onlineHomeIndex from "../onlineHomeIndex";
  102. export default {
  103. components: {
  104. onlineHomeIndex
  105. },
  106. name: "home",
  107. data() {
  108. return {
  109. activeName: [],
  110. };
  111. },
  112. }
  113. </script>
  114. <style scoped>
  115. >>> .my-swipe .van-swipe-item {
  116. color: #fff;
  117. font-size: 20px;
  118. line-height: 150px;
  119. text-align: center;
  120. background-color: #39a9ed;
  121. }
  122. >>> #rules .van-collapse-item__content{
  123. padding-top: 0;
  124. padding-bottom: 0;
  125. }
  126. </style>