Merge branch 'dev' of http://yun.pashanhoo.com:9090/bdc/bdcdj-web into dev
Showing
4 changed files
with
45 additions
and
4 deletions
| ... | @@ -116,11 +116,12 @@ export default { | ... | @@ -116,11 +116,12 @@ export default { |
| 116 | return item.bdcdyid == val.bdcdyid; | 116 | return item.bdcdyid == val.bdcdyid; |
| 117 | }); | 117 | }); |
| 118 | this.activeName = index; | 118 | this.activeName = index; |
| 119 | 119 | ||
| 120 | // this.setstyle(index, 0, this.iskey); | 120 | // this.setstyle(index, 0, this.iskey); |
| 121 | } else { | 121 | } else { |
| 122 | this.sfqdata.push(loadsfqData(res.result, val.bdcdyh, val.bdcdyid)); | 122 | this.sfqdata.push(loadsfqData(res.result, val.bdcdyh, val.bdcdyid)); |
| 123 | this.activeName = this.sfqdata.length - 1; | 123 | this.activeName = this.sfqdata.length - 1; |
| 124 | this.isActive="" | ||
| 124 | // this.$nextTick(() => { | 125 | // this.$nextTick(() => { |
| 125 | // this.setstyle(this.sfqdata.length - 1, 0, this.iskey); | 126 | // this.setstyle(this.sfqdata.length - 1, 0, this.iskey); |
| 126 | // }) | 127 | // }) |
| ... | @@ -217,7 +218,6 @@ export default { | ... | @@ -217,7 +218,6 @@ export default { |
| 217 | * @author: renchao | 218 | * @author: renchao |
| 218 | */ | 219 | */ |
| 219 | loadComponent(form) { | 220 | loadComponent(form) { |
| 220 | console.log(form, "form"); | ||
| 221 | this.componentTag = (r) => | 221 | this.componentTag = (r) => |
| 222 | require.ensure([], () => r(require("@/views/registerBook/" + form))); | 222 | require.ensure([], () => r(require("@/views/registerBook/" + form))); |
| 223 | }, | 223 | }, | ... | ... |
src/views/registerBook/dzlist.vue
0 → 100644
| 1 | <!-- | ||
| 2 | * @Description: | ||
| 3 | * @Autor: renchao | ||
| 4 | * @LastEditTime: 2023-09-18 13:39:51 | ||
| 5 | --> | ||
| 6 | <template> | ||
| 7 | <div class="content"> | ||
| 8 | 自然幢列表(待开发) | ||
| 9 | </div> | ||
| 10 | </template> | ||
| 11 | <script> | ||
| 12 | import { getBdcqljqtsx } from "@/api/djbDetail.js"; | ||
| 13 | import { loadTreeData, loadsfqData, getNode } from "./djbFrameData.js"; | ||
| 14 | export default { | ||
| 15 | data() { | ||
| 16 | return { | ||
| 17 | } | ||
| 18 | }, | ||
| 19 | |||
| 20 | mounted() { | ||
| 21 | |||
| 22 | }, | ||
| 23 | methods: { | ||
| 24 | |||
| 25 | }, | ||
| 26 | }; | ||
| 27 | </script> | ||
| 28 | <style scoped lang="scss"> | ||
| 29 | |||
| 30 | </style> |
| ... | @@ -371,7 +371,18 @@ | ... | @@ -371,7 +371,18 @@ |
| 371 | this.$popup("登记簿详情", "registerBook/djbFrame", { | 371 | this.$popup("登记簿详情", "registerBook/djbFrame", { |
| 372 | formData: param | 372 | formData: param |
| 373 | }) | 373 | }) |
| 374 | } | 374 | }, |
| 375 | dzlist (row) { | ||
| 376 | var param = { | ||
| 377 | bdcdyid: row.bdcdyid, | ||
| 378 | qllx: row.qllx, | ||
| 379 | bdcdyh: row.bdcdyh, | ||
| 380 | bsmQlxx: row.bsmQlxx, | ||
| 381 | }; | ||
| 382 | this.$popup("自然幢列表", "registerBook/dzlist", { | ||
| 383 | formData: param | ||
| 384 | }) | ||
| 385 | }, | ||
| 375 | } | 386 | } |
| 376 | } | 387 | } |
| 377 | </script> | 388 | </script> | ... | ... |
| ... | @@ -244,7 +244,7 @@ class data extends filter { | ... | @@ -244,7 +244,7 @@ class data extends filter { |
| 244 | render: (h, scope) => { | 244 | render: (h, scope) => { |
| 245 | return ( | 245 | return ( |
| 246 | <div> | 246 | <div> |
| 247 | <el-button type="text" icon="el-icon-edit-outline" onClick={() => { vm.openBook(scope.row) }}>自然幢</el-button> | 247 | <el-button type="text" icon="el-icon-edit-outline" onClick={() => { vm.dzlist(scope.row) }}>自然幢</el-button> |
| 248 | </div> | 248 | </div> |
| 249 | ) | 249 | ) |
| 250 | } | 250 | } | ... | ... |
-
Please register or sign in to post a comment