移动端
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

79 рядки
1.9 KiB

  1. <template>
  2. <div class="home_wrapper">
  3. <header-nav :currentNav="2" :headings="headingsTitle"></header-nav>
  4. <div class="article_main">
  5. <div class="title">阳光村务内容1</div>
  6. <div class="info_wrap">
  7. <div class="publisher">阳光村务公开平台</div>
  8. <div class="time">2022-02-25 09:00</div>
  9. </div>
  10. </div>
  11. <div class="particulars_main">
  12. <p><img src="@/assets/images/sunVillage/3.jpg" /></p>
  13. <p>
  14. 2月22日,阳光村务内容1
  15. 阳光村务内容1阳光村务内容1阳光村务内容1阳光村务内容1阳光村务内容1阳光村务内容1阳光村务内容1阳光村务内容1
  16. </p>
  17. <p>
  18. 阳光村务内容1阳光村务内容1阳光村务内容1阳光村务内容1阳光村务内容1阳光村务内容1阳光村务内容1阳光村务内容1阳光村务内容1阳光村务内容1阳光村务内容1
  19. </p>
  20. </div>
  21. </div>
  22. </template>
  23. <style scoped lang="scss">
  24. .home_wrapper {
  25. width: 100%;
  26. padding-top: 198px;
  27. min-height: 100vh;
  28. background: #fff;
  29. .article_main {
  30. margin: 0 24px;
  31. padding-top: 15px;
  32. .title {
  33. font-size: 28px;
  34. line-height: 45px;
  35. margin-bottom: 6px;
  36. }
  37. .info_wrap {
  38. display: flex;
  39. line-height: 48px;
  40. font-size: 24px;
  41. .publisher {
  42. color: rgb(92, 107, 140);
  43. margin-right: 20px;
  44. }
  45. .time {
  46. color: #999;
  47. }
  48. }
  49. }
  50. .particulars_main {
  51. margin: 24px 24px 0;
  52. font-size: 24px;
  53. padding-bottom: 15px;
  54. img {
  55. max-width: 100%;
  56. }
  57. p {
  58. padding-bottom: 15px;
  59. }
  60. }
  61. }
  62. </style>
  63. <script>
  64. import headerNav from "@/components/sunVillage/common/header.vue";
  65. export default {
  66. name: "latestReportDesc",
  67. components: { headerNav },
  68. data() {
  69. return {
  70. headingsTitle: "民生看板",
  71. };
  72. },
  73. mounted() {},
  74. methods: {},
  75. };
  76. </script>