浏览代码

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

lrf 1 年之前
父节点
当前提交
681ae9d165
共有 1 个文件被更改,包括 0 次插入6 次删除
  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;
   }
 }