Merge branch 'dev'
Showing
17 changed files
with
28 additions
and
27 deletions
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-12-15 09:36:45 | 4 | * @LastEditTime: 2024-01-18 14:22:06 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div> | 7 | <div> |
... | @@ -10,7 +10,7 @@ | ... | @@ -10,7 +10,7 @@ |
10 | :pagination="false" | 10 | :pagination="false" |
11 | :key="key" | 11 | :key="key" |
12 | :heightNumSetting="true" | 12 | :heightNumSetting="true" |
13 | :minHeight="150" | 13 | :minHeight="0" |
14 | :data="tableDataList"> | 14 | :data="tableDataList"> |
15 | </lb-table> | 15 | </lb-table> |
16 | <addQlr | 16 | <addQlr |
... | @@ -247,6 +247,7 @@ | ... | @@ -247,6 +247,7 @@ |
247 | deleClick (index, row) { | 247 | deleClick (index, row) { |
248 | this.tableDataList.splice(index, 1); | 248 | this.tableDataList.splice(index, 1); |
249 | this.$emit("upDateQlrxxList", this.tableDataList); | 249 | this.$emit("upDateQlrxxList", this.tableDataList); |
250 | this.key++ | ||
250 | }, | 251 | }, |
251 | /** | 252 | /** |
252 | * @description: 身份证读取 | 253 | * @description: 身份证读取 | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-12-15 09:37:47 | 4 | * @LastEditTime: 2024-01-18 14:22:11 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div> | 7 | <div> |
... | @@ -10,7 +10,7 @@ | ... | @@ -10,7 +10,7 @@ |
10 | :pagination="false" | 10 | :pagination="false" |
11 | :key="key" | 11 | :key="key" |
12 | :heightNumSetting="true" | 12 | :heightNumSetting="true" |
13 | :minHeight="150" | 13 | :minHeight="0" |
14 | :data="tableDataList"> | 14 | :data="tableDataList"> |
15 | </lb-table> | 15 | </lb-table> |
16 | <addYwr | 16 | <addYwr |
... | @@ -246,6 +246,7 @@ | ... | @@ -246,6 +246,7 @@ |
246 | deleClick (index, row) { | 246 | deleClick (index, row) { |
247 | this.tableDataList.splice(index, 1); | 247 | this.tableDataList.splice(index, 1); |
248 | this.$emit("upDateQlrxxList", this.tableDataList); | 248 | this.$emit("upDateQlrxxList", this.tableDataList); |
249 | this.key++ | ||
249 | }, | 250 | }, |
250 | 251 | ||
251 | /** | 252 | /** | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-11-15 15:47:29 | 4 | * @LastEditTime: 2024-01-18 14:06:53 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <!-- 受理信息 --> | 7 | <!-- 受理信息 --> |
... | @@ -724,10 +724,6 @@ | ... | @@ -724,10 +724,6 @@ |
724 | width: 100%; | 724 | width: 100%; |
725 | } | 725 | } |
726 | 726 | ||
727 | /deep/.el-form-item { | ||
728 | margin-bottom: 8px; | ||
729 | } | ||
730 | |||
731 | .marginBot0 { | 727 | .marginBot0 { |
732 | margin-bottom: 0 !important; | 728 | margin-bottom: 0 !important; |
733 | } | 729 | } | ... | ... |
... | @@ -5,7 +5,7 @@ | ... | @@ -5,7 +5,7 @@ |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div> | 7 | <div> |
8 | <lb-table :column="column" :pagination="false" :key="key" :heightNumSetting="true" | 8 | <lb-table :column="column" :pagination="false" :key="key" :heightNumSetting="true" :minHeight="0" |
9 | :data="tableDataList"> | 9 | :data="tableDataList"> |
10 | </lb-table> | 10 | </lb-table> |
11 | <addQlr v-model="dialog" :details="details" :showButton="disabled" @updateDetail="handleupdateDetail" /> | 11 | <addQlr v-model="dialog" :details="details" :showButton="disabled" @updateDetail="handleupdateDetail" /> |
... | @@ -225,6 +225,7 @@ | ... | @@ -225,6 +225,7 @@ |
225 | deleClick (index, row) { | 225 | deleClick (index, row) { |
226 | this.tableDataList.splice(index, 1) | 226 | this.tableDataList.splice(index, 1) |
227 | this.$emit('upDateQlrxxList', this.tableDataList) | 227 | this.$emit('upDateQlrxxList', this.tableDataList) |
228 | this.key++ | ||
228 | }, | 229 | }, |
229 | /** | 230 | /** |
230 | * @description: 身份证读取 | 231 | * @description: 身份证读取 | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-09-12 09:40:17 | 4 | * @LastEditTime: 2024-01-18 14:13:02 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div> | 7 | <div> |
... | @@ -12,8 +12,6 @@ | ... | @@ -12,8 +12,6 @@ |
12 | :key="key" | 12 | :key="key" |
13 | :header-cell-style="{ 'text-align': 'center' }" | 13 | :header-cell-style="{ 'text-align': 'center' }" |
14 | :heightNumSetting="true" | 14 | :heightNumSetting="true" |
15 | :minHeight="150" | ||
16 | height="150" | ||
17 | style="width: 100%"> | 15 | style="width: 100%"> |
18 | <el-table-column prop="index" width="50" :render-header="renderHeader"> | 16 | <el-table-column prop="index" width="50" :render-header="renderHeader"> |
19 | <template slot-scope="scope"> | 17 | <template slot-scope="scope"> |
... | @@ -302,4 +300,7 @@ | ... | @@ -302,4 +300,7 @@ |
302 | /deep/ .el-table--border .el-table__cell:first-child .cell { | 300 | /deep/ .el-table--border .el-table__cell:first-child .cell { |
303 | text-align: center; | 301 | text-align: center; |
304 | } | 302 | } |
303 | /deep/.el-table--small .el-table__cell { | ||
304 | padding: 3px 0 !important; | ||
305 | } | ||
305 | </style> | 306 | </style> | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-12-15 09:35:51 | 4 | * @LastEditTime: 2024-01-18 14:21:08 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div> | 7 | <div> |
8 | <lb-table :column="column" :pagination="false" :key="key" :heightNumSetting="true" | 8 | <lb-table :column="column" :pagination="false" :key="key" :heightNumSetting="true" :minHeight="0" |
9 | :data="tableDataList"> | 9 | :data="tableDataList"> |
10 | </lb-table> | 10 | </lb-table> |
11 | <addQlr v-model="dialog" :details="details" :showButton="disabled" @updateDetail="handleupdateDetail" /> | 11 | <addQlr v-model="dialog" :details="details" :showButton="disabled" @updateDetail="handleupdateDetail" /> |
... | @@ -197,6 +197,7 @@ | ... | @@ -197,6 +197,7 @@ |
197 | deleClick (index, row) { | 197 | deleClick (index, row) { |
198 | this.tableDataList.splice(index, 1) | 198 | this.tableDataList.splice(index, 1) |
199 | this.$emit('upDateQlrxxList', this.tableDataList) | 199 | this.$emit('upDateQlrxxList', this.tableDataList) |
200 | this.key++ | ||
200 | }, | 201 | }, |
201 | /** | 202 | /** |
202 | * @description: 身份证读取 | 203 | * @description: 身份证读取 | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: 房屋多幢受理信息 | 2 | * @Description: 房屋多幢受理信息 |
3 | * @Autor: ssq | 3 | * @Autor: ssq |
4 | * @LastEditTime: 2023-11-15 15:46:54 | 4 | * @LastEditTime: 2024-01-18 14:12:11 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="slxx"> | 7 | <div class="slxx"> |
... | @@ -542,7 +542,7 @@ | ... | @@ -542,7 +542,7 @@ |
542 | } | 542 | } |
543 | 543 | ||
544 | /deep/.el-form-item { | 544 | /deep/.el-form-item { |
545 | margin-bottom: 8px; | 545 | margin-bottom: 3px; |
546 | } | 546 | } |
547 | 547 | ||
548 | .marginBot0 { | 548 | .marginBot0 { | ... | ... |
... | @@ -233,7 +233,7 @@ | ... | @@ -233,7 +233,7 @@ |
233 | </script> | 233 | </script> |
234 | <style scoped lang='scss'> | 234 | <style scoped lang='scss'> |
235 | /deep/.el-form-item { | 235 | /deep/.el-form-item { |
236 | margin-bottom: 8px; | 236 | margin-bottom: 3px; |
237 | } | 237 | } |
238 | .title { | 238 | .title { |
239 | padding-left: 10px; | 239 | padding-left: 10px; | ... | ... |
-
Please register or sign in to post a comment