修改功能
Showing
2 changed files
with
11 additions
and
10 deletions
... | @@ -122,9 +122,10 @@ export default { | ... | @@ -122,9 +122,10 @@ export default { |
122 | }, | 122 | }, |
123 | // 高级查询 | 123 | // 高级查询 |
124 | moreQueryClick () { }, | 124 | moreQueryClick () { }, |
125 | openDialog (scope) { | 125 | openDialog (scroll) { |
126 | //debugger; | ||
126 | let _this = this; | 127 | let _this = this; |
127 | let bsm = scope.row.bsmQlxx; | 128 | let bsm = scroll.bsmQlxx; |
128 | axios | 129 | axios |
129 | .all([ | 130 | .all([ |
130 | getDjbfm(bsm), | 131 | getDjbfm(bsm), |
... | @@ -145,17 +146,17 @@ export default { | ... | @@ -145,17 +146,17 @@ export default { |
145 | _this.isDialog = true; | 146 | _this.isDialog = true; |
146 | 147 | ||
147 | // 弹窗打开,自动切换到对应的登记类型 | 148 | // 弹窗打开,自动切换到对应的登记类型 |
148 | if (scope.row.qllxmc == "国有建设用地使用权") { | 149 | if (scroll.qllxmc == "国有建设用地使用权") { |
149 | this.$refs.djbxxDialog.showType = "JSYDSYQ"; | 150 | this.$refs.djbxxDialog.showType = "JSYDSYQ"; |
150 | } else if (scope.row.qllxmc == "抵押权") { | 151 | } else if (scroll.qllxmc == "抵押权") { |
151 | this.$refs.djbxxDialog.showType = "DYAQ"; | 152 | this.$refs.djbxxDialog.showType = "DYAQ"; |
152 | } else if (scope.row.qllxmc == "地役权") { | 153 | } else if (scroll.qllxmc == "地役权") { |
153 | this.$refs.djbxxDialog.showType = "DYIQ"; | 154 | this.$refs.djbxxDialog.showType = "DYIQ"; |
154 | } else if (scope.row.qllxmc == "预告登记") { | 155 | } else if (scroll.qllxmc == "预告登记") { |
155 | this.$refs.djbxxDialog.showType = "YGDJ"; | 156 | this.$refs.djbxxDialog.showType = "YGDJ"; |
156 | } else if (scope.row.qllxmc == "异议登记") { | 157 | } else if (scroll.qllxmc == "异议登记") { |
157 | this.$refs.djbxxDialog.showType = "YYDJ"; | 158 | this.$refs.djbxxDialog.showType = "YYDJ"; |
158 | } else if (scope.row.qllxmc == "查封登记") { | 159 | } else if (scroll.qllxmc == "查封登记") { |
159 | this.$refs.djbxxDialog.showType = "CFDJ"; | 160 | this.$refs.djbxxDialog.showType = "CFDJ"; |
160 | } | 161 | } |
161 | }); | 162 | }); | ... | ... |
... | @@ -101,8 +101,8 @@ class data extends filter { | ... | @@ -101,8 +101,8 @@ class data extends filter { |
101 | render: (h, scope) => { | 101 | render: (h, scope) => { |
102 | return ( | 102 | return ( |
103 | <div> | 103 | <div> |
104 | <el-button type="text" icon="el-icon-edit-outline" onClick={() => { vm.openDialog(scope) }}>登记薄</el-button> | 104 | <el-button type="text" icon="el-icon-edit-outline" onClick={() => { vm.openDialog(scope.row) }}>登记薄</el-button> |
105 | <el-button type="text" icon="el-icon-film" onClick={() => { vm.openDialog(scope) }}>楼盘表</el-button> | 105 | <el-button type="text" icon="el-icon-film" onClick={() => { vm.openDialog(scope.row) }}>楼盘表</el-button> |
106 | </div> | 106 | </div> |
107 | ) | 107 | ) |
108 | } | 108 | } | ... | ... |
-
Please register or sign in to post a comment