Merge branch 'master' of http://yun.pashanhoo.com:9090/renchao/CadastralSystem
Showing
8 changed files
with
40 additions
and
14 deletions
This diff is collapsed.
Click to expand it.
... | @@ -435,13 +435,13 @@ export default { | ... | @@ -435,13 +435,13 @@ export default { |
435 | height: 72px!important; | 435 | height: 72px!important; |
436 | .header-top { | 436 | .header-top { |
437 | height: 72px; | 437 | height: 72px; |
438 | border-bottom: 1px solid#EAEAEA; | 438 | // border-bottom: 1px solid#EAEAEA; |
439 | box-sizing: border-box; | 439 | box-sizing: border-box; |
440 | .top-items { | 440 | .top-items { |
441 | cursor: pointer; | 441 | cursor: pointer; |
442 | height: 72px; | 442 | height: 72px; |
443 | padding: 0 30px; | 443 | padding: 0 30px; |
444 | font-size: 18px; | 444 | font-size: 20px; |
445 | line-height: 72px; | 445 | line-height: 72px; |
446 | float: left; | 446 | float: left; |
447 | position: relative; | 447 | position: relative; |
... | @@ -450,7 +450,7 @@ export default { | ... | @@ -450,7 +450,7 @@ export default { |
450 | /*border-right: 1px solid #EAEAEA;*/ | 450 | /*border-right: 1px solid #EAEAEA;*/ |
451 | i { | 451 | i { |
452 | margin-right: 6px; | 452 | margin-right: 6px; |
453 | font-size: 18px; | 453 | font-size: 22px; |
454 | position: relative; | 454 | position: relative; |
455 | top: 1px; | 455 | top: 1px; |
456 | } | 456 | } | ... | ... |
... | @@ -34,12 +34,15 @@ | ... | @@ -34,12 +34,15 @@ |
34 | <style scoped lang="less"> | 34 | <style scoped lang="less"> |
35 | .el-tabs{ | 35 | .el-tabs{ |
36 | height: calc(100% - 50px); | 36 | height: calc(100% - 50px); |
37 | /deep/.el-tabs__content{ | 37 | /deep/.el-tabs__content{ |
38 | height: 100%; | 38 | height: 100%; |
39 | /deep/.el-tab-pane{ | 39 | /deep/.el-tab-pane{ |
40 | height: 100%; | 40 | height: 100%; |
41 | } | 41 | } |
42 | background: #eaedf5; | 42 | background: #eaedf5; |
43 | } | 43 | } |
44 | /deep/ .el-tabs__item { | ||
45 | height: 48px; | ||
46 | } | ||
44 | } | 47 | } |
45 | </style> | 48 | </style> |
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
This diff is collapsed.
Click to expand it.
... | @@ -139,27 +139,33 @@ | ... | @@ -139,27 +139,33 @@ |
139 | let path = ""; | 139 | let path = ""; |
140 | switch (row.dylx) { | 140 | switch (row.dylx) { |
141 | case "zd": | 141 | case "zd": |
142 | type = "0"; | 142 | type = "zd"; |
143 | name = '宗地'; | 143 | name = '宗地'; |
144 | path = "/zd"; | 144 | path = "/zd"; |
145 | break; | 145 | break; |
146 | case "zrz": | 146 | case "zrz": |
147 | type = "1"; | 147 | type = "zrz"; |
148 | name = '自然幢'; | 148 | name = '自然幢'; |
149 | path = "/zrz"; | 149 | path = "/zrz"; |
150 | break; | 150 | break; |
151 | case "h": | 151 | case "h": |
152 | case "h0": | 152 | case "h0": |
153 | case "h1": | 153 | case "h1": |
154 | type = "2"; | 154 | type = "h"; |
155 | name = "户" | 155 | name = "户" |
156 | path = "/h"; | 156 | path = "/h"; |
157 | break; | 157 | break; |
158 | case "dz": | 158 | case "dz": |
159 | type = "3"; | 159 | type = "dz"; |
160 | name = "多幢"; | 160 | name = "多幢"; |
161 | path = "/dz"; | 161 | path = "/dz"; |
162 | break; | 162 | break; |
163 | case "gzw": | ||
164 | type = "gzw"; | ||
165 | name = "构筑物"; | ||
166 | path = "/gzw"; | ||
167 | break; | ||
168 | |||
163 | default: | 169 | default: |
164 | break; | 170 | break; |
165 | } | 171 | } |
... | @@ -192,6 +198,11 @@ | ... | @@ -192,6 +198,11 @@ |
192 | this.$store.state.dzbsm = row.glbsm; | 198 | this.$store.state.dzbsm = row.glbsm; |
193 | this.getTreeByBsm(row.glbsm,row.dylx,'1'); | 199 | this.getTreeByBsm(row.glbsm,row.dylx,'1'); |
194 | break; | 200 | break; |
201 | case "gzw": | ||
202 | this.$store.state.dzbsm = row.glbsm; | ||
203 | this.getTreeByBsm(row.glbsm,row.dylx,'1'); | ||
204 | break; | ||
205 | |||
195 | default: | 206 | default: |
196 | break; | 207 | break; |
197 | } | 208 | } |
... | @@ -240,6 +251,9 @@ | ... | @@ -240,6 +251,9 @@ |
240 | } | 251 | } |
241 | background: #eaedf5; | 252 | background: #eaedf5; |
242 | } | 253 | } |
254 | /deep/ .el-tabs__item { | ||
255 | height: 48px; | ||
256 | } | ||
243 | .main { | 257 | .main { |
244 | width: 100%; | 258 | width: 100%; |
245 | height: 100%; | 259 | height: 100%; | ... | ... |
-
Please register or sign in to post a comment