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

169 line
4.3 KiB

  1. <template>
  2. <div class="home_wrapper">
  3. <header-nav :headings="headingsTitle" :currentNav="1"></header-nav>
  4. <div class="assetsPublic_main">
  5. <div class="title_main">
  6. <div class="subtitle">资源信息</div>
  7. </div>
  8. <div class="form_main">
  9. <div class="form_item">
  10. <div class="v_title">资源名称</div>
  11. <div class="v_content single">办公电脑</div>
  12. </div>
  13. <div class="form_item">
  14. <div class="v_title">总面积</div>
  15. <div class="v_content single">20</div>
  16. </div>
  17. <div class="form_item">
  18. <div class="v_title">资产状态</div>
  19. <div class="v_content single">16000元</div>
  20. </div>
  21. <div class="form_item">
  22. <div class="v_title">经营状态</div>
  23. <div class="v_content single">经营</div>
  24. </div>
  25. <div class="form_item">
  26. <div class="v_title">附件</div>
  27. <div class="v_content multiple">
  28. <ul class="download_list">
  29. <li>《资源说明》.xlsx</li>
  30. <li>《资源说明》.xlsx</li>
  31. <li>《资源说明》.xlsx</li>
  32. </ul>
  33. </div>
  34. </div>
  35. </div>
  36. <div class="title_main">
  37. <div class="subtitle">经营属性</div>
  38. </div>
  39. <div class="form_main">
  40. <div class="form_item">
  41. <div class="v_title">承包方</div>
  42. <div class="v_content single">张三</div>
  43. </div>
  44. <div class="form_item">
  45. <div class="v_title">金额</div>
  46. <div class="v_content single">450000</div>
  47. </div>
  48. </div>
  49. </div>
  50. </div>
  51. </template>
  52. <style scoped lang="scss">
  53. .home_wrapper {
  54. width: 100%;
  55. padding-top: 198px;
  56. min-height: 100vh;
  57. background: #fff;
  58. .assetsPublic_main {
  59. margin: 0 24px;
  60. .title_main {
  61. height: 50px;
  62. position: relative;
  63. margin-top: 20px;
  64. &::before {
  65. width: 8px;
  66. height: 50px;
  67. background: #66ccff;
  68. border-radius: 8px;
  69. position: absolute;
  70. left: 0;
  71. top: 0;
  72. z-index: 2;
  73. content: " ";
  74. }
  75. &::after {
  76. width: 100%;
  77. height: 1px;
  78. background: #e5e5e5;
  79. position: absolute;
  80. left: 0;
  81. top: 25px;
  82. content: " ";
  83. }
  84. .subtitle {
  85. position: relative;
  86. background: #fff;
  87. height: 50px;
  88. font-size: 28px;
  89. z-index: 9;
  90. margin-left: 8px;
  91. width: 175px;
  92. display: flex;
  93. justify-content: center; /* 相对父元素水平居中 */
  94. align-items: center; /* 子元素相对父元素垂直居中 */
  95. }
  96. }
  97. .form_main {
  98. margin: 0 24px;
  99. padding-bottom: 40px;
  100. .form_item {
  101. margin: 20px 20px 0;
  102. display: flex;
  103. font-size: 28px;
  104. border-bottom: 1px solid #e6e6e6;
  105. .v_title {
  106. width: 308px;
  107. color: #999;
  108. height: 112px;
  109. padding-right: 90px;
  110. justify-content: flex-end;
  111. display: flex;
  112. align-items: center;
  113. }
  114. .v_content {
  115. flex: 1;
  116. &.single {
  117. display: flex;
  118. justify-content: center;
  119. align-items: center;
  120. }
  121. .icon_date {
  122. width: 26px;
  123. height: 26px;
  124. background: url("../../../../assets/images/sunVillage/select_date_icon.jpg")
  125. no-repeat;
  126. background-size: 100% 100%;
  127. display: block;
  128. margin-right: 12px;
  129. }
  130. &.multiple {
  131. display: flex;
  132. flex-wrap: wrap;
  133. justify-content: space-between;
  134. }
  135. .download_list {
  136. li {
  137. font-size: 24px;
  138. color: #799fe9;
  139. }
  140. }
  141. }
  142. }
  143. }
  144. }
  145. }
  146. </style>
  147. <script>
  148. import headerNav from "@/components/sunVillage/common/header.vue";
  149. export default {
  150. name: "sunVillageInjoint",
  151. components: { headerNav },
  152. data() {
  153. return {
  154. headingsTitle: "资源公开",
  155. };
  156. },
  157. mounted() {},
  158. methods: {
  159. skip(url) {
  160. this.$router.push(url);
  161. },
  162. },
  163. };
  164. </script>