BasicInfoModalContent.vue 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. <script>
  2. export default {
  3. name: "BasicInfoModalContent",
  4. data() {
  5. return {
  6. options: [
  7. {
  8. value: '1',
  9. label: '1111'
  10. },
  11. {
  12. value: '2',
  13. label: '2222'
  14. },
  15. {
  16. value: '3',
  17. label: '3333'
  18. }
  19. ],
  20. tableData: [
  21. {
  22. idx: 1,
  23. area: "江北区",
  24. name: "大剧院",
  25. address: "江北区xxx街道x路x号",
  26. year: "2000年",
  27. height: 50,
  28. },
  29. {
  30. idx: 2,
  31. area: "渝北区",
  32. name: "科技园",
  33. address: "渝北区xxx街道x路x号",
  34. year: "2000年",
  35. height: 30,
  36. },
  37. ],
  38. unitList:[
  39. {
  40. title:'高层建筑总数(栋)',
  41. unitNum:487
  42. },
  43. {
  44. title:'超高层建筑总数(栋)',
  45. unitNum:87
  46. },
  47. {
  48. title:'老旧高层建筑总数(栋)',
  49. unitNum:165
  50. },
  51. {
  52. title:'公共建筑总数(栋)',
  53. unitNum:173
  54. },
  55. {
  56. title:'住宅建筑总数(栋)',
  57. unitNum:287
  58. },
  59. ],
  60. value:'全市'
  61. };
  62. },
  63. methods: {
  64. rowClickHandler() {
  65. this.$router.push("/detail");
  66. },
  67. },
  68. };
  69. </script>
  70. <template>
  71. <div >
  72. <!-- 搜索 -->
  73. <div class="maintenance-supervision">
  74. <div class="maintenance-supervision_header">
  75. <div>
  76. <el-select v-model="value" placeholder="请选择">
  77. <el-option
  78. v-for="item in options"
  79. :key="item.value"
  80. :label="item.label"
  81. :value="item.value"
  82. >
  83. </el-option>
  84. </el-select>
  85. </div>
  86. <div class="inp">
  87. <el-input v-model="search" placeholder="请输入建筑名称"></el-input>
  88. </div>
  89. <el-button>搜索</el-button>
  90. </div>
  91. </div>
  92. <!-- 建筑数 -->
  93. <div class="unit-bulid">
  94. <div class="unit-num" v-for="(item,index) in unitList" :key="index">
  95. <span>{{ item.title }}</span>
  96. <!-- <span class="build-num">{{ item.unitNum }}</span> -->
  97. <LinearText
  98. style="display: inline-block"
  99. :text="item.unitNum"
  100. fontSize="40px"
  101. ></LinearText>
  102. </div>
  103. </div>
  104. <basic-table :data="tableData" @row-click="rowClickHandler">
  105. <el-table-column prop="idx" label="序号" width="180"> </el-table-column>
  106. <el-table-column prop="area" label="区域" width="180"> </el-table-column>
  107. <el-table-column prop="name" label="建筑名称"> </el-table-column>
  108. <el-table-column prop="address" label="地址"> </el-table-column>
  109. <el-table-column prop="year" label="年代"> </el-table-column>
  110. <el-table-column prop="height" label="高度(米)"> </el-table-column>
  111. </basic-table>
  112. <br />
  113. <basic-pagination
  114. layout="->,prev, pager, next, sizes,jumper"
  115. :page-size="10"
  116. :page-sizes="[10, 20, 30, 40, 50, 100]"
  117. :total="1000"
  118. />
  119. </div>
  120. </template>
  121. <style scoped lang="less">
  122. .maintenance-supervision {
  123. // padding: 10px 10px 0px 20px;
  124. ::v-deep(.el-input__inner) {
  125. border: none;
  126. background: linear-gradient(360deg, rgba(0,148,255, .5) 0%, rgba(0,148,255, .31) 100%);
  127. color: #fff;
  128. }
  129. ::v-deep(.el-button) {
  130. border: none;
  131. background: linear-gradient(360deg, #0094ff90 0%, #0094ff10 100%);
  132. color: #fff;
  133. }
  134. .maintenance-supervision_header {
  135. display: flex;
  136. // justify-content: space-around;
  137. // border-bottom: 1px solid #154956;
  138. padding-bottom: 16px;
  139. font-size: 12px;
  140. color: rgb(79, 149, 186);
  141. }
  142. .warp {
  143. height: 520px;
  144. margin: 0 auto;
  145. overflow: hidden;
  146. .item {
  147. list-style: none;
  148. padding: 0;
  149. margin: 0 auto;
  150. cursor: pointer;
  151. }
  152. }
  153. /deep/.el-input__inner {
  154. background-color: #184254;
  155. width: 150px;
  156. height: 30px;
  157. margin-bottom: 5px;
  158. }
  159. /deep/.el-button {
  160. width: 100px;
  161. height: 32px;
  162. font-size: 14px;
  163. line-height: 2px;
  164. background: #184254;
  165. margin: 0 20px 0 30px;
  166. color: #fff;
  167. border-radius: 5px;
  168. border: none;
  169. }
  170. // /deep/.el-select-dropdown{
  171. // background-color:#184254 !important;
  172. // position: fixed;
  173. // }
  174. /deep/.select_btn {
  175. position: absolute;
  176. top: 225px;
  177. right: 320px;
  178. //下拉框
  179. }
  180. /deep/.el-input{
  181. width: 150px;
  182. // margin-left: 20px;
  183. }
  184. .header {
  185. color: #fff;
  186. height: 33px !important;
  187. line-height: 33px !important;
  188. background-color: rgba(0, 163, 255, 0.3) !important;
  189. color: #61dbff;
  190. margin-top: 15px;
  191. margin-bottom: 6px;
  192. }
  193. .row,
  194. li,
  195. a {
  196. display: block;
  197. height: 39px;
  198. line-height: 39px;
  199. margin-bottom: 4px;
  200. display: flex;
  201. justify-content: space-between;
  202. align-items: center;
  203. font-size: 16px;
  204. background-color: rgba(0, 0, 0, 0.2);
  205. .time,
  206. .num,
  207. .person,
  208. .result {
  209. flex: 0.33;
  210. display: flex;
  211. justify-content: center;
  212. align-items: center;
  213. }
  214. .num {
  215. flex: 0.15;
  216. }
  217. }
  218. .inp{
  219. margin-left: 20px;
  220. }
  221. }
  222. .unit-bulid{
  223. display: flex;
  224. justify-content: space-between;
  225. margin-bottom: 20px;
  226. font-size: 18px;
  227. }
  228. .unit-num{
  229. width: 200px;
  230. height: 109px;
  231. border: 1px solid #0463A7;
  232. display: flex;
  233. flex-direction: column;
  234. align-items: center;
  235. justify-items: center;
  236. line-height: 59px;
  237. }
  238. </style>