移动端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

101 line
2.1 KiB

  1. <template>
  2. <div class="home_wrapper">
  3. <header-nav
  4. :headings="headingsTitle"
  5. :currentNav="1"
  6. returnUrl="/sunVillage/index"
  7. ></header-nav>
  8. <projectNav :serialTag="1"></projectNav>
  9. <div class="focus_news">
  10. <div class="news_img">
  11. <img src="@/assets/images/sunVillage/8.jpg" />
  12. </div>
  13. <div class="news_title">村一季度财务情况公布</div>
  14. </div>
  15. <div class="news_list">
  16. <ul>
  17. <li class="item_block" @click="skip('/sunVillage/injoint/details')">
  18. <div class="title">一季度收入公开</div>
  19. <div class="insets">
  20. <img src="@/assets/images/sunVillage/2.jpg" />
  21. </div>
  22. </li>
  23. <li class="item_block" @click="skip('/sunVillage/injoint/details')">
  24. <div class="title">二季度收入公开</div>
  25. <div class="insets">
  26. <img src="@/assets/images/sunVillage/2.jpg" />
  27. </div>
  28. </li>
  29. </ul>
  30. </div>
  31. </div>
  32. </template>
  33. <style scoped lang="scss">
  34. .home_wrapper {
  35. width: 100%;
  36. padding-top: 198px;
  37. min-height: 100vh;
  38. background: #fff;
  39. .focus_news {
  40. margin: 20px 24px 16px;
  41. .news_img {
  42. width: 702px;
  43. height: 256px;
  44. img {
  45. width: 100%;
  46. height: 100%;
  47. }
  48. }
  49. .news_title {
  50. font-size: 24px;
  51. margin-top: 16px;
  52. }
  53. }
  54. .news_list {
  55. li {
  56. display: flex;
  57. height: 146px;
  58. justify-content: center;
  59. align-items: center;
  60. padding: 0 33px;
  61. .title {
  62. padding-left: 8px;
  63. flex: 1;
  64. font-size: 28px;
  65. }
  66. .insets {
  67. width: 116px;
  68. margin-left: 26px;
  69. height: 116px;
  70. img {
  71. width: 100%;
  72. height: 100%;
  73. }
  74. }
  75. }
  76. }
  77. }
  78. </style>
  79. <script>
  80. import headerNav from "@/components/sunVillage/common/header.vue";
  81. import projectNav from "@/components/sunVillage/injoint/nav";
  82. export default {
  83. name: "sunVillageInjoint",
  84. components: { headerNav, projectNav },
  85. data() {
  86. return {
  87. headingsTitle: "三资公开",
  88. };
  89. },
  90. mounted() {},
  91. methods: {
  92. skip(url) {
  93. this.$router.push(url);
  94. },
  95. },
  96. };
  97. </script>