|
@@ -282,6 +282,15 @@ export default {
|
|
|
})
|
|
|
.toPromise()
|
|
|
.then(response => {
|
|
|
+ let _data = sessionStorage.getItem('houseSelfCollect_house')
|
|
|
+ _data = JSON.parse(sessionStorage.getItem('houseSelfCollect_house'))
|
|
|
+ if(_data.allowEdit==0){
|
|
|
+ _data.allowEdit = 1
|
|
|
+ }else{
|
|
|
+ _data.allowEdit = 0
|
|
|
+ }
|
|
|
+ sessionStorage.setItem('houseSelfCollect_house',JSON.stringify(_data))
|
|
|
+
|
|
|
// this.tableData = response.records
|
|
|
})
|
|
|
},
|