1
Showing
2 changed files
with
26 additions
and
12 deletions
... | @@ -3,16 +3,13 @@ | ... | @@ -3,16 +3,13 @@ |
3 | height: 100%; | 3 | height: 100%; |
4 | background-color: #f5f5f5; | 4 | background-color: #f5f5f5; |
5 | padding: 5px; | 5 | padding: 5px; |
6 | overflow-y: scroll; | ||
6 | } | 7 | } |
7 | 8 | ||
8 | .tableCss { | 9 | .tableCss { |
9 | overflow-x: auto; | ||
10 | overflow-y: scroll; | ||
11 | width: 100%; | 10 | width: 100%; |
12 | // height: 95%; | ||
13 | background: #fff; | 11 | background: #fff; |
14 | text-align: center; | 12 | text-align: center; |
15 | // padding: 4px; | ||
16 | border-collapse: collapse; | 13 | border-collapse: collapse; |
17 | color: #333; | 14 | color: #333; |
18 | 15 | ... | ... |
... | @@ -2,7 +2,7 @@ | ... | @@ -2,7 +2,7 @@ |
2 | <div class="tableDivCss"> | 2 | <div class="tableDivCss"> |
3 | <table cellpadding="0" cellspacing="0" class="tableCss"> | 3 | <table cellpadding="0" cellspacing="0" class="tableCss"> |
4 | <tr> | 4 | <tr> |
5 | <th colspan="12" class="title">宗地基本信息</th> | 5 | <th colspan="5" class="title">宗地基本信息</th> |
6 | </tr> | 6 | </tr> |
7 | <tr> | 7 | <tr> |
8 | <td>单位</td> | 8 | <td>单位</td> |
... | @@ -17,7 +17,7 @@ | ... | @@ -17,7 +17,7 @@ |
17 | <td colspan="4">{{ zdjbxx.zl }}</td> | 17 | <td colspan="4">{{ zdjbxx.zl }}</td> |
18 | </tr> | 18 | </tr> |
19 | <tr> | 19 | <tr> |
20 | <td style="width:10%" rowspan="8">土地状况</td> | 20 | <td rowspan="8">土地状况</td> |
21 | </tr> | 21 | </tr> |
22 | <tr> | 22 | <tr> |
23 | <td style="width:15%">宗地面积</td> | 23 | <td style="width:15%">宗地面积</td> |
... | @@ -90,7 +90,7 @@ | ... | @@ -90,7 +90,7 @@ |
90 | 90 | ||
91 | <tr> | 91 | <tr> |
92 | <td>附记</td> | 92 | <td>附记</td> |
93 | <td colspan="8">{{ zdjbxx.fj }}</td> | 93 | <td colspan="4">{{ zdjbxx.fj }}</td> |
94 | </tr> | 94 | </tr> |
95 | <!-- <tr> | 95 | <!-- <tr> |
96 | <td>状态</td> | 96 | <td>状态</td> |
... | @@ -99,15 +99,31 @@ | ... | @@ -99,15 +99,31 @@ |
99 | <td>{{ zdjbxx.qxdm }}</td> | 99 | <td>{{ zdjbxx.qxdm }}</td> |
100 | </tr> --> | 100 | </tr> --> |
101 | <tr v-if="showGroup"> | 101 | <tr v-if="showGroup"> |
102 | <td>变化情况</td> | 102 | <td rowspan="4">变化情况</td> |
103 | <td colspan="4"> | 103 | |
104 | <table cellspacing="0" cellpadding="0" :width="bhqkTableWidth"> | 104 | <!-- <table cellspacing="0" cellpadding="0" :width="bhqkTableWidth"> |
105 | <tr v-for="(item, index) in bhqkColumns" :key="index"> | 105 | <tr v-for="(item, index) in bhqkColumns" :key="index"> |
106 | <td class="bhqkTh">{{ item.label }}</td> | 106 | <td class="bhqkTh">{{ item.label }}</td> |
107 | </tr> | 107 | </tr> |
108 | </table> | 108 | </table> --> |
109 | </td> | 109 | |
110 | </tr> | 110 | </tr> |
111 | |||
112 | <tr v-if="showGroup"> | ||
113 | <td >变化原因</td> | ||
114 | <td >变化内容</td> | ||
115 | <td >登记时间</td> | ||
116 | <td >登簿人</td> | ||
117 | </tr> | ||
118 | <!-- <tr > | ||
119 | <td>{{ zdbhqks[0].bhyy }}</td> | ||
120 | <td>{{ zdbhqks[0].bhnr }}</td> | ||
121 | <td>{{ zdbhqks[0].djsj }}</td> | ||
122 | <td>{{ zdbhqks[0].dbr }}</td> | ||
123 | </tr> --> | ||
124 | |||
125 | |||
126 | |||
111 | </table> | 127 | </table> |
112 | </div> | 128 | </div> |
113 | </template> | 129 | </template> |
... | @@ -169,6 +185,7 @@ export default { | ... | @@ -169,6 +185,7 @@ export default { |
169 | if (res.code === 200) { | 185 | if (res.code === 200) { |
170 | this.zdjbxx = res.result.zdjbxx; | 186 | this.zdjbxx = res.result.zdjbxx; |
171 | this.zdbhqks = res.result.zdbhqkList; | 187 | this.zdbhqks = res.result.zdbhqkList; |
188 | debugger; | ||
172 | if (this.zdbhqks != null && this.zdbhqks.length > 0) { | 189 | if (this.zdbhqks != null && this.zdbhqks.length > 0) { |
173 | this.showGroup = true; | 190 | this.showGroup = true; |
174 | } | 191 | } | ... | ... |
-
Please register or sign in to post a comment