移动端
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.
 
 

146 lines
3.5 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="3"></projectNav>
  9. <div class="public_details">
  10. <div class="search_wrap">
  11. <div class="search_ipt">
  12. <input type="text" placeholder="请输入查询信息" class="ipt" />
  13. </div>
  14. <div class="search_btn">查询</div>
  15. </div>
  16. <div class="table_wrap">
  17. <div class="head_main">
  18. <div class="flex f1">资产名称</div>
  19. <div class="flex f2">数量</div>
  20. <div class="flex f3">性质</div>
  21. <div class="flex f4">构建时间</div>
  22. </div>
  23. <div class="tbody_main">
  24. <div class="item_list">
  25. <div class="flex f1">18号大楼1233</div>
  26. <div class="flex f2">1</div>
  27. <div class="flex f3">经营</div>
  28. <div class="flex f4">2022/02/25</div>
  29. </div>
  30. <div class="item_list">
  31. <div class="flex f1">18号大楼1233</div>
  32. <div class="flex f2">1</div>
  33. <div class="flex f3">经营</div>
  34. <div class="flex f4">2022/02/25</div>
  35. </div>
  36. </div>
  37. </div>
  38. </div>
  39. </div>
  40. </template>
  41. <style scoped lang="scss">
  42. .home_wrapper {
  43. width: 100%;
  44. min-height: 100vh;
  45. background: #fff;
  46. .public_details {
  47. margin: 20px 24px 0;
  48. .search_wrap {
  49. height: 84px;
  50. display: flex;
  51. border-bottom: 1px solid #e6e6e6;
  52. .search_ipt {
  53. flex: 1;
  54. display: flex;
  55. padding: 0 20px;
  56. .ipt {
  57. flex: 1;
  58. font-size: 34px;
  59. }
  60. }
  61. .search_btn {
  62. width: 110px;
  63. font-size: 34px;
  64. color: #b3b3b3;
  65. display: flex;
  66. justify-content: center;
  67. align-items: center;
  68. border-left: 1px solid #e6e6e6;
  69. }
  70. }
  71. .table_wrap {
  72. .head_main {
  73. height: 76px;
  74. display: flex;
  75. color: #bababa;
  76. .flex {
  77. display: flex;
  78. justify-content: center;
  79. align-items: center;
  80. text-align: center;
  81. &.f1 {
  82. flex: 4;
  83. }
  84. &.f2 {
  85. flex: 2;
  86. }
  87. &.f3 {
  88. flex: 2;
  89. }
  90. &.f4 {
  91. flex: 4;
  92. }
  93. }
  94. }
  95. .tbody_main {
  96. .item_list {
  97. height: 150px;
  98. display: flex;
  99. .flex {
  100. display: flex;
  101. justify-content: center;
  102. align-items: center;
  103. text-align: center;
  104. overflow: hidden;
  105. white-space: nowrap;
  106. text-overflow: ellipsis;
  107. &.f1 {
  108. flex: 4;
  109. }
  110. &.f2 {
  111. flex: 2;
  112. }
  113. &.f3 {
  114. flex: 2;
  115. }
  116. &.f4 {
  117. flex: 4;
  118. }
  119. }
  120. }
  121. }
  122. }
  123. }
  124. }
  125. </style>
  126. <script>
  127. import headerNav from "@/components/sunVillage/common/header.vue";
  128. import projectNav from "@/components/sunVillage/injoint/nav";
  129. export default {
  130. name: "sunVillageInjoint",
  131. components: { headerNav, projectNav },
  132. data() {
  133. return {
  134. headingsTitle: "三资公开",
  135. };
  136. },
  137. mounted() {},
  138. methods: {
  139. skip(url) {
  140. this.$router.push(url);
  141. },
  142. },
  143. };
  144. </script>