Merge branch 'dev' of http://yun.pashanhoo.com:9090/bdc/bdcdj-web into dev
Showing
27 changed files
with
359 additions
and
47 deletions
| ... | @@ -18,21 +18,21 @@ | ... | @@ -18,21 +18,21 @@ |
| 18 | <div class="xxTableBox rollTable"> | 18 | <div class="xxTableBox rollTable"> |
| 19 | <!-- 固定前三个 --> | 19 | <!-- 固定前三个 --> |
| 20 | <table class="xxTable"> | 20 | <table class="xxTable"> |
| 21 | <tr v-for="(item, colindex) in columnsall" :key="colindex"> | 21 | <tr v-for="(item, colindex) in columnsall" :key="colindex" :class="item.bt"> |
| 22 | <td> | 22 | <td> |
| 23 | {{ item.label }} | 23 | {{ item.label }} |
| 24 | </td> | 24 | </td> |
| 25 | <td v-for="(row, index) in tableData" :key="index" > | 25 | <td v-for="(row, index) in tableData" :key="index"> |
| 26 | <div class="setbut" v-if="item.prop == 'bhqk'"> | 26 | <div class="setbut" v-if="item.prop == 'bhqk'"> |
| 27 | {{ index?"变化前": "变化后"}} | 27 | {{ index?"变化后": "变化前"}} |
| 28 | </div> | 28 | </div> |
| 29 | <div | 29 | <div |
| 30 | v-if="item.prop == 'cz' && row.sjlx != '系统数据'" | 30 | v-if="item.prop == 'cz' && row.sjlx != '系统数据'" |
| 31 | ></div> | 31 | ></div> |
| 32 | <span v-if="item.prop == 'qszt'" :class="item.bt"> | 32 | <span v-if="item.prop == 'qszt'" :class="item.co"> |
| 33 | {{ getQsztName(row[item.prop]) }} | 33 | {{ getQsztName(row[item.prop]) }} |
| 34 | </span> | 34 | </span> |
| 35 | <span v-else :class="item.bt"> {{ row[item.prop] }}</span> | 35 | <span v-else :class="item.co"> {{ row[item.prop] }}</span> |
| 36 | </td> | 36 | </td> |
| 37 | </tr> | 37 | </tr> |
| 38 | </table> | 38 | </table> |
| ... | @@ -109,26 +109,28 @@ export default { | ... | @@ -109,26 +109,28 @@ export default { |
| 109 | getdata() { | 109 | getdata() { |
| 110 | getDjbQlxxDiff(this.formData.bsmQlxx).then((res) => { | 110 | getDjbQlxxDiff(this.formData.bsmQlxx).then((res) => { |
| 111 | if (res.code === 200) { | 111 | if (res.code === 200) { |
| 112 | this.tableData.push(res.result.currentQlxx) | ||
| 113 | this.tableData.push(res.result.ssQlxx) | 112 | this.tableData.push(res.result.ssQlxx) |
| 113 | this.tableData.push(res.result.currentQlxx) | ||
| 114 | |||
| 114 | this.tableData.map((item) => { | 115 | this.tableData.map((item) => { |
| 115 | item.sjlx = getSjlx(item.sjlx); | 116 | item.sjlx = getSjlx(item.sjlx); |
| 116 | }); | 117 | }); |
| 117 | for (let key in this.tableData[0]) { | 118 | for (let key in this.tableData[0]) { |
| 118 | this.columnsum=this.columns.filter((item,index) => { | 119 | this.columnsum=this.columns.filter((item,index) => { |
| 119 | if(this.tableData[1][key]!==this.tableData[0][key]&&this.columns[index].prop==key){ | 120 | if(this.tableData[1][key]!==this.tableData[0][key]&&this.columns[index].prop==key){ |
| 120 | this.columns[index].bt="red" | 121 | this.columns[index].bt="bgc" |
| 122 | this.columns[index].co="red" | ||
| 121 | } | 123 | } |
| 122 | return this.columns[index].bt=="red" | 124 | return this.columns[index].bt=="bgc" |
| 123 | }) | 125 | }) |
| 124 | } | 126 | } |
| 125 | this.columns.unshift({ | 127 | this.columns.unshift({ |
| 126 | prop: "bhqk", | 128 | prop: "bhqk", |
| 127 | label: "变化情况" | 129 | label: "" |
| 128 | }) | 130 | }) |
| 129 | this.columnsum.unshift({ | 131 | this.columnsum.unshift({ |
| 130 | prop: "bhqk", | 132 | prop: "bhqk", |
| 131 | label: "变化情况" | 133 | label: "" |
| 132 | }) | 134 | }) |
| 133 | this.columnsall= this.columns | 135 | this.columnsall= this.columns |
| 134 | 136 | ||
| ... | @@ -168,14 +170,18 @@ export default { | ... | @@ -168,14 +170,18 @@ export default { |
| 168 | 170 | ||
| 169 | <style lang="scss" scoped> | 171 | <style lang="scss" scoped> |
| 170 | @import "./qlxxCommon.scss"; | 172 | @import "./qlxxCommon.scss"; |
| 171 | .red{ | 173 | .bgc{ |
| 172 | color: #ff0202; | 174 | |
| 175 | td{ | ||
| 176 | background-color: rgb(182, 203, 207) !important; | ||
| 177 | |||
| 178 | } | ||
| 173 | } | 179 | } |
| 174 | .black{ | 180 | .red{ |
| 175 | color: #000000; | 181 | color: red; |
| 176 | } | 182 | } |
| 177 | .setbut{ | 183 | .setbut{ |
| 178 | font-weight: 600; | 184 | font-size: 18px; |
| 179 | color: #ff0202; | 185 | font-weight: 700; |
| 180 | } | 186 | } |
| 181 | </style> | 187 | </style> | ... | ... |
| ... | @@ -296,7 +296,7 @@ | ... | @@ -296,7 +296,7 @@ |
| 296 | * @author: renchao | 296 | * @author: renchao |
| 297 | */ | 297 | */ |
| 298 | dataSelectClick () { | 298 | dataSelectClick () { |
| 299 | this.$popup("房屋信息比对", this.BASE_API.SERVERAPI + "/rest/ywbl/fdcq2/slxxCompareDetai", | 299 | this.$popup("房屋所有权", this.BASE_API.SERVERAPI + "/rest/ywbl/fdcq2/slxxCompareDetai", |
| 300 | { | 300 | { |
| 301 | formData: { | 301 | formData: { |
| 302 | bsmSldy: this.propsParam.bsmSldy, | 302 | bsmSldy: this.propsParam.bsmSldy, |
| ... | @@ -360,7 +360,7 @@ | ... | @@ -360,7 +360,7 @@ |
| 360 | */ | 360 | */ |
| 361 | compare() { | 361 | compare() { |
| 362 | this.$popupDialog( | 362 | this.$popupDialog( |
| 363 | "国有建设用地使用权", | 363 | this.ruleForm.qlxx.qllxmc, |
| 364 | "registerBook/comparison", | 364 | "registerBook/comparison", |
| 365 | { bsmQlxx: this.ruleForm.qlxx.bsmQlxx, | 365 | { bsmQlxx: this.ruleForm.qlxx.bsmQlxx, |
| 366 | dqqllx: 'FDCQ2', | 366 | dqqllx: 'FDCQ2', | ... | ... |
| ... | @@ -328,8 +328,9 @@ export default { | ... | @@ -328,8 +328,9 @@ export default { |
| 328 | * @author: renchao | 328 | * @author: renchao |
| 329 | */ | 329 | */ |
| 330 | compare() { | 330 | compare() { |
| 331 | console.log("this.ruleForm",this.ruleForm); | ||
| 331 | this.$popupDialog( | 332 | this.$popupDialog( |
| 332 | "国有建设用地使用权", | 333 | this.ruleForm.qlxx.qllxmc, |
| 333 | "registerBook/comparison", | 334 | "registerBook/comparison", |
| 334 | { bsmQlxx: this.ruleForm.qlxx.bsmQlxx, | 335 | { bsmQlxx: this.ruleForm.qlxx.bsmQlxx, |
| 335 | dqqllx: 'JSYDSYQ', | 336 | dqqllx: 'JSYDSYQ', | ... | ... |
| ... | @@ -251,7 +251,7 @@ | ... | @@ -251,7 +251,7 @@ |
| 251 | */ | 251 | */ |
| 252 | compare() { | 252 | compare() { |
| 253 | this.$popupDialog( | 253 | this.$popupDialog( |
| 254 | "国有建设用地使用权", | 254 | this.ruleForm.qlxx.qllxmc, |
| 255 | "registerBook/comparison", | 255 | "registerBook/comparison", |
| 256 | { bsmQlxx: this.ruleForm.qlxx.bsmQlxx, | 256 | { bsmQlxx: this.ruleForm.qlxx.bsmQlxx, |
| 257 | dqqllx: 'YGDJ', | 257 | dqqllx: 'YGDJ', | ... | ... |
| ... | @@ -233,6 +233,23 @@ | ... | @@ -233,6 +233,23 @@ |
| 233 | this.$refs.table.toggleRowSelection(row); | 233 | this.$refs.table.toggleRowSelection(row); |
| 234 | } | 234 | } |
| 235 | }, | 235 | }, |
| 236 | /** | ||
| 237 | * @description: openBook | ||
| 238 | * @param {*} row | ||
| 239 | * @author: miaofang | ||
| 240 | */ | ||
| 241 | openBook (row) { | ||
| 242 | console.log("的急急急急急急"); | ||
| 243 | var param = { | ||
| 244 | bdcdyid: row.bdcdyid, | ||
| 245 | qllx: row.qllx, | ||
| 246 | bdcdyh: row.bdcdyh, | ||
| 247 | bsmQlxx: row.bsmQlxx, | ||
| 248 | }; | ||
| 249 | this.$popup("登记簿详情", "registerBook/djbFrame", { | ||
| 250 | formData: param | ||
| 251 | }) | ||
| 252 | }, | ||
| 236 | }, | 253 | }, |
| 237 | }; | 254 | }; |
| 238 | </script> | 255 | </script> | ... | ... |
| ... | @@ -199,6 +199,22 @@ | ... | @@ -199,6 +199,22 @@ |
| 199 | this.$refs.table.toggleRowSelection(row); | 199 | this.$refs.table.toggleRowSelection(row); |
| 200 | } | 200 | } |
| 201 | }, | 201 | }, |
| 202 | /** | ||
| 203 | * @description: openBook | ||
| 204 | * @param {*} row | ||
| 205 | * @author: renchao | ||
| 206 | */ | ||
| 207 | openBook (row) { | ||
| 208 | var param = { | ||
| 209 | bdcdyid: row.bdcdyid, | ||
| 210 | qllx: row.qllx, | ||
| 211 | bdcdyh: row.bdcdyh, | ||
| 212 | bsmQlxx: row.bsmQlxx, | ||
| 213 | }; | ||
| 214 | this.$popup("登记簿详情", "registerBook/djbFrame", { | ||
| 215 | formData: param | ||
| 216 | }) | ||
| 217 | }, | ||
| 202 | }, | 218 | }, |
| 203 | }; | 219 | }; |
| 204 | </script> | 220 | </script> | ... | ... |
| ... | @@ -366,7 +366,24 @@ | ... | @@ -366,7 +366,24 @@ |
| 366 | } else { | 366 | } else { |
| 367 | this.$refs.table.toggleRowSelection(row); | 367 | this.$refs.table.toggleRowSelection(row); |
| 368 | } | 368 | } |
| 369 | } | 369 | }, |
| 370 | /** | ||
| 371 | * @description: openBook | ||
| 372 | * @param {*} row | ||
| 373 | * @author: miaofang | ||
| 374 | */ | ||
| 375 | openBook (row) { | ||
| 376 | console.log("的急急急急急急"); | ||
| 377 | var param = { | ||
| 378 | bdcdyid: row.bdcdyid, | ||
| 379 | qllx: row.qllx, | ||
| 380 | bdcdyh: row.bdcdyh, | ||
| 381 | bsmQlxx: row.bsmQlxx, | ||
| 382 | }; | ||
| 383 | this.$popup("登记簿详情", "registerBook/djbFrame", { | ||
| 384 | formData: param | ||
| 385 | }) | ||
| 386 | }, | ||
| 370 | } | 387 | } |
| 371 | } | 388 | } |
| 372 | </script> | 389 | </script> | ... | ... |
| ... | @@ -188,6 +188,22 @@ | ... | @@ -188,6 +188,22 @@ |
| 188 | this.$refs.table.toggleRowSelection(row); | 188 | this.$refs.table.toggleRowSelection(row); |
| 189 | } | 189 | } |
| 190 | }, | 190 | }, |
| 191 | /** | ||
| 192 | * @description: openBook | ||
| 193 | * @param {*} row | ||
| 194 | * @author: renchao | ||
| 195 | */ | ||
| 196 | openBook (row) { | ||
| 197 | var param = { | ||
| 198 | bdcdyid: row.bdcdyid, | ||
| 199 | qllx: row.qllx, | ||
| 200 | bdcdyh: row.bdcdyh, | ||
| 201 | bsmQlxx: row.bsmQlxx, | ||
| 202 | }; | ||
| 203 | this.$popup("登记簿详情", "registerBook/djbFrame", { | ||
| 204 | formData: param | ||
| 205 | }) | ||
| 206 | }, | ||
| 191 | } | 207 | } |
| 192 | } | 208 | } |
| 193 | </script> | 209 | </script> | ... | ... |
| ... | @@ -213,6 +213,23 @@ | ... | @@ -213,6 +213,23 @@ |
| 213 | this.$refs.table.toggleRowSelection(row); | 213 | this.$refs.table.toggleRowSelection(row); |
| 214 | } | 214 | } |
| 215 | }, | 215 | }, |
| 216 | /** | ||
| 217 | * @description: openBook | ||
| 218 | * @param {*} row | ||
| 219 | * @author: miaofang | ||
| 220 | */ | ||
| 221 | openBook (row) { | ||
| 222 | console.log("的急急急急急急"); | ||
| 223 | var param = { | ||
| 224 | bdcdyid: row.bdcdyid, | ||
| 225 | qllx: row.qllx, | ||
| 226 | bdcdyh: row.bdcdyh, | ||
| 227 | bsmQlxx: row.bsmQlxx, | ||
| 228 | }; | ||
| 229 | this.$popup("登记簿详情", "registerBook/djbFrame", { | ||
| 230 | formData: param | ||
| 231 | }) | ||
| 232 | }, | ||
| 216 | }, | 233 | }, |
| 217 | }; | 234 | }; |
| 218 | </script> | 235 | </script> | ... | ... |
| ... | @@ -229,6 +229,22 @@ | ... | @@ -229,6 +229,22 @@ |
| 229 | this.$refs.table.toggleRowSelection(row); | 229 | this.$refs.table.toggleRowSelection(row); |
| 230 | } | 230 | } |
| 231 | }, | 231 | }, |
| 232 | /** | ||
| 233 | * @description: openBook | ||
| 234 | * @param {*} row | ||
| 235 | * @author: renchao | ||
| 236 | */ | ||
| 237 | openBook (row) { | ||
| 238 | var param = { | ||
| 239 | bdcdyid: row.bdcdyid, | ||
| 240 | qllx: row.qllx, | ||
| 241 | bdcdyh: row.bdcdyh, | ||
| 242 | bsmQlxx: row.bsmQlxx, | ||
| 243 | }; | ||
| 244 | this.$popup("登记簿详情", "registerBook/djbFrame", { | ||
| 245 | formData: param | ||
| 246 | }) | ||
| 247 | }, | ||
| 232 | } | 248 | } |
| 233 | } | 249 | } |
| 234 | </script> | 250 | </script> | ... | ... |
| ... | @@ -190,6 +190,22 @@ | ... | @@ -190,6 +190,22 @@ |
| 190 | this.$refs.table.toggleRowSelection(row); | 190 | this.$refs.table.toggleRowSelection(row); |
| 191 | } | 191 | } |
| 192 | }, | 192 | }, |
| 193 | /** | ||
| 194 | * @description: openBook | ||
| 195 | * @param {*} row | ||
| 196 | * @author: renchao | ||
| 197 | */ | ||
| 198 | openBook (row) { | ||
| 199 | var param = { | ||
| 200 | bdcdyid: row.bdcdyid, | ||
| 201 | qllx: row.qllx, | ||
| 202 | bdcdyh: row.bdcdyh, | ||
| 203 | bsmQlxx: row.bsmQlxx, | ||
| 204 | }; | ||
| 205 | this.$popup("登记簿详情", "registerBook/djbFrame", { | ||
| 206 | formData: param | ||
| 207 | }) | ||
| 208 | }, | ||
| 193 | }, | 209 | }, |
| 194 | }; | 210 | }; |
| 195 | </script> | 211 | </script> | ... | ... |
| ... | @@ -189,6 +189,22 @@ | ... | @@ -189,6 +189,22 @@ |
| 189 | this.$refs.table.toggleRowSelection(row); | 189 | this.$refs.table.toggleRowSelection(row); |
| 190 | } | 190 | } |
| 191 | }, | 191 | }, |
| 192 | /** | ||
| 193 | * @description: openBook | ||
| 194 | * @param {*} row | ||
| 195 | * @author: renchao | ||
| 196 | */ | ||
| 197 | openBook (row) { | ||
| 198 | var param = { | ||
| 199 | bdcdyid: row.bdcdyid, | ||
| 200 | qllx: row.qllx, | ||
| 201 | bdcdyh: row.bdcdyh, | ||
| 202 | bsmQlxx: row.bsmQlxx, | ||
| 203 | }; | ||
| 204 | this.$popup("登记簿详情", "registerBook/djbFrame", { | ||
| 205 | formData: param | ||
| 206 | }) | ||
| 207 | }, | ||
| 192 | }, | 208 | }, |
| 193 | }; | 209 | }; |
| 194 | </script> | 210 | </script> | ... | ... |
| ... | @@ -199,6 +199,22 @@ | ... | @@ -199,6 +199,22 @@ |
| 199 | this.$refs.table.toggleRowSelection(row); | 199 | this.$refs.table.toggleRowSelection(row); |
| 200 | } | 200 | } |
| 201 | }, | 201 | }, |
| 202 | /** | ||
| 203 | * @description: openBook | ||
| 204 | * @param {*} row | ||
| 205 | * @author: renchao | ||
| 206 | */ | ||
| 207 | openBook (row) { | ||
| 208 | var param = { | ||
| 209 | bdcdyid: row.bdcdyid, | ||
| 210 | qllx: row.qllx, | ||
| 211 | bdcdyh: row.bdcdyh, | ||
| 212 | bsmQlxx: row.bsmQlxx, | ||
| 213 | }; | ||
| 214 | this.$popup("登记簿详情", "registerBook/djbFrame", { | ||
| 215 | formData: param | ||
| 216 | }) | ||
| 217 | }, | ||
| 202 | 218 | ||
| 203 | }, | 219 | }, |
| 204 | }; | 220 | }; | ... | ... |
| ... | @@ -156,9 +156,10 @@ | ... | @@ -156,9 +156,10 @@ |
| 156 | /** | 156 | /** |
| 157 | * @description: openBook | 157 | * @description: openBook |
| 158 | * @param {*} row | 158 | * @param {*} row |
| 159 | * @author: renchao | 159 | * @author: miaofang |
| 160 | */ | 160 | */ |
| 161 | openBook (row) { | 161 | openBook (row) { |
| 162 | console.log("的急急急急急急"); | ||
| 162 | var param = { | 163 | var param = { |
| 163 | bdcdyid: row.bdcdyid, | 164 | bdcdyid: row.bdcdyid, |
| 164 | qllx: row.qllx, | 165 | qllx: row.qllx, | ... | ... |
| ... | @@ -189,6 +189,22 @@ | ... | @@ -189,6 +189,22 @@ |
| 189 | this.$refs.table.toggleRowSelection(row); | 189 | this.$refs.table.toggleRowSelection(row); |
| 190 | } | 190 | } |
| 191 | }, | 191 | }, |
| 192 | /** | ||
| 193 | * @description: openBook | ||
| 194 | * @param {*} row | ||
| 195 | * @author: renchao | ||
| 196 | */ | ||
| 197 | openBook (row) { | ||
| 198 | var param = { | ||
| 199 | bdcdyid: row.bdcdyid, | ||
| 200 | qllx: row.qllx, | ||
| 201 | bdcdyh: row.bdcdyh, | ||
| 202 | bsmQlxx: row.bsmQlxx, | ||
| 203 | }; | ||
| 204 | this.$popup("登记簿详情", "registerBook/djbFrame", { | ||
| 205 | formData: param | ||
| 206 | }) | ||
| 207 | }, | ||
| 192 | }, | 208 | }, |
| 193 | }; | 209 | }; |
| 194 | </script> | 210 | </script> | ... | ... |
| ... | @@ -190,6 +190,22 @@ | ... | @@ -190,6 +190,22 @@ |
| 190 | this.$refs.table.toggleRowSelection(row); | 190 | this.$refs.table.toggleRowSelection(row); |
| 191 | } | 191 | } |
| 192 | }, | 192 | }, |
| 193 | /** | ||
| 194 | * @description: openBook | ||
| 195 | * @param {*} row | ||
| 196 | * @author: renchao | ||
| 197 | */ | ||
| 198 | openBook (row) { | ||
| 199 | var param = { | ||
| 200 | bdcdyid: row.bdcdyid, | ||
| 201 | qllx: row.qllx, | ||
| 202 | bdcdyh: row.bdcdyh, | ||
| 203 | bsmQlxx: row.bsmQlxx, | ||
| 204 | }; | ||
| 205 | this.$popup("登记簿详情", "registerBook/djbFrame", { | ||
| 206 | formData: param | ||
| 207 | }) | ||
| 208 | }, | ||
| 193 | }, | 209 | }, |
| 194 | }; | 210 | }; |
| 195 | </script> | 211 | </script> | ... | ... |
| ... | @@ -191,6 +191,22 @@ | ... | @@ -191,6 +191,22 @@ |
| 191 | this.$refs.table.toggleRowSelection(row); | 191 | this.$refs.table.toggleRowSelection(row); |
| 192 | } | 192 | } |
| 193 | }, | 193 | }, |
| 194 | /** | ||
| 195 | * @description: openBook | ||
| 196 | * @param {*} row | ||
| 197 | * @author: renchao | ||
| 198 | */ | ||
| 199 | openBook (row) { | ||
| 200 | var param = { | ||
| 201 | bdcdyid: row.bdcdyid, | ||
| 202 | qllx: row.qllx, | ||
| 203 | bdcdyh: row.bdcdyh, | ||
| 204 | bsmQlxx: row.bsmQlxx, | ||
| 205 | }; | ||
| 206 | this.$popup("登记簿详情", "registerBook/djbFrame", { | ||
| 207 | formData: param | ||
| 208 | }) | ||
| 209 | }, | ||
| 194 | }, | 210 | }, |
| 195 | }; | 211 | }; |
| 196 | </script> | 212 | </script> | ... | ... |
| ... | @@ -83,7 +83,20 @@ class data extends filter { | ... | @@ -83,7 +83,20 @@ class data extends filter { |
| 83 | prop: "zl", | 83 | prop: "zl", |
| 84 | label: "坐落", | 84 | label: "坐落", |
| 85 | minWidth: '130' | 85 | minWidth: '130' |
| 86 | }, | ||
| 87 | { | ||
| 88 | label: '操作', | ||
| 89 | width: '80', | ||
| 90 | align: 'center', | ||
| 91 | fixed: 'right', | ||
| 92 | render: (h, scope) => { | ||
| 93 | return ( | ||
| 94 | <div> | ||
| 95 | <el-button type="text" icon="el-icon-edit-outline" onClick={() => { vm.openBook(scope.row) }}>登记薄</el-button> | ||
| 96 | </div> | ||
| 97 | ) | ||
| 86 | } | 98 | } |
| 99 | }, | ||
| 87 | ] | 100 | ] |
| 88 | } | 101 | } |
| 89 | 102 | ... | ... |
| ... | @@ -110,6 +110,17 @@ class data extends filter { | ... | @@ -110,6 +110,17 @@ class data extends filter { |
| 110 | prop: "zl", | 110 | prop: "zl", |
| 111 | label: "坐落", | 111 | label: "坐落", |
| 112 | minWidth: '130' | 112 | minWidth: '130' |
| 113 | }, | ||
| 114 | { | ||
| 115 | label: '操作', | ||
| 116 | width: '130', | ||
| 117 | render: (h, scope) => { | ||
| 118 | return ( | ||
| 119 | <div> | ||
| 120 | <el-button type="text" icon="el-icon-edit-outline" onClick={() => { vm.openDialog(scope.row) }}>登记薄</el-button> | ||
| 121 | </div> | ||
| 122 | ) | ||
| 123 | } | ||
| 113 | } | 124 | } |
| 114 | ] | 125 | ] |
| 115 | } | 126 | } | ... | ... |
| ... | @@ -122,14 +122,19 @@ class data extends filter { | ... | @@ -122,14 +122,19 @@ class data extends filter { |
| 122 | minWidth: '130' | 122 | minWidth: '130' |
| 123 | }, | 123 | }, |
| 124 | { | 124 | { |
| 125 | label: '操作', | 125 | label: '操作111', |
| 126 | width: '80', | 126 | width: '160', |
| 127 | align: 'center', | 127 | align: 'center', |
| 128 | fixed: 'right', | 128 | fixed: 'right', |
| 129 | render: (h, scope) => { | 129 | render: (h, scope) => { |
| 130 | return <el-button type="text" onClick={() => { vm.handleLpbClick(scope.row) }}>楼盘表</el-button> | 130 | return ( |
| 131 | } | 131 | <div> |
| 132 | <el-button type="text" onClick={() => { vm.handleLpbClick(scope.row) }}>楼盘表</el-button> | ||
| 133 | <el-button type="text" icon="el-icon-edit-outline" onClick={() => { vm.openBook(scope.row) }}>登记薄</el-button> | ||
| 134 | </div> | ||
| 135 | ) | ||
| 132 | } | 136 | } |
| 137 | }, | ||
| 133 | ] | 138 | ] |
| 134 | } | 139 | } |
| 135 | dzcolumns () { | 140 | dzcolumns () { |
| ... | @@ -236,16 +241,20 @@ class data extends filter { | ... | @@ -236,16 +241,20 @@ class data extends filter { |
| 236 | { | 241 | { |
| 237 | prop: "zl", | 242 | prop: "zl", |
| 238 | label: "多幢坐落", | 243 | label: "多幢坐落", |
| 244 | }, | ||
| 245 | { | ||
| 246 | label: '操作', | ||
| 247 | width: '80', | ||
| 248 | align: 'center', | ||
| 249 | fixed: 'right', | ||
| 250 | render: (h, scope) => { | ||
| 251 | return ( | ||
| 252 | <div> | ||
| 253 | <el-button type="text" icon="el-icon-edit-outline" onClick={() => { vm.openBook(scope.row) }}>登记薄</el-button> | ||
| 254 | </div> | ||
| 255 | ) | ||
| 239 | } | 256 | } |
| 240 | // { | 257 | }, |
| 241 | // label: '操作', | ||
| 242 | // width: '80', | ||
| 243 | // align: 'center', | ||
| 244 | // fixed: 'right', | ||
| 245 | // render: (h, scope) => { | ||
| 246 | // return <el-button type="text" onClick={() => { vm.handleLpbClick(scope.row) }}>楼盘表</el-button> | ||
| 247 | // } | ||
| 248 | // } | ||
| 249 | ] | 258 | ] |
| 250 | } | 259 | } |
| 251 | 260 | ... | ... |
| ... | @@ -103,7 +103,20 @@ class data extends filter { | ... | @@ -103,7 +103,20 @@ class data extends filter { |
| 103 | prop: "zl", | 103 | prop: "zl", |
| 104 | label: "坐落", | 104 | label: "坐落", |
| 105 | minWidth: '130' | 105 | minWidth: '130' |
| 106 | }, | ||
| 107 | { | ||
| 108 | label: '操作', | ||
| 109 | width: '80', | ||
| 110 | align: 'center', | ||
| 111 | fixed: 'right', | ||
| 112 | render: (h, scope) => { | ||
| 113 | return ( | ||
| 114 | <div> | ||
| 115 | <el-button type="text" icon="el-icon-edit-outline" onClick={() => { vm.openBook(scope.row) }}>登记薄</el-button> | ||
| 116 | </div> | ||
| 117 | ) | ||
| 106 | } | 118 | } |
| 119 | }, | ||
| 107 | ] | 120 | ] |
| 108 | } | 121 | } |
| 109 | 122 | ... | ... |
| ... | @@ -110,18 +110,17 @@ class data extends filter { | ... | @@ -110,18 +110,17 @@ class data extends filter { |
| 110 | label: "坐落", | 110 | label: "坐落", |
| 111 | minWidth: '150' | 111 | minWidth: '150' |
| 112 | }, | 112 | }, |
| 113 | // { | 113 | { |
| 114 | // label: '操作', | 114 | label: '操作', |
| 115 | // width: '130', | 115 | width: '130', |
| 116 | // render: (h, scope) => { | 116 | render: (h, scope) => { |
| 117 | // return ( | 117 | return ( |
| 118 | // <div> | 118 | <div> |
| 119 | // <el-button type="text" icon="el-icon-edit-outline" onClick={() => { vm.openDialog(scope.row) }}>登记薄</el-button> | 119 | <el-button type="text" icon="el-icon-edit-outline" onClick={() => { vm.openDialog(scope.row) }}>登记薄</el-button> |
| 120 | // <el-button type="text" icon="el-icon-film" onClick={() => { vm.handleLpbClick(scope.row) }}>楼盘表</el-button> | 120 | </div> |
| 121 | // </div> | 121 | ) |
| 122 | // ) | 122 | } |
| 123 | // } | 123 | } |
| 124 | // } | ||
| 125 | ] | 124 | ] |
| 126 | } | 125 | } |
| 127 | 126 | ... | ... |
| ... | @@ -101,7 +101,21 @@ class data extends filter { | ... | @@ -101,7 +101,21 @@ class data extends filter { |
| 101 | prop: "zl", | 101 | prop: "zl", |
| 102 | label: "坐落", | 102 | label: "坐落", |
| 103 | minWidth: '130' | 103 | minWidth: '130' |
| 104 | }, | ||
| 105 | { | ||
| 106 | label: '操作111', | ||
| 107 | width: '160', | ||
| 108 | align: 'center', | ||
| 109 | fixed: 'right', | ||
| 110 | render: (h, scope) => { | ||
| 111 | return ( | ||
| 112 | <div> | ||
| 113 | <el-button type="text" onClick={() => { vm.handleLpbClick(scope.row) }}>楼盘表</el-button> | ||
| 114 | <el-button type="text" icon="el-icon-edit-outline" onClick={() => { vm.openBook(scope.row) }}>登记薄</el-button> | ||
| 115 | </div> | ||
| 116 | ) | ||
| 104 | } | 117 | } |
| 118 | }, | ||
| 105 | ] | 119 | ] |
| 106 | } | 120 | } |
| 107 | 121 | ... | ... |
| ... | @@ -100,7 +100,20 @@ class data extends filter { | ... | @@ -100,7 +100,20 @@ class data extends filter { |
| 100 | prop: "zl", | 100 | prop: "zl", |
| 101 | label: "坐落", | 101 | label: "坐落", |
| 102 | minWidth: '130' | 102 | minWidth: '130' |
| 103 | }, | ||
| 104 | { | ||
| 105 | label: '操作', | ||
| 106 | width: '80', | ||
| 107 | align: 'center', | ||
| 108 | fixed: 'right', | ||
| 109 | render: (h, scope) => { | ||
| 110 | return ( | ||
| 111 | <div> | ||
| 112 | <el-button type="text" icon="el-icon-edit-outline" onClick={() => { vm.openBook(scope.row) }}>登记薄</el-button> | ||
| 113 | </div> | ||
| 114 | ) | ||
| 103 | } | 115 | } |
| 116 | }, | ||
| 104 | ] | 117 | ] |
| 105 | } | 118 | } |
| 106 | 119 | ... | ... |
| ... | @@ -182,6 +182,19 @@ class datatwo extends filter { | ... | @@ -182,6 +182,19 @@ class datatwo extends filter { |
| 182 | label: "坐落", | 182 | label: "坐落", |
| 183 | minWidth: '110' | 183 | minWidth: '110' |
| 184 | }, | 184 | }, |
| 185 | { | ||
| 186 | label: '操作', | ||
| 187 | width: '80', | ||
| 188 | align: 'center', | ||
| 189 | fixed: 'right', | ||
| 190 | render: (h, scope) => { | ||
| 191 | return ( | ||
| 192 | <div> | ||
| 193 | <el-button type="text" icon="el-icon-edit-outline" onClick={() => { vm.openBook(scope.row) }}>登记薄</el-button> | ||
| 194 | </div> | ||
| 195 | ) | ||
| 196 | } | ||
| 197 | }, | ||
| 185 | ] | 198 | ] |
| 186 | } | 199 | } |
| 187 | 200 | ... | ... |
| ... | @@ -101,7 +101,20 @@ class data extends filter { | ... | @@ -101,7 +101,20 @@ class data extends filter { |
| 101 | prop: "zl", | 101 | prop: "zl", |
| 102 | label: "坐落", | 102 | label: "坐落", |
| 103 | minWidth: '130' | 103 | minWidth: '130' |
| 104 | }, | ||
| 105 | { | ||
| 106 | label: '操作', | ||
| 107 | width: '80', | ||
| 108 | align: 'center', | ||
| 109 | fixed: 'right', | ||
| 110 | render: (h, scope) => { | ||
| 111 | return ( | ||
| 112 | <div> | ||
| 113 | <el-button type="text" icon="el-icon-edit-outline" onClick={() => { vm.openBook(scope.row) }}>登记薄</el-button> | ||
| 114 | </div> | ||
| 115 | ) | ||
| 104 | } | 116 | } |
| 117 | }, | ||
| 105 | ] | 118 | ] |
| 106 | } | 119 | } |
| 107 | 120 | ... | ... |
| ... | @@ -109,6 +109,17 @@ class data extends filter { | ... | @@ -109,6 +109,17 @@ class data extends filter { |
| 109 | prop: "zl", | 109 | prop: "zl", |
| 110 | label: "坐落", | 110 | label: "坐落", |
| 111 | minWidth: '130' | 111 | minWidth: '130' |
| 112 | }, | ||
| 113 | { | ||
| 114 | label: '操作', | ||
| 115 | width: '130', | ||
| 116 | render: (h, scope) => { | ||
| 117 | return ( | ||
| 118 | <div> | ||
| 119 | <el-button type="text" icon="el-icon-edit-outline" onClick={() => { vm.openDialog(scope.row) }}>登记薄</el-button> | ||
| 120 | </div> | ||
| 121 | ) | ||
| 122 | } | ||
| 112 | } | 123 | } |
| 113 | ] | 124 | ] |
| 114 | } | 125 | } | ... | ... |
-
Please register or sign in to post a comment