老变更

老变更

作者:王书硕


变更保存时需要一个额外的接口,后端会提供。前端需要自己搞一个EntryCRUD,参考这个文件: CalendarEntryCRUD.ts

FormPresenter中接受EntryCRUD:

protected getDataOptions(): DataOptions {
    return {
      entityCRUDCreator: (options: IEntityOptions) => {
        return new CalendarEntryCRUD(options, this);
      }
    };
  }