Browse Source

Merge branch 'main' of http://git.cc-lotus.info/follow-up/follow_server

lrf 1 năm trước cách đây
mục cha
commit
681ae9d165
1 tập tin đã thay đổi với 0 bổ sung6 xóa
  1. 0 6
      src/interface/group.interface.ts

+ 0 - 6
src/interface/group.interface.ts

@@ -43,12 +43,6 @@ export class QVO_group extends FVO_group {
   constructor(data: object) {
     super(data);
     dealVO(this, data);
-    // 正常列表只要doctor的id就行
-    if (this.doctor && Object.keys(this.doctor).length > 0) {
-      const newDoctor = get(this.doctor, '_id');
-      this.doctor = newDoctor;
-    }
-    if (this.patients) delete this.patients;
   }
 }