Commit 9ff4f9d6be6333089ae9ccdd36b9ed339e07768e

Authored by 张红振
1 parent 816fd305

fix bug

src/views/community/housekeeper/index.vue
@@ -100,7 +100,7 @@ const dialogClose: void = () => { @@ -100,7 +100,7 @@ const dialogClose: void = () => {
100 */ 100 */
101 const changeManage: void = (row: Object) => { 101 const changeManage: void = (row: Object) => {
102 changeObj.currBuildingId = row.id; 102 changeObj.currBuildingId = row.id;
103 - changeObj.originalId = row.housekeeper.id; 103 + changeObj.originalId = row.housekeeper?.id;
104 changeObj.changeVisible = true; 104 changeObj.changeVisible = true;
105 }; 105 };
106 106